forked from pablokbs/peladonerd-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (95 loc) · 3.42 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Information -->
<meta charset="utf-8">
<title>BugBounty Argentina</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton-dark.css">
<link rel="stylesheet" href="css/brands.css">
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/logo.jpeg">
</head>
<body>
<!-- Primary Page Layout -->
<div class="container">
<div class="row">
<div class="column" style="margin-top: 5%;"> <!-- Reduje el margen superior -->
<!-- Estilos para centrar y ajustar el contenido -->
<style>
img.avatar {
border: none; /* Quité el borde blanco */
border-radius: 0; /* Eliminé el círculo */
width: 600px; /* Aumenté el tamaño del logo */
height: auto;
margin-bottom: 20px; /* Espacio entre logo y texto */
}
.image-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px; /* Espacio entre la imagen y el contenido */
}
.container {
max-width: 800px; /* Limité el ancho del contenedor */
margin: 0 auto; /* Centramos el contenido en la página */
}
h1, p {
text-align: center; /* Centramos el texto */
margin: 10px 0; /* Reducimos los márgenes del texto */
}
footer {
text-align: center;
padding: 3px;
color: white;
font-size: 12px;
}
a.small {
background: #1DA1F2;
border-radius: 50px;
font-size: 18px;
text-align: center;
text-decoration: none;
height: 48px;
padding: 0 16px;
width: 300px;
font-weight: 600;
line-height: 48px;
letter-spacing: 0.5px;
cursor: pointer;
margin: 0 10px; /* Espacio entre los botones */
}
.button-container {
text-align: center; /* Centra los botones de redes sociales */
margin-top: 10px; /* Espacio entre botones y contenido */
}
</style>
<div class="image-container">
<img src="images/logoRGB.jpg" srcset="images/logoRGB.jpg 2x" class="avatar">
</div>
<!-- Redes Sociales -->
<div class="button-container">
<a class="small button-twitter" href="https://twitter.com/BugBountyArg"><img class="icon" src="icons/twitter.svg"></a>
<a class="small button-youtube" href="https://www.youtube.com/c/AlanLevy-ElMago"><img class="icon" src="icons/youtube.svg"></a>
</div>
</div>
</div>
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GR82G97BBQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GR82G97BBQ');
</script>
<!-- End Document -->
</body>
</html>