-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (55 loc) · 2.21 KB
/
index.html
File metadata and controls
62 lines (55 loc) · 2.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TRZ3D Narrator</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="container">
<img id="bg-image" src="images/default.png" alt="Background" />
<div id="controls">
<h1 id="titulo">Cargando...</h1>
<div id="text-wrapper">
<div id="texto"><span>Espera por favor...</span></div>
</div>
<div id="buttons">
<button id="playBtn" Play</button>
</div>
<div id="share-buttons">
<button title="WhatsApp">
<img src="icons/whatsapp.png" alt="WhatsApp" width="64" height="64" />
</button>
<button title="Facebook">
<img src="icons/facebook.png" alt="Facebook" width="64" height="64" />
</button>
<button title="Twitter">
<img src="icons/twitter.png" alt="Twitter" width="64" height="64" />
</button>
<button title="Messenger">
<img src="icons/messenger.png" alt="Messenger" width="64" height="64" />
</button>
<button title="Reddit">
<img src="icons/reddit.png" alt="Reddit" width="64" height="64" />
</button>
<button title="Telegram">
<img src="icons/telegram.png" alt="Telegram" width="64" height="64" />
</button>
<button title="LinkedIn">
<img src="icons/linkedin.png" alt="LinkedIn" width="64" height="64" />
</button>
<button title="Email">
<img src="icons/email.png" alt="Email" width="64" height="64" />
</button>
<button title="Copiar Link">
<img src="icons/copy.png" alt="Copy" width="64" height="64" />
</button>
</div>
<footer>
Hecho con 💙 por <a href="https://trz3d.com" target="_blank">TRZ3D</a>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>