-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
94 lines (82 loc) · 3.07 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Anthony's Resume</title>
</head>
<body>
<!-- HEADING ################################################ -->
<section id="heading">
<img src="images/mypic.jpg" height="200px">
<nav>
<a href="#experience"> Experience</a>
<a href="#bio"> Biography</a>
<a href="#education"> Education</a>
<a href="#skills"> Skills</a>
<a href="#certifications"> Certifications</a>
<a href="#references"> References</a>
<a href="contacts_page.html"> Contacts</a>
<a href="files/Resume_AnthonyGreenwood2020.pdf" download>Resume Download</a>
</nav>
</section>
<!-- CONTENT ************************************************ -->
<section id="content">
<b>Resume</b>
<div id="experience">
<h1>Experience</h1>
<ul>
<h2>First Job</h2>
<h4>Company of my 1st Job</h4>
<ul>
<li>Teaching students HTML, CSS, Javascript, PHP, MySQL, Wordpress, Word, Excel, Powerpoint, and Windows 10
</li>
<li>Assist students and instructor in a computer lab classroom environment</li>
<li>Lead class lab nights, including additional instruction and exam proctoring</li>
<li>Work with refugee populations to overcome language barriers and other obstacles</li>
</ul>
</ul>
</div>
<div id="bio">
<h1>Bio</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui itaque, aspernatur porro iste reprehenderit, velit
voluptate accusantium eligendi assumenda rerum eos dolorum facere! Qui necessitatibus quae, quibusdam nam
accusamus laborum.</p>
</div>
<div id="education">
<h1>Education</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui itaque, aspernatur porro iste reprehenderit, velit
voluptate accusantium eligendi assumenda rerum eos dolorum facere! Qui necessitatibus quae, quibusdam nam
accusamus laborum.</p>
</div>
<div id="skills">
<h1>Skills</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui itaque, aspernatur porro iste reprehenderit, velit
voluptate accusantium eligendi assumenda rerum eos dolorum facere! Qui necessitatibus quae, quibusdam nam
accusamus laborum.</p>
</div>
<div id="certifications">
<h1>Certificates</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui itaque, aspernatur porro iste reprehenderit, velit
voluptate accusantium eligendi assumenda rerum eos dolorum facere! Qui necessitatibus quae, quibusdam nam
accusamus laborum.</p>
</div>
<div id="references">
<h1>References</h1>
<table>
<tr>
<th>Name</th>
<th>Position</th>
<th>Email</th>
<th>Website</th>
</tr>
<tr>
<td>Lorna Gwilliam</td>
<td>Program Manager - SLCC</td>
<td>[email protected]</td>
<td><a href = "http://www.slcc.edu">SLCC</a></td>
</tr>
</table>
</div>
</section>
</body>
</html>