forked from amitxharma/Youtube-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo.html
More file actions
57 lines (46 loc) · 1.43 KB
/
video.html
File metadata and controls
57 lines (46 loc) · 1.43 KB
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
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link rel="stylesheet" href="video.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<title>Video Playing...</title>
</head>
<body>
<!-- for header -->
<div class="main-container">
<div class="headerContainer"></div>
<!-- <div class="video-container"> -->
<div class="video-container">
<div id="video-player"></div>
<div class="video-details">
</div>
<div class="comment-section">
<div class="heading">
<span id="comments"></span>
<i class="fas fa-arrow-alt-circle-right"></i>
<span class="sort">sort by</span>
</div>
<div class="comments-body">
</div>
</div>
</div>
<!-- suggestion-video-container -->
<div class="suggestion-container">
<h4 id="suggestion-heading">Suggestion videos</h4>
</div>
<!-- </div> -->
</div>
<script src="https://www.youtube.com/iframe_api"></script>
<script src="video.js"></script>
</body>
</html>