-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (43 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Home</title>
</head>
<body>
<nav>
<div class="heading">
<h4>Aditya Deshmukh</h4>
</div>
<ul class="nav-links">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="container">
<div class="image">
<img src="images/aditya2.png" alt="" >
</div>
<div class="content-Home-left">
<p1>I'm <span class="auto-type"></span></p1>
<p2></p2>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
var typed = new Typed(".auto-type",{
strings : ["Aditya","a Developer","a coder","good"],
typeSpeed: 10,
backSpeed: 10,
loop : true
})
</script>
</body>
</html>