-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (72 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Social Links</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<button class="themeBtn">
Dark<i class="fa-solid fa-wand-magic-sparkles"></i>
</button>
<div class="container">
<img
src="https://cdn.iconscout.com/icon/free/png-512/free-user-1556-528036.png?f=webp&w=512"
alt=""
/>
<h1>Vedant Kale</h1>
<h3>Pune,India</h3>
<p>"Front-end Developer And UI/UX Designer"</p>
<ul>
<li>
<i class="fa-brands fa-github"></i>
<a href="https://github.com/VedantCodes30" target="_blank">Github</a>
</li>
</ul>
<ul>
<li>
<i class="fa-brands fa-linkedin"></i>
<a
href="https://www.linkedin.com/in/vedant-kale-a053a424a/"
target="_blank"
>LinkedIn</a
>
</li>
</ul>
<ul>
<li>
<i class="fa-brands fa-x"></i>
<a
href="https://www.linkedin.com/in/vedant-kale-a053a424a/"
target="_blank"
>X</a
>
</li>
</ul>
<ul>
<li>
<i class="fa-brands fa-youtube"></i>
<a
href="https://www.youtube.com/channel/UC4zajsY_1VMuK7F3JtSomIg"
target="_blank"
>YouTube</a
>
</li>
</ul>
<ul>
<li>
<i class="fa-brands fa-instagram"></i>
<a href="https://www.instagram.com/vedantcodes" target="_blank"
>Instagram</a
>
</li>
</ul>
</div>
<script
src="https://kit.fontawesome.com/b670fb3930.js"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>