-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
35 lines (26 loc) · 853 Bytes
/
template.html
File metadata and controls
35 lines (26 loc) · 853 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
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<title>McDonagh Corp</title>
<!-- Imports css and favicon -->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/menu.css">
<link rel="icon" type="img/ico" href="/favicon.ico">
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="/">Home</a>
<a href="/games">Games</a>
<a href="/emulators">Emulators</a>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<script type="text/javascript" src="/nav.js"></script>
<div id="main">
<center>
<h1>McDonagh Corp</h1>
</center>
</div>
</body>
</html>