-
Notifications
You must be signed in to change notification settings - Fork 0
/
education.html
108 lines (97 loc) · 2.01 KB
/
education.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>
<html>
<head>
<title>Education</title>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="Personal_blog.css">
</head>
<body>
<div class="container container-list">
<div class="jumbotron">
<div class="row">
<img src="ucbseal_139_540.png" class="school-icon">
<p>
EECS 2017-2019
</p>
<table class="table">
<thead>
<tr>
<th>Course number</th>
<th>Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>
CS 61A
</td>
<td>
Structure and Interpretation of Computer Programs
</td>
<td>
A+
</td>
</tr>
<tr>
<td>
EE 16A
</td>
<td>
Designing Information Devices and Systems I
</td>
<td>
A
</td>
</tr>
<tr>
<td>
CS 70
</td>
<td>
Discrete Mathematics and Probability Theory
</td>
<td>
IP
</td>
</tr>
<tr>
<td>
CS 61B
</td>
<td>
Data Structure
</td>
<td>
IP
</td>
</tr>
<tr>
<td>
EE 16B
</td>
<td>
Designing Information Devices and Systems II
</td>
<td>
IP
</td>
</tr>
<tr>
<td>
STAT 134
</td>
<td>
Concepts of Probability
</td>
<td>
IP
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>