Skip to content

Commit bbcea17

Browse files
authored
Create index.html
Signed-off-by: Tutos Rive <108991712+tutosrive@users.noreply.github.com>
1 parent b2379db commit bbcea17

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

index.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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>Dev2Forge</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
text-align: center;
11+
margin: 50px;
12+
background-color: #f4f4f4;
13+
}
14+
h1 {
15+
color: #333;
16+
}
17+
p {
18+
font-size: 18px;
19+
color: #666;
20+
}
21+
a.button {
22+
display: inline-block;
23+
padding: 10px 20px;
24+
margin-top: 20px;
25+
background-color: #007bff;
26+
color: #fff;
27+
text-decoration: none;
28+
border-radius: 5px;
29+
}
30+
a.button:hover {
31+
background-color: #0056b3;
32+
}
33+
</style>
34+
</head>
35+
<body>
36+
<h1>Bienvenido a Dev2Forge</h1>
37+
<p>Explora nuestros proyectos, herramientas y recursos para desarrolladores.</p>
38+
<a class="button" href="https://github.com/dev2forge">Visitar GitHub</a>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)