-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (28 loc) · 1.09 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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<!--Site Wide head information-->
<script crossorigin="anonymous" src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script> $(function () { $("#navbar").load("/include/navbar.html"); $("#links").load("/include/links.html"); });</script>
<title>Toner Land</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/stylesheets/main.css">
<!--page specific head information-->
<link rel="stylesheet" href="/stylesheets/index.css">
<!--Alp Sucks-->
</head>
<body>
<div id="navbar"></div>
<div class="header">
<h1>Welcome to michael-toner.com</h1>
<img src='/images/michael_espresso.jpeg' title='Yum!' alt='Me drinking espresso martinis' height=200>
<p>Howdy!</p>
<p>Click the links in the navbar at the top to see some stuff</p>
<p>If you're bored you can play with some dots on the last tab</p>
<a href="mailto: miketoner23@gmail.com">miketoner23@gmail.com</a>
</div>
<div id="links"></div>
</body>
</html>