-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsection3_4.html
62 lines (62 loc) · 2.32 KB
/
section3_4.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
<!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="./images/favicon.png" />
<title>A-116 Coders | Design Challenge 1</title>
<!--Stylessheet-->
<link rel="stylesheet" href="./css/section3.css" />
<!--Google Fonts (Montserrat)-->
<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=Montserrat:wght@200;300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<section class="third">
<h3>Shop by Category</h3>
<div class="cards">
<div class="card-white">
<div class="image1"></div>
<h6>PHONES & <br>ACCESSORIES</h6>
<p>High class, high quality phones<br>at affordable prices</p>
</div>
<div class="card-white">
<div class="image2"></div>
<h6>COMPUTER<br>EQUIPMENT</h6>
<p>All of your desktop and laptop needs<br>made available</p>
</div>
<div class="card-white">
<div class="image3"></div>
<h6>MISCELLANEOUS<br>ITEMS</h6>
<p>We've got more stuff to meet<br>your techie needs</p>
</div>
</div>
<button>Shop All</button>
</section>
<section class="fourth">
<div class="left">
<div class="expert">
<h2>Expert Support</h3>
Faulty phone battery? Slow laptop? We have<br>
in-house tech experts who can assist you.<br>
<br>Visit us in stores!
</div>
<div class="locations">
<h5>OUR LOCATIONS</h5>
123 Anywhere St.<br>
Any City, State, Any Country<br>
(123) 456 7890<br><br>
123 Anywhere St.<br>
Any City, State, Any Country<br>
(123) 456 7890<br>
</div>
</div>
<div class="right"></div>
</section>
</body>
</html>