-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 2.25 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
<!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">
<!-- Fontawesome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- CSS file -->
<link rel="stylesheet" href="style.css">
<title>Practice-04-animation</title>
</head>
<body>
<header>
<nav>
<input type="checkbox" name="checkbox" id="checkToggler">
<label for="checkToggler">
<i class="fas fa-cog" id="fa-cog"></i>
</label>
<ul id="sideMenu">
<li><a href="#" class="selected"><i class="fas fa-home"></i> Home</a></li>
<li><a href="#"><i class="fas fa-address-card"></i> About</a></li>
<li><a href="#"><i class="fas fa-code-branch"></i> Portfolio</a></li>
<li><a href="#"><i class="fas fa-id-card-alt"></i> Contact</a></li>
<li><a href="#"><i class="fab fa-blogger"></i> Blog</a></li>
</ul>
</nav>
</header>
<main>
<section class="home-content">
<!-- Animation box -->
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<!-- Animation box end -->
<!-- Backgrount dotted section start -->
<div class="bg-dotted"></div>
<!-- Backgrount dotted section end -->
<!-- Home main content start -->
<div class="main-content">
<h1 class="first-header">Hi! I'm</h1>
<h1 class="own_name">AYON.</h1>
<h5>A proud student of Programming hero</h5>
</div>
<!-- Home main content end -->
</section>
</main>
</body>
</html>