-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 842 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
<!doctype html>
<html>
<head>
<title>A Simple App</title>
<meta charset="UTF-8">
<link href='style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<h1>Comments</h1>
<p>A simple app that allows a user to input comments</p>
</header>
<main>
<section class='comment-input'>
<p>Add Your Comment:</p>
<input><button>+</button>
</section>
<section class='comments'>
<p>This is the first comment!</p>
<p>Here's the second one!</p>
<p>And this is one more.</p>
<p>Here is another one!</p>
</section>
</main>
<footer>
<p>this work is released into the public domain</p>
</footer>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="app.js"></script>
</body>
</html>