-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.37 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
<!DOCTYPE html>
<!-- Author: Emily Black, 03/21/17 -->
<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">
<meta name="keyword" content="animations,animated,style,look">
<title>Tanmay Sharma</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/background.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon'/>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/type-it.js"></script>
</head>
<body>
<div id="particles-js"></div>
<script src="js/particles.min.js"></script>
<script src="js/background.js"></script>
<div class="container">
<span class="type-it" style="color:#00ff00;"></span>
</div>
<script>
var first = "Hello,";
var second = "I'm <strong>Tanmay Sharma</strong>.";
var third = "Get to know <a href='about.html'>me</a>.";
var fourth = "<a href='https://x.com/stemtanmay'>𝕏</a> • <a href='https://github.com/tanmay-devv'>GitHub</a> • <a href='https://www.linkedin.com/in/tanmay-sharma-8409102a1/'>LinkedIn</a> • <a href='mailto:[email protected]'>Email</a>";
$('.type-it').typeIt({
strings: [first, second, third, fourth]
});
</script>
</body>
</html>