-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.9 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.9 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Blog</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="assets/Social Media/font/flaticon.css">
<link rel="stylesheet" href="styles/media_queries.css">
</head>
<body class="home-body">
<!-- sección del header -------------------------------------------------------------------------->
<header class="header">
<!-- redes sociales -->
<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>
<!-- navegación about me and blogs -->
<nav class="nav">
<section class="nav_logo--container">
<a href="blogs.html"><img src="assets/images/Logo-negro.png" alt="Logo de mi Blog"></a>
</section>
<section class="profile--link">
<a href="profile.html">Sobre mí</a>
</section>
</nav>
</header>
<!-- sección principal --------------------------------------------------------------------------->
<main class="home_main">
<div class="home_main--container">
<p class="home_main--text">
Conoce las novedades y noticias del Mundo Tech
</p>
<button class="home_main--button">
<a href="blogs.html">Entra ya!!</a>
</button>
</div>
</main>
</body>
</html>