This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (55 loc) · 2.52 KB
/
index.html
File metadata and controls
56 lines (55 loc) · 2.52 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
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./index.css">
<link rel="shortcut icon" href="./logos/logo-pestaña-removebg-preview.png" type="image/x-icon">
<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=Lexend+Deca:wght@100&family=Pathway+Extreme:ital,wght@0,100;1,700&display=swap" rel="stylesheet">
<title>Block de Notas Propio</title>
</head>
<body>
<header class="header">
<img src="./logos/Logo.png" alt="" class="logo">
<h1 class="title-proyecto">Proyecto guía de aprendizaje</h1>
</header>
<hr>
<main class="main">
<section id="descripcion" class="descripcion">
<h3>En este proyecto se busca registrar y practicar todos los conocimientos adquiridos en mi ruta de aprendizaje de programación web. </h3>
</section>
<section class="temas">
<a href="./HTML/indice.html">
<div id="HTML" class="Option temas__html">
<span class="Option__text text__html">HTML</span>
<div class="line line_html"></div>
<div class="img img-html">
<img src="./logos/HTML-logo.png" alt="">
</div>
</div>
</a>
<a href="./CSS/indiceCSS.html">
<div id="CSS" class="Option temas__css">
<span class="Option__text text__css">CSS</span>
<div class="line line-css"></div>
<div class="img img-css">
<img src="./logos/logo-CSS.PNG" alt="" class="cssWidt">
</div>
</div>
</a>
<a href="./JavaScrip/indiceNivel.html">
<div id="JS" class="Option temas__js">
<span class="Option__text text__js">JavaScript</span>
<div class="line line_js"></div>
<div class="img img-js">
<img src="./logos/js-logo.png" alt="" class="">
</div>
</div>
</a>
</section>
</main>
</body>
</html>