-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.html
44 lines (41 loc) · 1.3 KB
/
base.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Percent Marks Management System</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon/favicon-16x16.png">
<link rel="manifest" href="./images/favicon/site.webmanifest">
</head>
<body>
<header>
<div class="logo">
<img src="./images/rectangle_logo_transparent.png" alt="">
</div>
<menu>
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./guide.html">How to Use</a>
<a href="./contact.html">Contact</a>
<a href="./login.html">Account</a>
</menu>
</header>
<main>
</main>
<footer>
<p>
<a href="#">Tutorial</a>
</p>
<p>
© Percent Marks Management System 2024
</p>
<p>
<a href="#">Admin</a>
</p>
</footer>
</body>
</html>