-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (103 loc) · 2.96 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
<!DOCTYPE html>
<!--Document type, in this case, the
latest HTML 5 -->
<html lang="en" dir="ltr">
<head>
<!-- tells the webpage how to handle the page -->
<meta charset="utf-8"> <!-- gives extra meta data to the page -->
<meta description="This is Bernice's personal site">
<!-- the description attribute is what shows up in google searches -->
<title>💗Bernice's Personal Site</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Nanum+Pen+Script|Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="top-header">
<img class="intro pfp" src="bernice.png" alt="image of bernice" />
<h1 class="intro name">Bernice Simon</h1>
<p class="intro title"><em>Lab Technician</em></p>
</div>
<div class="intro-container">
<p class="intro-para">Hello. I'm learning programming via Angela Yu on uDemy. I hope to change career paths and find a way to mix my love of Chemistry and Biology in order to pair it with programming to one day get into Biocheminformatics. I
currently work as a Lab Technician at the Naval Medical Research Center and fully love my job, but I have always had a love for programming. P.S. I really love coffee.</p>
</div>
<br>
<hr> <!-- has no end tag -->
<!--Education-->
<h3 class="titles">Education</h3>
<div class="content">
<img class="school" src="school.png" alt="school" />
<ul>
<li>Montgomery College</li>
<ul>
<li>A.S. Chemistry</li>
</ul>
<br>
<li><a target="_blank" href="https://www.umbc.edu/">University of Maryland, Baltimore County</a></li>
<ul>
<li>B.S. Chemistry (currently pursuing)</li>
</ul>
</ul>
</div>
<br>
<!--Work Exp-->
<hr>
<h3 class="titles">Work Experience</h3>
<div class="content">
<table cellspacing=10>
<thSkillsead>
<tr>
<th>Dates</th>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>2016-2019</td>
<td>Lab Technician NMRC</td>
</tr>
<tr>
<td>2014-2015</td>
<td>Chemistry Tutor</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</div>
<br>
<hr>
<!--Skills-->
<br>
<h3 class="titles">Skills</h3>
<div class="content">
<table cellspacing=10>
<tbody>
<tr>
<td>HTML</td>
<td>⭐️⭐️⭐️</td>
<td>Chemistry</td>
<td>⭐️⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>CSS</td>
<td>⭐️⭐️⭐️</td>
<td>Biology</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
</tbody>
</table>
</div>
<br>
<hr>
<br>
<!--Contact-->
<h3 class="titles">About/Contact</h3>
<div class="contact">
<ul>
<li><a href="hobbies.html">My Hobbies</a><br /><br></li>
<li><a href="contactme.html">Contact Me</a><br><br></li>
</ul>
</div>
</body>
</html>