-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (61 loc) · 2.18 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
<!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>The Speaker Shop</title>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/4eeb1e6103.js" crossorigin="anonymous"></script>
</head>
<body>
<!--header-->
<header>
<div class="Speaker">
<img src="./images/1000px-Speaker_Icon.svg.png" alt="Speaker Icon">
<h3> The Speaker Shop</h3>
</div>
<nav class="navbar">
<ul>
<li> <a href="#">Home</a></li>
<li> <a href="#">Products</a></li>
<li> <a href="#">Checkout</a></li>
</ul>
</nav>
</header>
<!--Main-->
<main>
<section class="matter">
<h1>Your home speaker. Reinvented.</h1>
<p>They combine beauty, quality and simplicity to create an emotional music experience. </p>
<div>
<a class="button" href="#">Watch Story Video <img src="./images/play_video.png" alt="video play button"></a>
</div>
</section>
<section class="articles">
<a href="#">
<article class="article1">
<h2>Beauty. Quality. Simplicity.</h2>
<img src="./images/open.png" alt="arrow-right">
</article>
</a>
<a href="#">
<article class="article2">
<h2>High-end sound quality</h2>
<img src="./images/open.png" alt="arrow-right">
</article>
</a>
<a href="#">
<article class="article3">
<h2>Play music with your voice.</h2>
<img src="./images/open.png" alt="arrow-right">
</a>
</article>
</section>
</main>
<!--footer-->
<footer>
<h4>All rights reserved <i class="fa-regular fa-copyright"></i> Speaker Shop 2020</h4>
</footer>
</body>
</html>