-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvegetables.html
More file actions
37 lines (34 loc) · 1.07 KB
/
vegetables.html
File metadata and controls
37 lines (34 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vegetables</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="images/logo.png">
</head>
<body>
<a href="#main" class="skip">Skip to main content.</a>
<header>
<img src="images/logo.png" alt="logo web">
<span>Cooking with me</span>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="vegetables.html">Vegetables</a></li>
<li><a href="meat.html">Meat</a></li>
</ul>
</nav>
<div id="main">
<h1>Top 5 Vegetables</h1>
<div class="grid">
<img src="images/raumuong.jpg" alt="rau muống">
<img src="images/bapcai.jpg" alt="rau bắp cải">
<img src="images/raungot.jpg" alt="rau ngót">
<img src="images/suplo.jpg" alt="rau súp lơ">
<img src="images/raudendo.jpg" alt="rau dền đỏ">
</div>
</div>
</body>
</html>