-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory.html
More file actions
29 lines (27 loc) · 848 Bytes
/
Copy pathcategory.html
File metadata and controls
29 lines (27 loc) · 848 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Trini Ting - Category</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=1024">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" href="icon.ico" type="image/icon type">
</head>
<body>
<img src="yeah.svg" alt="">
<div class="navBtn">
<button onclick="location.href = 'index.html';" class="nav">Home</button>
</div>
<div class="category">
<h1>Choose a category</h1>
<ul>
<li onclick="location.href = 'food.html';">Food</li>
<li onclick="location.href = 'famous.html';">Famous Persons</li>
<li onclick="location.href = 'geography.html';">Geography</li>
<li onclick="location.href = 'celebrations.html';">Celebrations</li>
</ul>
</div>
<p id="footers">Keron Maharaj</p>
</body>
<script src="script.js"></script>
</html>