-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 878 Bytes
/
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
38
39
40
<!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="style.css">
<title>Acerca de mi</title>
</head>
<body>
<header>
<h1>Acerca de mi</h1>
</header>
<section>
<div id="info-personal">
<h2>Informacion personal</h2>
<p>Nombre: Maurizio Miranda Lambrisca</p>
<p>Edad: 25 años</p>
<p>Profesion: Comunicador</p>
</div>
<div id="habilidades">
<h2>Habilidades</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript basico</li>
</ul>
</div>
</section>
<footer>
Copyright © 2023. Todos los derechos reservados
</footer>
</body>
</html>