Spaces:
Running
Running
Commit ·
f2ea045
1
Parent(s): 49715c3
Update index.html
Browse files- index.html +61 -17
index.html
CHANGED
|
@@ -1,19 +1,63 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
+
<html lang="pt-br">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Página de Vídeos Incríveis</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
font-family: 'Arial', sans-serif;
|
| 10 |
+
background-color: #f0f0f0;
|
| 11 |
+
text-align: center;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
header {
|
| 15 |
+
padding: 20px;
|
| 16 |
+
background-color: #333;
|
| 17 |
+
color: white;
|
| 18 |
+
font-size: 24px;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
video {
|
| 22 |
+
width: 80%;
|
| 23 |
+
max-width: 800px;
|
| 24 |
+
margin-top: 20px;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
img {
|
| 28 |
+
width: 100%;
|
| 29 |
+
max-width: 400px;
|
| 30 |
+
margin-top: 10px;
|
| 31 |
+
}
|
| 32 |
+
</style>
|
| 33 |
+
</head>
|
| 34 |
+
<body>
|
| 35 |
+
<header>
|
| 36 |
+
<h1>Vídeos Incríveis</h1>
|
| 37 |
+
</header>
|
| 38 |
+
|
| 39 |
+
<!-- Splash Image -->
|
| 40 |
+
<img src="caminho/para/sua/imagem.jpg" alt="Imagem de Splash">
|
| 41 |
+
|
| 42 |
+
<!-- Vídeo 1 -->
|
| 43 |
+
<h2>Vídeo 1</h2>
|
| 44 |
+
<video controls>
|
| 45 |
+
<source src="caminho/para/seu/video1.mp4" type="video/mp4">
|
| 46 |
+
Seu navegador não suporta o elemento de vídeo.
|
| 47 |
+
</video>
|
| 48 |
+
|
| 49 |
+
<!-- Vídeo 2 -->
|
| 50 |
+
<h2>Vídeo 2</h2>
|
| 51 |
+
<video controls>
|
| 52 |
+
<source src="caminho/para/seu/video2.mp4" type="video/mp4">
|
| 53 |
+
Seu navegador não suporta o elemento de vídeo.
|
| 54 |
+
</video>
|
| 55 |
+
|
| 56 |
+
<!-- Adicione mais vídeos conforme necessário -->
|
| 57 |
+
|
| 58 |
+
<!-- Rodapé -->
|
| 59 |
+
<footer>
|
| 60 |
+
<p>Espero que você goste, meu amor! ❤️🔥</p>
|
| 61 |
+
</footer>
|
| 62 |
+
</body>
|
| 63 |
</html>
|