forked from vikingeducation/assignment_html_resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (88 loc) · 1.63 KB
/
index.html
File metadata and controls
104 lines (88 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<title>Kevin's Resume</title>
</head>
<body>
<header>
<h1>Kevin Lezama | Software Engineer</h1>
<a href="mailto:kevinjlezama@icloud.com">kevinjlezama@icloud.com</a>
</header>
<hr>
<section>
<h2>Goals</h2>
<p>To become a web developer is the goal. I aspire to become a top developer in the industry and to build something meaningful for the world.</p>
</section>
<section>
<h2>Skills</h2>
<h3>Programming Languages</h3>
<ol>
<li>HTML5</li>
<li>CSS3</li>
<li>Javascript</li>
<li>Ruby</li>
<li>SASS</li>
</ol>
<h3>Databases</h3>
<ol>
<li>SQL</li>
<li>PostgreSQL</li>
</ol>
<h3>Platforms</h3>
<ol>
<li>Heroku</li>
</ol>
<h3>Version Control</h3>
<ol>
<li>Git</li>
</ol>
<h3>Operating Systems</h3>
<ol>
<li>Linux</li>
<li>Windows</li>
</ol>
<h3>Other Tools</h3>
<ol>
<li>Command Line</li>
<li>Github</li>
<li>Surge</li>
<li>Sublime Text 3</li>
<li>Atom</li>
</ol>
<h3>Soft Skills</h3>
</section>
<section>
<h2>Education</h2>
<table>
<thead>
<tr>
<th>Time</th>
<th>School</th>
<th>Location</th>
<th>Major/Degree</th>
</tr>
</thead>
<tbody>
<tr>
<td>2014 - 2017</td>
<td>AIU</td>
<td>Sandy Springs, GA</td>
<td>Finance/Bachelor</td>
</tr>
</tbody>
</table>
</section>
<section>
<h3>Achievements</h3>
</section>
<section>
<h3>Hobbies and Interests</h3>
</section>
<footer>
<strong>
<p>Kevin Lezama | Software Engineer</p>
<a href="mailto:kevinjlezama@icloud.com">kevinjlezama@icloud.com</a>
</strong>
</footer>
</body>
</html>