-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
42 lines (42 loc) · 1.24 KB
/
intro.html
File metadata and controls
42 lines (42 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="35; marvel_home.html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
overflow: hidden;
}
.section {
transform: translateY(-13%);
position: relative;
width: 105%; height: auto;
display: flex;
justify-content: center;
}
button {
position: absolute;
bottom: 80px; right: 80px;
width: 100px; height: 30px;
font-size: 14px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
border-radius: 8px;
border: transparent;
background-color: gray;
cursor: pointer;
}
</style>
</head>
<body>
<div class="section">
<video autoplay loop muted>
<source src="X2Download.com-Marvel%20Intro%20_%204k%2060FPS-(1080p60).mp4" type="video/mp4">
</video>
</div>
<a href="marvel_home.html"><button>Skip</button></a>
</body>
</html>