-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (26 loc) · 922 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Video Comment</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="content">
<video width="960" height="533" controls="controls" autoplay="autoplay" id="video">
<source src="movie.mp4" type="video/mp4" />
<source src="movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<div id="comment">
<p>Add a comment at :<span></span></p>
<input type="text" name="comment" tabindex="1"/>
<input type="button" value="Submit" class="save" tabindex="2" />
<input type="button" value="Cancel" class="cancel" tabindex="3" />
</div>
<div id="results">
</div>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>