-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 838 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico">
<title>Conociendo HTML</title>
</head>
<body>
<h1>Grace Hopper</h1>
<h2>Bio</h2>
<p>Grace Murray nació en Nueva York el 9 de diciembre de 1906 en el seno de una familia en la que los ... consideraba que los varones y las mujeres debian tener las mismas oportunidades.</p>
<ul>
<li>Cocinar</li>
<li>Programar</li>
<ul>
<li>Javascript</li>
<li>Ruby</li>
<li>Java</li>
</ul>
<li>Enseñar</li>
<h3>3 Sueños que tengo</h3>
<ol>
<li>Viajar por el mundo</li>
<li>Ver a Laboratoria en todos los paises</li>
<li>Que todas aprendan a codear</li>
</ol>
<div align ="center">
<img src ="C:\Users\Laboratoria0013\Documents\Laboratoria\Conociendo HTML\conociendo_html\Imagenes\img1.jpg">
</div>
</body>
</html>