-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (96 loc) · 3.97 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>201712134</title>
</head>
<body>
<header id="encabezado">
<h1>JUAN SEBASTIAN BAUTISTA ROJAS</h1>
<img src="Foto.png" width="300" height="250" alt="Foto Sebastian y Valentina">
</header>
<nav>
<h2>Tabla de contenido</h2>
<ul>
<li><a href="#principal">Sobre mi</a>
<ul>
<li><a href="#InfoBibliografica">Información Bibliográfica</a></li>
<li><a href="#InfoAcademica">Informacion Académica</a></li>
<li><a href="#sitiosInteres">Sitios de Interes</a></li>
<li><a href="#FormContacto">Formulario de contacto</a></li>
</ul>
</li>
<li><a href="#piePagina">Contacto</a></li>
</ul>
</nav>
<main id="principal">
<p>Bienvenidos, en este primer proyecto les mostrare un poco de mi. Con diferentes tipo de presentaciones como tablas, listas y
enlaces</p>
<h2>Información importante</h2>
<section id="InfoBibliografica">
<h3>Información bibliográfica</h3>
<table border="1">
<tr>
<th>Fecha nacimiento</th>
<th>Año graduacion bachillerato</th>
<th>Año ingreso a la universidad</th>
<th>Programa</th>
<th>Semestre</th>
</tr>
<tr>
<td>2000</td>
<td>2016</td>
<td>2017</td>
<td>Ing. sistemas y computación</td>
<td>7</td>
</tr>
</table>
</section>
<section id="InfoAcademica">
<h3>Informacion académica</h3>
<ol>
<li><b>Primaria y bachillerato: </b>Colegio Celestin Freinet</li>
<li><b>Pregrado: </b>Universidad de los Andes</li>
</ol>
</section>
<section id="sitiosInteres">
<h3>Sitios de interes</h3>
<p>En esta oportunidad les presento de las cosas que me interesan ver cuando navego por la web como noticias deportivas.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Bn8-MemEpHk">
</iframe>
<h3>Enlaces</h3>
<p>Noticias de la actualidad en Deportes <a href="https://colombia.as.com/">diario As</a></p>
<p>Enlace a pagina web del mejor equipo del mundo <a href="https://www.fcbarcelona.es/es/">Aqui!</a></p>
<h3>Imágenes</h3>
<img src="https://www.infobae.com/new-resizer/DcqjjVGTFYejtOwRTSlDityOtUA=/999x561/filters:quality(100)/cloudfront-us-east-1.images.arcpublishing.com/infobae/PXSIJE4NNJGD5CO6YS67K5MRCI.jpg" width="300" height="200">
<img src="https://www.dw.com/image/54576488_302.jpg" width="300" height="200">
</section>
<section id="FormContacto">
<h3>Formulario para contacto</h3>
<form>
<ul>
<li>
<label>Nombre:</label>
<input>
</li>
<li>
<label>Correo electrónico:</label>
<input>
<label>@uniandes.edu.co</label>
</li>
<li>
<label>Mensaje:</label>
<textarea>Cualquier recomendacion</textarea>
</li>
</ul>
</form>
</section>
</main>
<footer id="piePagina">
<p>Datos de contacto y redes sociales: <a
href="https://www.facebook.com/juansebastian.bautistarojas.3/">Facebook</a>, <a
href="https://www.instagram.com/juanse_1803/">Instagram</a> y Correo electronico:
</footer>
</body>
</html>