-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (89 loc) · 3.77 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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/dd815888da.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="main.css">
<!--Add your image link here!-->
<link rel="icon" href="assets\Prit.jpg" type="image/icon type">
<!--Add your name here!-->
<title>Prit Anand</title>
</head>
<body>
<!--Add your name here!-->
<h1 id="head">
<span class="auto-type" style="font-size: 40px;font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;"></a></span>
</h1>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
var typed = new Typed(".auto-type", {
strings: ["Hey Folks...!"],
typeSpeed: 50,
backspeed: 50,
loop: true
})
</script>
<div id="Content" class="grid-container">
<div id="profileIMG">
<img src="assets\Prit.jpg" alt="
Prit Anand"> <!--Add your image link here!-->
<h1>Prit Anand</h1>
</div>
<div class="links">
<a href="https://www.youtube.com/@BurstTech" target="_blank"> <!--Add your YT Channel link here! (If Exists)-->
<div class="social">
<div class="inline">
<div class="icon">
<i class="fa-brands fa-youtube"></i>
</div>
<div class="text">YouTube</div>
</div>
</div>
</a>
<a href="https://linkedin.com/in/pritanand7" target="_blank"> <!--Add your linkedin link here!-->
<div class="social">
<div class="inline">
<div class="icon">
<i class="fa-brands fa-linkedin"></i>
</div>
<div class="text">Linkedin</div>
</div>
</div>
</a>
<a href="https://github.com/pritanand7" target="_blank"> <!--Add your github profile link here!-->
<div class="social">
<div class="inline">
<div class="icon">
<i class="fa-brands fa-github"></i>
</div>
<div class="text">GitHub</div>
</div>
</div>
</a>
<a href="https://twitter.com/pritanand7" target="_blank"> <!--Add your twitter link here!-->
<div class="social">
<div class="inline">
<div class="icon">
<i class="fa-brands fa-x-twitter"></i>
</div>
<div class="text">X [Twitter] </div>
</div>
</div>
</a>
<a href="https://www.instagram.com/pritanand7" target="_blank"> <!--Add your Instagram link here!-->
<div class="social">
<div class="inline">
<div class="icon">
<i class="fa-brands fa-instagram"></i>
</div>
<div class="text">Instagram</div>
</div>
</div>
</a>
</div>
</div>
</body>
</html>