-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 767 Bytes
/
index.html
File metadata and controls
42 lines (42 loc) · 767 Bytes
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
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video player</title>
<style>
body {
margin: 0;
background-color: #101010;
color: #fff;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
h1 {
font-size: 1.5rem;
margin-bottom: 20px;
}
video {
width: 100%;
max-width: 640px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.video-container {
width: 100%;
padding: 0 15px;
}
</style>
</head>
<body>
<div class="video-container">
<video controls="">
<source src="video_example.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</body>
</html>