This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (81 loc) · 2.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" style="width: 30px; height: 30px"
href="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Mattel-brand.svg/598px-Mattel-brand.svg.png">
<link href="https://vjs.zencdn.net/8.10.0/video-js.css" rel="stylesheet" />
<title>February</title>
<style>
body {
margin: 0;
font-family: sans-serif;
}
nav {
background-color: #6b1a18;
display: flex;
justify-content: center;
}
.container {
width: 90%;
padding: 5px 0;
}
.content {
background-color: #a49594;
display: flex;
justify-content: center;
min-height: 100vh;
}
.wrapContent {
margin: 20px 0 0 0;
padding: 30px;
border-radius: 10px;
}
#my-video {
width: 100%;
height: 70vh;
border-radius: 0 0 10px 10px;
}
@media (max-width: 500px) {
#my-video {
width: 100%;
height: 30vh
}
}
</style>
</head>
<body>
<div class="content">
<div class="container">
<div class="wrapContent">
<style>
#_t-Head {
font-size: 2rem;
}
@media screen and (max-width: 500px) {
#_t-Head {
font-size: 1rem;
}
}
</style>
<div id="_t-Head"
style="background-color: #6b1a18; padding: 10px;color: #ffe4e4;display: flex;justify-content: center;border-radius: 10px 10px 0 0">
🎬 การคีย์ลาวันหยุดพักผ่อนประจำปี 2567-2568
</div>
<video id="my-video" class="video-js" controls preload="auto" poster="poster/คีย์ลาออนไลน์.png">
<source src="videos/Video Leave Online Guid.mp4" type="video/mp4" />
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a
web browser that
<a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
</p>
</video>
</div>
</div>
</div>
<script src="https://vjs.zencdn.net/8.10.0/video.min.js"></script>
</body>
</html>