-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnombres.html
More file actions
36 lines (36 loc) · 736 Bytes
/
nombres.html
File metadata and controls
36 lines (36 loc) · 736 Bytes
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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="CSS/style.css">
<title>Document</title>
</head>
<body>
<section>
<header>
<h1>Curso Azul School</h1>
<p>Lista de cursos</p>
</header>
<aside>
<p>Cursos de programación.</p>
<ul>
<h2>Gerson Ramos G</h2>
<li>Curso de Node.js</li>
<li>Curso de C++</li>
<li>Curso de Python</li>
<li>Curso de SQL</li>
<li>Curso de React</li>
</ul>
</aside>
<aside>
<p>Cursos de diseño gráfico.</p>
<ul>
<li>Curso de GIMP</li>
<li>Curso de Ilustrador</li>
</ul>
</aside>
<p>Azul School</p>
</section>
</body>
</html>