Skip to content

Commit 774bb21

Browse files
Merge pull request #1 from crewonthebeats/crewonthebeats-pagina1
Mi pagina
2 parents 25ec999 + 0316511 commit 774bb21

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

index.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<!DOCTYPE html>
2+
<html lang="es">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Mi Reel de Facebook</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
background: linear-gradient(135deg, #111, #222);
11+
color: #fff;
12+
text-align: center;
13+
padding: 40px;
14+
}
15+
h1 {
16+
color: #00acee;
17+
}
18+
.video-wrapper {
19+
position: relative;
20+
width: 100%;
21+
max-width: 600px;
22+
margin: 40px auto;
23+
background: #000;
24+
border-radius: 12px;
25+
overflow: hidden;
26+
box-shadow: 0 0 20px rgba(0,0,0,0.5);
27+
}
28+
iframe {
29+
width: 100%;
30+
height: 400px;
31+
border: none;
32+
}
33+
a {
34+
color: #00acee;
35+
text-decoration: none;
36+
font-weight: bold;
37+
}
38+
</style>
39+
</head>
40+
<body>
41+
<h1>🎬 Mi Reel de Facebook</h1>
42+
43+
<!-- SDK de Facebook -->
44+
<div id="fb-root"></div>
45+
<script async defer crossorigin="anonymous"
46+
src="https://connect.facebook.net/es_ES/sdk.js#xfbml=1&version=v15.0">
47+
</script>
48+
49+
<div class="video-wrapper">
50+
<div class="fb-video"
51+
data-href="https://www.facebook.com/reel/840066031780081/"
52+
data-width="500"
53+
data-show-text="false"
54+
data-autoplay="false">
55+
</div>
56+
</div>
57+
58+
<p>Si el video no se reproduce, puedes verlo directamente aquí:</p>
59+
<a href="https://www.facebook.com/reel/840066031780081/" target="_blank">
60+
👉 Ver reel en Facebook
61+
</a>
62+
</body>
63+
</html>

0 commit comments

Comments
 (0)