-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi blog</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="./assets/flaticon.css">
</head>
<body class="home-body">
<header>
<section class="header-icons-container">
<div class="icons">
<a href="#"><span class="flaticon-001-facebook"></span></a>
<a href="#"><span class="flaticon-002-twitter"></span></a>
<a href="#"><span class="flaticon-011-instagram"></span></a>
<a href="#"><span class="flaticon-010-linkedin"></span></a>
<a href="#"><span class="flaticon-008-youtube"></span></a>
</div>
</section>
<nav>
<section class="nav-logo-container">
<a href="index.html"><img src="./assets/img/Logo-negro.png" alt="logo de mi blog"></a>
</section>
<section class="profile-link">
<a href="profile.html">Sobre mí</a>
</section>
</nav>
</header>
<main class="home-main">
<section>
<h1 class="home-main-text">Conoce las novedades y noticias <br>del Mundo Tec</h1>
<button class="home-main-button"><a href="blogs.html">Entra ya!</a></button>
</section>
</main>
</body>
</html>