-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (91 loc) · 2.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Quickstart Web Template for simple frontend projects, landing pages, and hobby sites."
/>
<title>Quickstart Web Template</title>
<!-- Main CSS -->
<link rel="stylesheet" href="css/main.css" />
<!-- Favicon -->
<link rel="icon" href="img/favicon.ico" />
</head>
<body>
<!-- Navbar -->
<header class="header">
<div class="container header-container">
<a href="#" class="header-nav__logo">Logo</a>
<nav class="header-nav">
<ul class="header-nav__list">
<li class="header-nav__list-item">
<a class="btn" href="#hero">Home</a>
</li>
<li class="header-nav__list-item">
<a class="btn" href="#about">About</a>
</li>
<li class="header-nav__list-item">
<a class="btn" href="#features">Features</a>
</li>
<li class="header-nav__list-item">
<a class="btn" href="#contact">Contact</a>
</li>
<li class="header-nav__list-btn">
<a class="btn btn--dark" href="#contact">Button</a>
</li>
</ul>
</nav>
<button class="btn btn--dark header-nav__btn">
Button<button></button>
</button>
<div class="burger">
<span></span>
<span></span>
<span></span>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="container">
<div class="hero-heading">
<h1 class="hero-heading__title">Quickstart Web Template</h1>
<p class="hero-heading__subtitle">
A minimal template to kickstart a web project quickly and easily.
</p>
</div>
</div>
</section>
<!-- Main Content -->
<main>
<section>
<div class="container"></div>
</section>
<div class="back-to-top">
<a href="#home">
<svg
xmlns="http://www.w3.org/2000/svg"
width="18"
height="18"
fill="#000"
viewBox="0 0 256 256"
>
<path
d="M213.66,165.66a8,8,0,0,1-11.32,0L128,91.31,53.66,165.66a8,8,0,0,1-11.32-11.32l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,213.66,165.66Z"
></path>
</svg>
</a>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>Copyright © <span class="year"></span></p>
</div>
</footer>
<!-- Main JavaScript -->
<script src="js/main.js"></script>
</body>
</html>