-
Notifications
You must be signed in to change notification settings - Fork 1
/
infotainment.html
45 lines (38 loc) · 1.27 KB
/
infotainment.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
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maharashtra Mandal - Infotainment</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="/images/favicon.ico" />
</head>
</head>
<body>
<header>
<nav>
<div id="nav-placeholder"></div>
<script>
$(function () {
$("#nav-placeholder").load("nav.html");
});
</script>
</nav>
</header>
<div class="pad center" >
<div class="social grad pad" >
<a href="/infotainment/hangman.html" title="Hangman" class="pad material-icons">
<img src="images/site/hangman.png" class = 'fit' alt="Hangman">
<br><span class = "grad">Hangman</span>
</a>
</div>
<div class="social grad pad" >
<a href="/infotainment/qindex.html" title="Quiz" class="pad material-icons">
<img src="images/site/quiz.png" class = 'fit' alt="Quiz">
<br><span class = "grad">Quiz</span>
</a>
</div>
</div>
</body>
</html>