-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
56 lines (53 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- basic -->
<meta charset="utf-8">
<!-- mobile metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- site metas -->
<title>YouTube Ads Clone</title>
<!-- favicon -->
<link rel="icon" href="https://cdn.mrayush.me/image/dev/logo.png" type="image/png" />
<!-- stylesheets -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://vjs.zencdn.net/7.18.1/video-js.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<!-- body -->
<body>
<div class="spinner-wrapper">
<div class="spinner"></div>
</div>
<div class="wrapper1">
<div class="title">
YouTube Ads Clone
</div>
<div class="field">
<input type="number" id="ad_times_shown" required>
<label>No of times Ad Video to be shown</label>
</div>
<div class="wrapper hide">
<p class="input_type">Upload The Main Video</p>
<video class="video-js" id="video" width="320" height="240" controls style="display: none;">
<source src="" type="video/mp4">
</video>
<div class="input_video_here">
<input class="file-input" type="file" accept="video/mp4" name="file" hidden>
<i class="fas fa-cloud-upload-alt"></i>
<p>Browse File to Upload</p>
</div>
</div>
<div class="field">
<div class="submit_btn">
<h3 class="h">Skip</h3>
</div>
<button class="submit_btn hide" id="play_button">Play</button>
</div>
</div>
<!-- JS Script -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>