-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
47 lines (44 loc) · 2.12 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
<!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.0">
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<title>John Doe | Profile</title>
</head>
<body>
<div class="container">
<ul class="box-area">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="glass">
<h1>JOHN DOE</h1>
<a href="#" target="_blank"><i id="tiktok" class="fa-brands fa-tiktok"></i></a>
<a href="#" target="_blank"></a> <i id="discord" class="fa-brands fa-discord"></i></a>
<a href="#" target="_blank"><i id="youtube" class="fa-brands fa-youtube"></i></a>
<a href="#" target="_blank"><i id="twitter" class="fa-brands fa-twitter"></i></a>
<a href="#" target="_blank"><i id="github" class="fa-brands fa-github"></i></a>
<p><span class="wave">👋</span> Hello, I am John Doe, a <span class="auto-type"></span></p>
</div>
</div>
<script>
var typed = new Typed(".auto-type",{
strings : ["web developer", "UI & UX designer", "freelancer", "web developer", "UI & UX designer", "freelancer", "web developer", "UI & UX designer", "freelancer", "web developer", "UI & UX designer", "freelancer", "web developer", "UI & UX designer", "freelancer"],
typeSpeed : 150,
backSpeed : 100,
looped : true
})
</script>
</body>
</html>