-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 2.31 KB
/
index.html
File metadata and controls
49 lines (42 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Create a video trailer popup with this JavaScript project, enhancing user experience with engaging media." />
<meta name="keywords"
content="video trailer popup, JavaScript popup, media popup, basic video project, engage users" />
<meta property="og:title" content="Video Trailer Popup" />
<meta property="og:description"
content="Create a video trailer popup with this JavaScript project, enhancing user experience with engaging media." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/video-trailer-popup.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/video-trailer-popup" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Video Trailer Popup" />
<meta name="twitter:description"
content="Create a video trailer popup with this JavaScript project, enhancing user experience with engaging media." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/video-trailer-popup.png" />
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Trailer Popup</title>
</head>
<body>
<main class="container">
<img src="pexels-photo-3062545.webp" alt="image">
<h1 class="title">Movie Title</h1>
<p class="subTitle">Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium hic aut delectus nemo
repellendus et numquam odio accusantium earum optio, nesciunt officia, dolorem in commodi, distinctio rerum
quos maxime ad.
</p>
<button id="watch">Watch now</button>
</main>
<div class="trailer-container active">
<video src="trailer.mp4" controls="true"></video>
<i class="fas fa-times fa-2x close-icon"></i>
</div>
<script src="script.js"></script>
</body>
</html>