16 lines
455 B
HTML
16 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="main.css">
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
|
|
<script src="application.js"></script>
|
|
</head>
|
|
<body>
|
|
<form id="post-comment" action="#" method="post">
|
|
<input type="text" name="comment" placeholder="Type your comment." />
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
<ul id="comments"></ul>
|
|
</body>
|
|
</html>
|