-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (105 loc) · 4.66 KB
/
index.html
File metadata and controls
125 lines (105 loc) · 4.66 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Nixdevs Website</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Anik's personal website">
<meta name="keywords" content="html, css, bio, code, open source, github">
<meta name="author" content="Nixdevs">
<meta name="title" content="Nixdevs">
<link rel="icon" href="assets/clown.svg">
<link rel="stylesheet" href="style.css">
<meta name="theme-color" content="#1B1F23">
<script src="script.js"></script>
</head>
<body>
<div class="desktop">
<ul class="tubelight" , id="tube">
<li class="glow">N</li>
<li class="glow">I</li>
<li class="glow">X</li>
<li class="glow">D</li>
<li class="glow">E</li>
<li class="glow">V</li>
<li class="glow">S</li>
</ul>
<div class="bio">
Student, Video Editor, Programmer!<br>Below are some of my skills and projects!
</div>
<hr>
<div class="flex-container">
<div class="card">
<img src="assets/blender.svg" alt="Avatar" style="width:25%;" class="avatar">
<div class="container">
<a href="https://www.blender.org/">
<h4><b>Blender</b></h4>
<p>Actively learning blender for 2 months</p>
</a>
</div>
</div>
<br>
<div class="card">
<img src="assets/davinci.svg" alt="Avatar" style="width: 20%" class="avatar">
<div class="container">
<a href="https://www.blackmagicdesign.com/products/davinciresolve" target="_blank">
<h4><b>Resolve</b></h4>
<p>Editing videos for 6 months</p>
</a>
</div>
</div>
<br>
<div class="card">
<img src="assets/discord.svg" alt="Avatar" style="width:20%" class="avatar">
<div class="container">
<a href="https://github.com/NixDevs/Kottu" target="_blank">
<h4><b>Kottu</b></h4>
<p>Open source discord bot in Typescript. Click on me and leave a ⭐ at the repository</p>
</a>
</div>
</div>
</div>
<!--
<div class="bio">
<p>Skills I wish to master!</p>
</div>
<div style="display:flex; align-items: center; justify-content: center;">
<a href="https://html.spec.whatwg.org/multipage/" target="_blank">
<img src="assets/skills/html.svg" width="50px" height="50px" style="margin-right: 10px;">
</a>
<a href="https://www.w3.org/Style/CSS/Overview.en.html" target="_blank">
<img src="assets/skills/css.svg" width="50px" height="50px" style="margin-right: 10px;">
</a>
<a href="https://www.javascript.com/" target="_blank">
<img src="assets/skills/js.svg" width="50px" height="50px" style="margin-right: 10px;">
</a>
<a href="https://www.typescriptlang.org/" target="_blank">
<img src="assets/skills/ts.svg" width="50px" height="50px" style="margin-right: 10px;">
</a>
<a href="https://tailwindcss.com/" target="_blank">
<img src="assets/skills/tailwind.svg" width="50px" height="50px" style="margin-right: 10px;">
</a>
<a href="https://learn.microsoft.com/en-us/dotnet/csharp/" target="_blank">
<img src="assets/skills/csharp.svg" width="50px" height="50px" style="margin-right: 10px;">
</a>
<a href="https://godotengine.org/" target="_blank">
<img src="assets/skills/godot.svg" width="50px" height="50px" style="margin-right: 10px;">
</a>
</div>
-->
<hr>
<footer style="color: aliceblue;" class="foot">
<a href="https://github.com/Nixdevs" target="_blank" class="footLink">
<img src="assets/github2.svg" class="image">
</a>
<a href="https://instagram.com/aniklakhany" target="_blank" class="footLink">
<img src="assets/instagram.svg" class="image">
</a>
<a href="https://open.spotify.com/user/31qu7bej6cf5phoksxyfpquss6ea?si=8b51f1d725934f46" target="_blank"
class="footLink">
<img src="assets/spotify.svg" class="image">
</a>
</footer>
</div>
</body>
</html>