forked from Codi-T03/HTML-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFaten_HTML2.html
More file actions
59 lines (59 loc) · 1.87 KB
/
Faten_HTML2.html
File metadata and controls
59 lines (59 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Faten HTML2</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<header>CATS STORE</header>
<br>
<div class="links">
<span><a href="#flex">Flex Food</a></span>
<span><a href="#fudge">Fudge Food</a></span>
<span><a href="#dessert">Dessert Food</a></span>
<span><a href="#accesso">Accesories</a></span>
</div>
<br>
<img class="img1"src="Assets/img2/image1.jpg" alt="">
<h1>FOOD STORE</h1>
<main>
<div id="parent">
<div class="flex-cont1">
<img src="Assets/img2/image2.jpg" alt="Flexy Food">
<menu id="flex">
<li>CHIKEN</li>
<li>MEAT</li>
<li>vegetable</li>
</menu>
<img src="Assets/img2/image3.jpg" alt="Fudge Food">
<ul id="Fudge">
<li>CHIKEN</li>
<li>MEAT</li>
<li>vegetable</li>
</ul>
</div>
<div class="flex-cont1">
<img src="Assets/img2/image4.jpg" alt="Dessert">
<uL id="dessert">
<li>Crunshy</li>
<li>Fudge</li>
<li>Liquid</li>
</uL>
<img src="Assets/img2/image5.jpg" alt="accessories">
<uL id="accessories">
<li>Neekles</li>
<li>ID tages</li>
<li>Toys</li>
</uL>
</div>
</div>
</main>
<footer>
<span><a href="#flex">Flex Food</a></span>
<span><a href="#fudge">Fudge Food</a></span>
<span><a href="#dessert">Dessert Food</a></span>
<span>@Copyright</span><a href="www.coditech.com" target="_blank">Codi.tech</a>
</footer>
</body>
</html>