-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathindex.html
37 lines (30 loc) · 803 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
28
29
30
31
32
33
34
35
36
37
<html>
<head>
<title>heroku-static-site -- basic HTML+CSS+JS website on Heroku</title>
<link rel="stylesheet" href="css/screen.css" type="text/css" media="screen" charset="utf-8" />
<script src="js/application.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="container">
<div id="header">
<h1>heroku-static-site</h1>
</div>
<div id="main">
<div id="navigation">
<h2>Cool links</h2>
<ul>
<li><a href="https://github.com/jamiew/heroku-static-site">GitHub repository</a></li>
<li><a href="https://jamiedubs.com">jamiedubs.com</a></li>
</ul>
</div>
<div id="description">
<h2>Is computer on?</h2>
<p>Yep</p>
</div>
</div>
<div id="footer">
© 2013-2019
</div>
</div>
</body>
</html>