-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1003 Bytes
/
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
<html>
<title>FerguNet</title>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@200&display=swap" rel="stylesheet">
<link href='css/main.css' rel='stylesheet' type='text/css'>
<link href='css/navbar.css' rel='stylesheet' type='text/css'>
<script src='js/main.js'></script>
</head>
<body>
<template id='block-section-handle-template'>
<div class='block-section-handle-button'>
<span class='vert'></span>
<span class='horz'></span>
</div>
</template>
<div id='content'>
<nav id='nav-bar'></nav>
<div style="flex: 1 1 auto"></div> <!-- This helps center the header -->
<header>fergu.net</header>
<div id='home-content'>The personal webpage of Kevin Ferguson</div>
<div style="flex: 1 1 auto"></div> <!-- This helps center the header -->
<footer id="footer"></footer>
</div>
</body>
</html>