-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=PT+Sans:wght@400;700&display=swap" rel="stylesheet" />
<script src="https://kit.fontawesome.com/70984d4de4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css" />
<meta name="description" content="Welcome to Running Shoes - shoes for everyone" />
<title>Homepage - Running Shoes</title>
</head>
<body>
<header>
<div class="header__container">
<a href="/"><img class="header__logo" src="images/logo.png" alt="logo" /></a>
<nav class="navbar">
<div class="navbar__links"></div>
<div class="navbar__hamburger"></div>
</nav>
</div>
</header>
<main>
<div class="homepage-banner"></div>
<img class="main__logo" src="images/logo-with-text.png" alt="logo" />
<h1 class="index-main-header">Our new features</h1>
<div class="carousel">
<div class="carousel__wrapper"></div>
<i class="fas fa-chevron-circle-left"></i>
<i class="fas fa-chevron-circle-right"></i>
</div>
<div class="homepage-shoes">
<div class="image-elements">
<h2>Check out all our shoes!</h2>
<a href="pages/products.html" class="cta">Go to shop</a>
</div>
</div>
</main>
<footer>
<div>
<i class="fas fa-copyright"> <span>Running Shoes</span></i>
</div>
<div class="community">
<h3>Community</h3>
<div class="community__icons">
<a href=""><i class="fab fa-facebook-square"></i></a>
<a href=""><i class="fab fa-twitter-square"></i></a>
<a href=""><i class="fab fa-instagram-square"></i></a>
</div>
</div>
</footer>
<script src="js/index.js" type="module"></script>
</body>
</html>