-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (114 loc) · 3.32 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
<!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" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon-16x16.png"
/>
<link rel="manifest" href="assets/site.webmanifest" />
<title>meow ฅ^•ﻌ•^ฅ</title>
</head>
<body class="dark">
<div class="nav">
<button onclick="changetheme()">
<span id="btn-icon" class="iconify" data-icon="bx:sun"></span>
</button>
</div>
<div class="logo-container">
<div class="fire">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
class="fire-effect"
width="0"
height="0"
>
<defs>
<filter id="fire-blur">
<feGaussianBlur
in="SourceGraphic"
stdDeviation="10"
result="blur"
/>
<feColorMatrix
in="blur"
mode="matrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7"
result="goo"
/>
<feBlend in="SourceGraphic" in2="fire-blur" />
</filter>
</defs>
</svg>
</div>
<section class="heading">
<h2>Wahid Islam</h2>
<p class="info">
A Student, Developer & linux enthuist & A <span class="age"></span> y/o
</p>
</section>
<section class="socials">
<a
href="https://discordapp.com/users/697797379583115315/"
target="_blank"
>
<span class="iconify" data-icon="line-md:discord"></span>
</a>
<a href="https://t.me/wahidislam" target="_blank">
<span class="iconify" data-icon="line-md:telegram"></span>
</a>
<a href="https://github.com/PsyNyde" target="_blank">
<span class="iconify" data-icon="line-md:github-loop"></span>
</a>
<a href="https://reddit.com/u/wahidislamlinad" target="_blank">
<span class="iconify" data-icon="line-md:reddit"></span>
</a>
<a href="https://www.buymeacoffee.com/wahidislam" target="_blank">
<span class="iconify" data-icon="line-md:buy-me-a-coffee-filled"></span>
</a>
</section>
<h3>Projects</h3>
<section class="projects"></section>
</body>
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
<script src="index.js"></script>
</html>