-
Notifications
You must be signed in to change notification settings - Fork 0
/
youtube.html
57 lines (51 loc) · 1.31 KB
/
youtube.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tiktok</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
* {
margin: 0;
padding: 0;
font-family: "DM Sans", sans-serif;
}
body {
overflow: hidden;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.container {
position: relative;
width: 100vw;
height: 100vh;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
a {
position: absolute;
bottom: 0px;
left: 0;
right: 0;
background-color: #001AAF;
color: #EAEAEA;
padding: 15px;
text-align: center;
font-weight: bolder;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<img src="imagens/yt.jpeg" alt="Youtube">
<a href="https://www.youtube.com/@mubi" target="_blank">ACESSAR</a>
</div>
</body>
</html>