-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrayectoria.html
More file actions
99 lines (84 loc) · 3.48 KB
/
trayectoria.html
File metadata and controls
99 lines (84 loc) · 3.48 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
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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name ="viewport" content ="width=device-width, initial scale=1.0" /> <!-- necesario para que se adapte al ancho segun el dispositivo -->
<meta name="author" content= "Alejandro Galán Freire" />
<meta name="description" content ="Documento que aporta en formato tabla la trayectoria en la vida de Brendan" />
<meta name="keywords" content= "trayectoria, vida" />
<title>Trayectoria</title>
<link rel="stylesheet" type="text/css" href="estilo.css" />
<link rel="stylesheet" type="text/css" href="grid.css" />
<link rel="stylesheet" type="text/css" href="tablas.css" />
</head>
<body>
<header>
<h1>Brendad Eich</h1>
<nav>
<a accesskey="I" tabindex="1" href="index.html">Indice</a>
<a accesskey="A" tabindex="2" href="aportaciones.html">Aportaciones</a>
<a accesskey="O" tabindex="3" href="opiniones.html">Opiniones</a>
</nav>
</header>
<section>
<h2>Vida y trayectoria profesional de Brendan</h2>
<p>A continuación le mostraremos un resumen de lo mas importante en la vida de Brendan, profesionalmente hablando, a través de una tabla.</p>
<table>
<caption>Trayectoria de Brendan Eich</caption>
<tr>
<td>Año/Lugar/Accion</td>
<th>Lugar</th>
<th>Accion</th>
</tr>
<tr>
<th>1986</th>
<td>En la universidad de Illinois en Urbana-Champaign</td>
<td>Recibió su maestría</td>
</tr>
<tr>
<th>1986-1993</th>
<td>En Silicon Graphics</td>
<td>Trabajó desarrollando el sistema operativo y código de la red</td>
</tr>
<tr>
<th>1993-1996</th>
<td>En MicroUnity Systems Engineering</td>
<td>Trabajó escribiendo el micronúcleo y el código de DSP, y en hacer el primer port de GCC para la MIPS R4000</td>
</tr>
<tr>
<th>1995</th>
<td>En Netscape Communications Corporation</td>
<td>Desarrollo JavaScript para el navegador Netscape Navigator</td>
</tr>
<tr>
<th>1998</th>
<td>Fundación Mozilla</td>
<td>Ayudó a fundarla sirviendo como principal arquitecto.</td>
</tr>
<tr>
<th>2003</th>
<td>Fundación Mozilla</td>
<td>La unidad del navegador Netscape cerró y Eich ayudó a hacer girar a la Fundación Mozilla</td>
</tr>
<tr>
<th>2014</th>
<td>Corporación Mozilla</td>
<td>Fue ascendido a CEO. Ese mismo año dimitió y abandonó la organización</td>
</tr>
<tr>
<th>2015</th>
<td>En Brave</td>
<td>Se convirtió en el CEO</td>
</tr>
</table>
</section>
<footer>
<address>
<p>A continuación se aporta el correo del autor del documento:
<a href="mailto:UO277346@uniovi.es">Alejandro Galán</a>
</p>
</address>
</footer>
</body>
</html>