-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.59 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<!-- Barra de navegacion -->
<nav id="nav-bar">
<div id="nav-bar-container">
<!-- Esto es para los titulos, va desde h1 hasta h6 -->
<h2 id="nav-bar-logo">TodoApp</h2>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" id="nav-bar-menu-btn">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
<div id="nav-bar-links-container">
<a class="link" href="index.html">Home</a>
<a class="link" href="apps/index.html">App</a>
</div>
</div>
</nav>
<main id="main-container">
<h1 id="main-title"><span>Todo</span>App</h1>
<div id="main-description-container">
<p id="main-desc-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Voluptas, non. Ipsum ullam temporibus amet sequi facere laborum. Temporibus fugit, quo quis debitis delectus impedit esse excepturi odio? Hic, ut nihil.</p>
<a id="main-desc-btn" href="apps/index.html">Comenzar</a>
</div>
</main>
</body>
</html>