forked from cathydeng/simple-website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 1016 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="">
<title>MY WEBSITE TITLE</title>
<link rel="shortcut icon" href="/favicon.png">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://bootswatch.com/yeti/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<div class='container'>
<div class='row'>
<div class='col-sm-12'>
<h2>Hi Civic Designers!</h2>
<img src="http://d24wuq6o951i2g.cloudfront.net/img/events/id/206/2063860/assets/823.Civic_DesignCamp_Outlined_sticker.png"></img>
</div>
</div>
</div>
</body>
<script type="text/javascript">
$(document).ready(function() {
// your javascript here
});
</script>
</html>