-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (92 loc) · 3.61 KB
/
index.html
File metadata and controls
100 lines (92 loc) · 3.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>David's Personal Site</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body> <!-- #F5EBE0, #EAF6F6-->
<table class="center" cellspacing="20">
<tr>
<td><img src="images/Avatar.png" width="200" height="200" alt="David's Avatar"></td>
<td>
<h1>David Lam</h1>
<p><em>A CS student from <strong><a href="https://www.mtsac.edu/" title="Vist my campus website">Mt. San Antonio College</a></strong></em></p>
</td>
</tr>
</table>
<hr>
<p class="pformat">Hello everyone! I am a college student majoring in Computer Science. I am pursuing a career in Software Engineering and
Web Deveplopment. This is where I embark on my learning journey to create a modern website and gain more experiences in
Web Development.</p>
<hr>
<h3>Education</h3>
<!-- Create a list (unordered - <ul>) -->
<div class="container">
<ul class="myUL">
<li>Mount San Antonio College (2020 - present)</li>
<ul>
<li>CSCI110 - Introductory Course for CS</li>
<li>CSCI145 - Java Programming Course</li>
<li>CSCI190 - Discrete Maths</li>
<li>CSCI240 - Data Structure and Algorithm</li>
</ul>
<li>Cal Polytechnic Pomona (2023 - ...)</li>
</ul>
</div>
<hr>
<h3>Work Experience</h3>
<p class="pformat">Planned Career (not definite)</p>
<table class="center" cellspacing="10">
<thead>
<tr>
<th>Dates</th>
<th>Roles</th>
</tr>
</thead>
<tbody>
<tr>
<td>2024 - present</td>
<td><em>Software Engineering Intern</em></td>
</tr>
<tr>
<td>2021 - 2022</td>
<td><em>Student Assistant</em></td>
</tr>
</tbody>
</table>
<hr>
<h3>Skills</h3>
<table class="center" cellspacing="10">
<tr>
<td> <!-- First column -->
<table> <!-- Table of the first column -->
<tr>
<td>Java</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Python</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td> <!-- End of the first column -->
<td> <!-- Second column -->
<table> <!-- Table of the second column -->
<tr>
<td>HTML</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>JavaScript</td>
<td>⭐⭐</td>
</tr>
</table>
</td> <!-- End of the second column -->
</tr> <!-- End of the second column -->
</table>
<hr>
<a href="hobbies.html">My Hobbies</a><br>
<a href="contact-me.html">Contact me</a>
</body>
</html>