-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (142 loc) · 5.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kacktide's Website</title>
<link rel="stylesheet" href="public/css/main.css" />
<link rel="stylesheet" href="public/css/font.css" />
<meta
name="description"
content="Kacktide's personal website. Here you can find how to contact me or my projects."
/>
<meta name="title" content="Kacktide's Website" />
<meta
name="og:description"
content="Kacktide's personal website. Here you can find how to contact me or my projects."
/>
<meta name="og:title" content="Kacktide's Website" />
<meta
name="twitter:description"
content="Kacktide's personal website. Here you can find how to contact me or my projects."
/>
<meta name="twitter:title" content="Kacktide's Website" />
<meta name="theme-color" content="#0096FF" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<section class="main-section">
<nav class="navbar">
<div class="logo">Kacktide</div>
<div class="toggle">
<span class="bars"></span>
<span class="bars"></span>
</div>
<ul class="nav-items">
<li><a href="#" class="nav-links">Home</a></li>
<li><a href="#projects" class="nav-links">Projects</a></li>
<li><a href="#contact" class="nav-links">Contact</a></li>
<li>
<a style="cursor: pointer" id="ef" class="nolink dlmode"
><i id="nolink" class="fas fa-moon"></i
></a>
</li>
</ul>
</nav>
<div class="main-wrapper">
<h1>Kacktide</h1>
<hr class="brbm" />
<div class="brmbaf"></div>
<p class="about">
Frontend Developer. Makes open-sourced & other projects
</p>
</div>
</section>
<section class="projects-section" id="projects">
<div class="project-title">my projects</div>
<div class="projects">
<div class="project">
<div class="project-img">
<img src="public/img/project1.PNG" alt="project1" />
</div>
<div class="project-info">
<h2>Soul Music</h2>
<p>Website for an amazing and popular Discord music bot.</p>
<a href="https://soulmusic.pro" target="_blank" class="btn">
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
<div class="project">
<div class="project-img">
<img src="public/img/project2.PNG" alt="project2" />
</div>
<div class="project-info">
<h2>OxyBoat</h2>
<p>Website for another awesome Discord music bot.</p>
<a style="cursor: not-allowed" class="btn">
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
<div class="project">
<div class="project-img">
<img src="public/img/project3.png" alt="project3" />
</div>
<div class="project-info">
<h2>Solar Bot Website</h2>
<p>
Another of my many discord bot website projects. This one is a
template avialable in github.
</p>
<a
href="https://github.com/Kacktide/Discord-Bot-Website-Template"
target="_blank"
class="btn"
>
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</section>
<section class="contact-section" id="contact">
<div class="contact-title">Contact Me</div>
<div class="buttons">
<a id="copyBtn" class="button button-contact"
><i class="fab fa-discord fa-fw"></i> kacktide</a
>
<a
style="margin-left: 1rem"
href="mailto:[email protected]"
class="button button-contact"
><i class="fas fa-envelope fa-fw"></i> E-mail</a
>
</div>
</section>
<section class="footer">
<footer class="footer-body">
<p class="footer-text">
© 2024 kacktide.github.io, Made by <strong>@Kacktide</strong>
</p>
<div class="icons-footer">
<a
class="icon"
href="https://github.com/Kacktide/kacktide.github.io"
target="_blank"
>Project public on <i class="fab fa-github"></i
></a>
</div>
</footer>
</section>
<script defer src="public/js/main.all.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>