-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.69 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.69 KB
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
<!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">
<link rel="icon" type="image/x-icon" href="./assets/icons/star-wars-favicon.png">
<link rel="stylesheet" href="./styles/style.css">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<title>Document</title>
</head>
<body>
<div class="container">
<header class="header">
<p class="header__logo">Star Wars</p>
</header>
<main>
<section class="hero">
<div class="hero__container">
<div class="hero__left">
<h1 class="hero__title">Marketplace</h1>
<p class="hero__description">Get all the vehicles and ships you need!</p>
</div>
<div class="hero__right">
<img class="hero__image" src="./assets/images/star-destroyer.png">
</div>
</div>
</section>
<section class="navigation">
<p class="navigation__instructions">Select a category to view available products</p>
<a class="button navigation__button" id="btn-starships" href="">Starships</a>
<a class="button navigation__button" id="btn-vehicles" href="">Vehicles</a>
</section>
<section class="cards" id="starship-cards"></section>
<section class="cards" id="vehicle-cards"></section>
</main>
</div>
<footer class="footer">
<p class="footer__text">Star Wars Marketplace created by Ashkan Bossani, Audun Young and Valerie Pomerleau with <a class="footer__link" href="https://swapi.dev/">https://swapi.dev/</a></p>
</footer>
<script src="./scripts/script.js"></script>
</body>
</html>