-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (56 loc) · 2.64 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Youtube Player API</title>
<link rel="stylesheet" href="c/main.css">
<script src="j/main.js" defer></script>
</head>
<body>
<header>
<h1><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-map-pin" width="24" height="24"
viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round"
stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<circle cx="12" cy="11" r="3"></circle>
<path d="M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"></path>
</svg> Most Beautiful Places to Visit in Yellowstone National Park</h1>
</header>
<section>
<!-- 1. The <iframe> (and video player) will replace this <div> tag. -->
<div class="video">
<div id="player"></div>
<!-- 1. controls -->
<div id="controls" class="controls">
<form id="video_form">
<fieldset>
<input type="button" onclick="playVideo()" value="Play" />
<input type="button" onclick="pauseVideo()" value="Pause" />
<input type="button" onclick="playRate()" value="fast forward" />
<input type="button" onclick="slow_motion()" value="slo mo" />
<input type="button" onclick="normal()" value="normal" />
</fieldset>
</form>
</div>
</div>
<!-- information -->
<article id="info">
<div id="head" class="location"><svg xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-map-pin" width="24" height="24" viewBox="0 0 24 24"
stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<circle cx="12" cy="11" r="3"></circle>
<path d="M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z"></path>
</svg>
<p id="location"></p>
</div>
</article>
</section>
<div id="resumeVideo" class="popup">
<p>Do you want to resume video?</p>
<button class="resum_button">Ok</button>
</div>
</body>
</html>