-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.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
<!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">
<title>SCSS-Responsive</title>
<script src="https://kit.fontawesome.com/c939d0e917.js"></script>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- navbar section -->
<nav class="navbar">
<a href="/" class="navbar__logo">SASS</a>
<div class="navbar__bars">
<i class="fa 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>Lets Explore World</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="image/image.svg" class="hero__container--img" alt="">
</div>
</div>
</div>
</body>
</html>