-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Akib bin Zia</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<nav>
<img src="images/logo2.png" class="logo" alt="owner">
<ul>
<li><a href="">HOME</a></li>
<li><a href="">ABOUT</a></li>
<li><a href="">PORTFOLIO</a></li>
<li><a href="">SERVICES</a></li>
</ul>
<img src="images/menu.png" class="menu-icon" alt="menu">
</nav>
<div class="text-box">
<h1>I am <span class="auto-input"></span> </h1>
<p>You can reach out to me if you need any help in researching about<br> China or Chinese language.</p>
<a href="">Contact Me</a>
<a href="" class="btn">Dowload CV</a>
</div>
<img src="images/image2.png" alt="ana" class="user-img">
</div>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<script>
var typed = new Typed(".auto-input", {
strings: ["Akib Fahad Sabit", "English Teacher ", "Business Consultant"],
typeSpeed: 100,
backSpeed: 100,
loop: true
})
</script>
</body>
</html>