-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (120 loc) · 5.46 KB
/
index.html
File metadata and controls
128 lines (120 loc) · 5.46 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<title>Guitars World</title>
</head>
<body>
<header class="header">
<img src="./images/guitar-pick-logo.png" alt="guitar-pick-logo" class="header__image">
<div class="header__label">
<span class="header__welcome">Welcome to Guitars World!</span>
<button class="header__button-enter">Shop now!</button>
</div>
</header>
<main>
<section class="card">
<div class="card__item card__item--1">
<i class="fas fa-globe card__icon"></i>
<div class="card__description">
<span class="card__header">Global</span>
Our company delivers global products!
</div>
</div>
<div class="card__item card__item--2">
<i class="fas fa-check-double card__icon"></i>
<div class="card__description">
<span class="card__header">Best products</span>
You can be 100% sure you get the best product on the market
</div>
</div>
<div class="card__item card__item--3">
<i class="fas fa-phone card__icon"></i>
<div class="card__description">
<span class="card__header">Customer service</span>
Our customer service works 24/7
</div>
</div>
<div class="card__item card__item--4">
<i class="fas fa-smile-beam card__icon"></i>
<div class="card__description">
<span class="card__header">Our mission</span>
Our guitars are made with the idea of giving people the best we can!
</div>
</div>
</section>
<section class="products">
<div class="products__container">
<div class="products__product products__product--1">
<img src="images/guitar-head.jpg" alt="guitar-head" class="products__image">
</div>
<div class="products__product products__product--2">
<img src="images/red-guitar.jpg" alt="red-guitar" class="products__image">
</div>
<div class="products__product products__product--3">
<img src="images/bass-guitar.jpg" alt="bass-guitar" class="products__image">
</div>
<div class="products__product products__product--4">
<img src="images/guitar-stage.jpg" alt="guitar-stage" class="products__image">
</div>
<div class="products__product products__product--5">
<img src="images/acoustic-guitar.jpg" alt="acoustic-guitar" class="products__image">
</div>
<div class="products__product products__product--6">
<img src="images/metal-guitarist.jpg" alt="metal-guitarist" class="products__image">
</div>
<div class="products__product products__product--7">
<img src="images/les-paul.jpg" alt="les-paul" class="products__image">
</div>
<div class="products__product products__product--8">
<img src="images/tapping.jpg" alt="tapping" class="products__image">
</div>
<div class="products__product products__product--9">
<img src="images/classical-guitar.jpg" alt="classical-guitar" class="products__image">
</div>
<div class="products__product products__product--10">
<img src="images/electric-guitar.jpg" alt="electric-guitar" class="products__image">
</div>
</div>
</section>
</main>
<footer class="footer">
<span class="footer__item">Company</span>
<span class="footer__item">Shop</span>
<span class="footer__item">Contact</span>
<span class="footer__item">Sponsors</span>
</footer>
<div class="nav">
<input type="checkbox" class="nav__checkbox" id="navigation">
<label for="navigation" class="nav__checkbox-label">
<span class="nav__icon"></span>
</label>
<div class="nav__background">
<div class="nav__menu">
<ul class="nav__menu-list">
<li>
<a href="#" class="nav__menu-link">News</a>
</li>
<li>
<a href="#" class="nav__menu-link">About us</a>
</li>
<li>
<a href="#" class="nav__menu-link">New models</a>
</li>
<li>
<a href="#" class="nav__menu-link">History</a>
</li>
<li>
<a href="#" class="nav__menu-link">Contact us</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>