jordonpeter01 commited on
Commit
f2ea045
·
1 Parent(s): 49715c3

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +61 -17
index.html CHANGED
@@ -1,19 +1,63 @@
1
  <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>