-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#04AA6D">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="index.css">
<meta name="description" content="HTML CSS Scroll To Top Sticky" />
<meta name="robots" content="index, follow" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎯</text></svg>">
<title>Scroll To Top Sticky</title>
</head>
<body id="body">
<div class="content-container">
<header class="header">
<nav class="header__navbar">
<ul class="navbar-links">
<li class="navbar-links__link">Link</li>
<li class="navbar-links__link">Link</li>
<li class="navbar-links__link">Link</li>
<li class="navbar-links__link">Link</li>
</ul>
</nav>
</header>
<main class="main">
<h2 class="main__title title">Main Content</h2>
<div class="main__scroll-to-top">
<a class="scroll-to-top__link" href="#body">☝</a>
</div>
</main>
<footer class="footer">
<h2 class="footer__title title">Footer</h2>
</footer>
</div>
</body>
</html>