-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (96 loc) · 3.51 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
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<link rel="stylesheet" href="style.css">
<h1 class="name">My Best Courses</h1>
<ul>
<li><a href="sys_admin.html">System Administration</a></li>
<li><a href="networking.html">Networking and Distributed Computing</a></li>
<li><a href="operations.html">Operations Research</a></li>
<li><a href="3dprint.html">3D Printing</a></li>
</ul>
<div>
<h1 class="name">Overview</h1>
<p>
As a sophomore computer science major, I have been documenting my experiences and grades in my most challenging courses
upon completion. Most of this documentation includes:
<ul>
<li>Assignments</li>
<li>Projects and Goals</li>
<li>Summaries</li>
</ul>
Aside from these attributes, I also keep track of my grade for each course and calculate my department GPA after a completed semester.
As of the beginning of my junior year (2020), my grades for all computer science classes are as follows:
<table>
<tr>
<th>Class</th>
<th>Grade</th>
</tr>
<tr>
<th>Computer Science 1 (Python)</th>
<th>A</th>
</tr>
<tr>
<th>Computer Science 2 (Java)</th>
<th>A</th>
</tr>
<tr>
<th>Data Structures and Analysis of Algorithms</th>
<th>A</th>
</tr>
<tr>
<th>System Administration</th>
<th>A</th>
</tr>
<tr>
<th>Computer Organization</th>
<th>A</th>
</tr>
<tr>
<th>Networking and Distributed Computing</th>
<th>A</th>
</tr>
<tr>
<th>Database Systems</th>
<th>---</th>
</tr>
<tr>
<th>Web Programming</th>
<th>---</th>
</tr>
<tr>
<th>Graphics</th>
<th>---</th>
</tr>
<tr>
<th>Software Testing</th>
<th>---</th>
</tr>
<tr>
<th>Software Engineering</th>
<th>---</th>
</tr>
<tr>
<th>Operating Systems</th>
<th>---</th>
</tr>
<tr>
<th>Capstone System Design</th>
<th>---</th>
</tr>
<tr>
<th>Image Processing</th>
<th>---</th>
</tr>
<tr>
<th>Final Department GPA</th>
<th>4.0</th>
</tr>
</table>
</p>
</div>
</body>
</html>