-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFatima HTML2.html
More file actions
52 lines (40 loc) · 1.22 KB
/
Fatima HTML2.html
File metadata and controls
52 lines (40 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML 2 </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="fixed-header">
<div class="container">
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
</nav>
</div>
</div>
<div class="container">
<div class="vertical-menu">
<a href="#" class="active">Grocery Product</a>
<a href="#">Diary Product</a>
<a href="#">Vegetables</a>
<a href="#">Fruits</a>
</div>
</div>
<div class="container">
<img width="50%" height="200" src="supermarket.jpg" alt="here is an image od a supermarket">
<ul>
<li>oil</li>
<li>soy sauce</li>
<li>rice</li>
<li>bread</li>
<li>vinger</li>
</ul>
</div>
<div class="fixed-footer">
<div class="container"><a href="https://codi.tech/">Navigate To CODI </a></div>
</div>
</body>
</html>