forked from cjyueh/Microblog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 955 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
<script src="http://code.jquery.com/jquery.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<title>Blog</title>
</head>
<body>
<article>
<h1>Blog Log of Toast Posts</h1>
<form method="POST">
<label for="blog-input"></label>
<input id="blog-input" type="text" name="input-key" placeholder="toast" /><br>
<input id="submit-button" type="submit" value="to post" />
</form>
<ul id="log"></ul>
</article>
</body>
</html>