-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·33 lines (32 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="assets/img/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Octal Web</title>
</head>
<body>
<main role="main" class="container h-100 d-flex justify-content-center align-items-center">
<div class="card blurred-box">
<div class="card-body text-center px-5 py-3">
<img src="assets/img/logo.png" alt="logo" />
<h1 class="pt-2">Web en desarrollo</h1>
<p class="lead">Un día de estos la arreglo</p>
<div class="d-flex justify-content-center">
<a href="https://twitter.com/alvaro_octal" class="text-dark social-icon">
<i class="fa-brands fa-twitter fa-3x"></i>
</a>
<a href="https://github.com/alvaro-octal" class="text-dark social-icon">
<i class="fa-brands fa-github fa-3x" aria-hidden="true"></i>
</a>
<a href="https://steamcommunity.com/id/Alvaroctal" class="text-dark social-icon">
<i class="fa-brands fa-steam fa-3x" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</main>
<script type="module" src="main.js"></script>
</body>
</html>