-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.05 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Max's Website</title>
<meta name="Description" content=">Max's Website">
<meta name="viewport" content="width=device-width,initial-scale=1.0, maximum-scale=1, user-scalable=no" />
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href=/img/icon.png" type="image/x-icon">
</head>
<body style="overflow:hidden;">
<div class="bg"></div>
<div class="bg bg2"></div>
<div class="bg bg3"></div>
<div class="navbar" id="navBar">
<a href="/index.html" target="_blank">Home</a>
<a href="/about.html" target="_blank">About</a>
<a href="javascript:void(0);" class="icon" onclick="navToggle()"><i class="fa fa-bars"></i></a>
</div>
<div class="bodycontainer">
<h1>
Max's Website
</h1>
<noscript>Sorry for the inconvenience. Your browser does not support Javascript, meaning functionality of this website is not guaranteed.</noscript>
</div>
<script src="/script.js"></script>
</body>
</html>