-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SheepyShops</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css">
</head>
<body>
<header>
<h1>Sheepy<span>Shops</span></h1>
<p>We have designed you the best user experience website. To search for all your available needs depending on your budgets. You can find all your available links to all products you want to buy at your own budget.</p>
</header>
<main>
<picture>
<section>
<ul style="list-style-type:none;">
<li><a href="./laptop.html"><img src="./image/computer-desk-196658.jpg" alt="laptop"></a></li>
<li><p>Laptop & Accesories</p></li>
</ul>
</section>
<section>
<ul style="list-style-type:none;">
<li><a href="./mobiles.html"><img src="./image/photography-of-woman-listening-to-music-761963.jpg" alt="mobile"></a></li>
<li><p>Mobiles & Accesories</p></li>
</ul>
</section>
<section>
<ul style="list-style-type: none;">
<li><a href="./home&kit.html"><img src="./image/white-wooden-cupboards-2724749.jpg" alt="home"></a></li>
<li><p>Home & Kitchen</p></li>
</ul>
</section>
<section>
<ul style="list-style-type: none;">
<li><a href="./cam&acc.html"><img src="./image/camera.jpg" alt="sport"></a></li>
<li><p>Camera & Accesories</li>
</ul>
</section>
</picture>
</main>
<footer>
<div id="social">
<a class="btn" href="#">
<i class="fab fa-facebook-f"></i>
</a>
<a class="btn" href="#">
<i class="fab fa-instagram"></i>
</a>
</div>
</footer>
</body>
</html>