-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (89 loc) · 2.64 KB
/
index.html
File metadata and controls
105 lines (89 loc) · 2.64 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
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>😃 Michael's personal Site</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td>
<img src="images/Michael2.png" alt="A person" width="300" height="300"> <!--images-->
</td>
<td>
<h1>Michael Poveda</h1>
<p><em>Student of <strong><a href="https://www.fiec.espol.edu.ec/es/generalidades-comp">computer scients</a> </strong> <!--negrita y dandole enfasis--> </em></p>
<p>I am a Student at one of the most prestigious university on Ecuador</p>
</td>
</tr>
</table>
<!--
Es mejor usar em que i para darle un empafis
Para negritas es mejor usar strong que b ya que le da un significado, un enfasis
-->
<hr>
<h3>Education</h3>
<ul> <!--unorder list-->
<li>
Studies
<ul>
<li>Graduated at Cardenal Bernardino Echeverria Ruiz</li>
<li>Studying at ESPOL</li>
</ul>
</li>
<li>
Courses
<ul>
<li>The complete 2023 web development bootcamp</li>
<li>Java programming for complete beginners</li>
</ul>
</ul>
<hr>
<h3>Work experience </h3>
<table cellspacing="10">
<thead>
<tr>
<th>Dates</th>
<th>work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2027-2030</td>
<td>Me exclavizaron laboralmente</td>
</tr>
<tr>
<td>2030</td>
<td>Me exclavizaron laboralmente pero con mejor paga</td>
</tr>
<tr>
<td>2031</td>
<td>Me fui a la chingada para que expoten laboralmente pero en usa</td>
</tr>
</tbody>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>leagueoflegends</td>
<td>👺👺👺👺👺</td>
</tr>
<tr>
<td>c++</td>
<td>👺 👺 </td>
</tr>
<tr>
<td>Python</td>
<td>👺 👺 </td>
</tr>
<tr>
<td>Java</td>
<td>👺</td>
</tr>
</table>
<hr size="3" color="#2000"><!-- linea horizontal-->
<a href="hobbies.html">My hobbies</a> <!--links-->
<a href="contact_me.html">Contact me</a>
</body>
</html>