-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.2.0/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>How I Met Yout Mother</title>
</head>
<body>
<div class="container">
<nav>
<ul class="nav__links">
<div>
<li>
<img src="./assets/pngwing.com.png" alt="logo" />
</li>
<li><a href="#">HOME</a></li>
<li><a href="#">CATCHPHRASE GENERATOR</a></li>
<li><a href="#">CHARACTER'S PROFILE</a></li>
<li><a href="#">BARNEY'S PLAYBOOK</a></li>
</div>
<li><a href="./login.html">LOGIN</a></li>
</ul>
</nav>
<section class="section__container" id="append">
<!-- <h3>Presenting</h3> -->
<h1>HOW I MET</h1>
<h2>YOUR MOTHER</h2>
<!-- <button>
<span><i class="ri-arrow-right-line"></i></span>
</button> -->
<div class="scroll__bottom">
<a href="#">
<span><i class="ri-mouse-fill"></i></span>
SCROLL
</a>
</div>
<div class="socials">
<!-- <a href="#"><i class="ri-dribbble-fill"></i></a> -->
<a href="#"><i class="ri-instagram-line"></i></a>
<a href="#"><i class="ri-youtube-fill"></i></a>
</div>
</section>
</div>
<script src="./main.js"></script>
<script src="https://unpkg.com/scrollreveal"></script>
</body>
</html>