-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (29 loc) · 827 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="icon" href="resources/logo.png" type="image/png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Pacifico">
</head>
<body>
<h1>Burger Point & Food Restaurant</h1>
<!--Index of Further Different Page's Link-->
<ul>
<li>
<a href="login/login.html">Login</a>
</li>
<li>
<a href="SignUp/sign_up.html">Sign Up</a>
</li>
<li>
<a href="dashboard/dashboard.html">Dashboard</a>
</li>
<li>
<a href="menu/menu.html">Menu</a>
</li>
</ul>
</body>
</html>