-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet"href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"/>
<link rel="stylesheet" href="./styles/styles.css" />
<title>Sass Simple page</title>
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<a href="#" class="navbar__logo">SASS</a>
<div class="navbar__bars"><i class="fas fa-bars"></i></div>
<div class="navbar__menu">
<a href="#" class="navbar__menu--links">Home</a>
<a href="#" class="navbar__menu--links">Products</a>
<a href="#" class="navbar__menu--links">Services</a>
<a href="#" class="navbar__menu--links" id="button">Sign Up</a>
</div>
</nav>
<!-- Hero Section -->
<div class="hero">
<div class="hero__container">
<div class="hero__container--left">
<h1>They are coming</h1>
<h2>Be Prepared</h2>
<p>Sign up now to join the list.</p>
<button class="hero__container--btn"><a href="#">Sign Up</a></button>
</div>
<div class="hero__container--right">
<img
src="images/img-2.svg"
alt="alien"
class="hero__container--img"
/>
</div>
</div>
</div>
</body>
</html>