-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (27 loc) · 847 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/html">
<head lang="en">
<meta charset="UTF-8">
<title>Test Application With JS</title>
<link href="stylesheets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
</header>
<main>
<section class="comment-input">
<p>Add your comment:</p>
<input type="text"><button>+</button>
</section>
<section class="comments">
<p>First comment</p>
<p>Second comment</p>
<p>Another comment</p>
</section>
</main>
<footer>
</footer>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="javascripts/app.js"></script>
</body>
</html>