-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (114 loc) · 3.88 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
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Jamie's Personal Site</title>
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<table cellspacing="20px">
<tr>
<td><img id="JamiePic" src="images/JamiePic.jpg" alt="A photo of Jamie"></td>
<td>
<h1>Jamie Yang</h1>
<p><i>Senior at <a href="https://www.uncw.edu">UNCW</a> majoring in
<b>Computer Science</b> with <b>Digital Arts</b> concentration and
<b>Data Science minor</b></i></p>
<p>Hello, my name is Jamie Yang and I am a rising senior at UNCW this
coming Fall 2022. I am currently staying with my parents in Seoul,
South Korea over summer break as I take time to relax while learning
about Web Devlopment. Through soe previous courses I took at
school, I was able to gain some basic HTML, CSS, and JavaScript
experience, but I felt it was extremely basic, especially with
JavaScript, when I interviewed for an internship and I had no idea
how to answer 90% of the questions. My hope for this course is to be
able to gain a more solid knowledge of Web Development while also
dipping my toes into all the different technologies and languages
required for creating a complete website using both front-end and
back-end development. Thank you for visiting!</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>Wilton Elementary School</li>
<li>Yanbian International Academy</li>
<li>Xi'an International School</li>
<li>Xining International Academy</li>
<li>Morrison Academy Taichung</li>
<li>University of North Carolina Wilmington</li>
</ul>
<hr>
<h3>Work Experience</h3>
<table cellspacing="20">
<thead>
<tr>
<th>Date</th>
<th>Position</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>6.2021 - 8.2021</td>
<td>Research Assistant</td>
<td>Assisted Civil Engineering Ph.D. graduate students with laboratory
research. Independently conducted micro extraction <br>& recovery
procedures and macro extraction on asphalt samples for testing
asphalt binders and aggregates. Helped lab <br>manager with various
tasks around the Transportation Materials laboratories.</td>
</tr>
<tr>
<td>9.2021 - Present</td>
<td>Distance Education Technician</td>
<td>Assisting hybrid/remote classes by helping with technical
difficulties, monitoring audio, and executing professional <br>camera
views over Zoom. Reorganized calendar for all <br>Distance Education
services on campus on Sharepoint Calendar.</td>
</tr>
</tbody>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>
<table>
<tr>
<td>HTML</td>
<td>⭐️⭐️⭐️</td>
</tr>
<tr>
<td>CSS</td>
<td>⭐️⭐️⭐️</td>
</tr>
<tr>
<td>JavaScript</td>
<td>⭐️</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>Python</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>3D Modeling</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>MySQL</td>
<td>⭐️⭐️⭐️</td>
</tr>
</table>
</td>
</tr>
</table>
<hr>
<a href="hobbies.html">My Hobbies</a> <br>
<a href="contact.html">Contact Me</a>
</body>
</html>