-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (43 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to fair!</title>
<link rel="stylesheet" href="./css/styles.css" />
<link rel="shortcut icon" href="./img/smarcle_logo.ico" />
</head>
<body>
<div class="bg">
<video
muted=""
autoplay=""
loop=""
playsinline=""
style="
border: 0;
height: 100vh;
position: relative;
top: 0;
left: 50%;
transform: translate(-50%, 0);
"
>
<source src="vid/walking.mp4" type="video/mp4" />
</video>
</div>
<main class="text">
<div class="text_welcome">
<h1 class="text_welcome_fir">Welcome to</h1>
<h1 class="text_welcome_sec">Smarcle Makers Fair</h1>
</div>
<div class="text-link-box">
<a class="text_link" href="./login.html">Click to Enter</a>
</div>
<p style="color: gray; margin-top: 50px">
© 2021. Palllang all rights are reserved
</p>
</main>
</body>
</html>