-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
195 lines (195 loc) · 4.93 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xuan Tuan Nguyen - CS 472</title>
<link href="styleme.css" rel="stylesheet"/>
</head>
<body>
<div><img src="./my_family.jpg" width="200" height="350" alt="Xuan Tuan Nguyen's family"></div>
<h1>Xuan Tuan Nguyen - 😀😁😄</h1>
<ul>
<li>
W1D1: Internet, WWW and HTML
<ul>
<li>
<a href="#">Assignment 1: index.html</a>
</li>
</ul>
</li>
<li>
W1D2: CSS for styling
<ul>
<li>
<a href="about_me.html">Lab 1: About me</a>
</li>
<li>
<a href="pie.html">Assignment 1: Recipe</a>
</li>
</ul>
</li>
<li>
W1D3: CSS for layout
<ul>
<li>
<a href="/lab3/journal.html">Lab 1: Journal</a>
</li>
<li>
<a href="/assignment3/tmnt.html">Assignment 1: TMNT (2007)</a>
</li>
</ul>
</li>
<li>
W1D4: HTML Form and Regex
<ul>
<li>
<a href="/day4/lab/index.html">Lab: HTML Form and Regex</a>
</li>
</ul>
</li>
<li>Lesson 5</li>
<li>
W2D1: JavaScript on Browsers (day6)
<ul>
<li>
<a href="/day6/lab1/alarm.html">Lab: Alarm clock</a>
</li>
<li>
<a href="/day6/lab2/tip_calculator.html">Lab: Tip calculator</a>
</li>
<li>
<a href="/day6/assignment/ascii.html">Assignment: Ascii animation</a>
</li>
<li>
<a href="/day6/assignment2/decoratemytext.html">Assignment: Decorate my text</a>
</li>
</ul>
</li>
<li>
W2D2: Scope & Closure
<ul>
<li>
<a href="/day7/assignment/bank_account.html">Assignment: Bank account</a>
</li>
</ul>
</li>
<li>
W2D4: Ajax and Events
<ul>
<li>
<a href="/day9/exercise/blog.html">Assignment: Blog posts</a>
</li>
</ul>
</li>
<li>
W3D2: First Java servlet
<ul>
<li>
<a href="/w3d2/wap-servlet-app.zip">Assignment: Support servlet</a>
</li>
</ul>
</li>
<li>
W3D3: State Filters Listeners
<ul>
<li>
<a href="/w3d3/wap-servlet-app-w3d3.zip">Assignment: State Filters Listeners</a>
</li>
</ul>
</li>
<li>
W3D4: Java Server Pages and model view controller 2 architecture
<ul>
<li>
<a href="/w3d4/wap-servlet-app-w3d4.zip">Assignment: Shopping cart (username/password: user/pass)</a>
</li>
</ul>
</li>
</ul>
<table>
<caption style="font-size: 3em">Course Overview</caption>
<thead>
<tr>
<th style="width: 50px"></th>
<th style="width: 100px">Monday</th>
<th style="width: 100px">Tuesday</th>
<th style="width: 100px">Wednesday</th>
<th style="width: 100px">Thursday</th>
<th style="width: 100px">Friday</th>
<th style="width: 100px">Saturday</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="7" style="text-align: center">Theme I: HTML and CSS - The Nature of Life is to Grow – Life is
structured in layers
</td>
</tr>
<tr>
<td>Week 1</td>
<td>Web & HTML</td>
<td>CSS for Styling</td>
<td>Page Layouts using CSS</td>
<td>HTML5 Forms & Regular Expressions</td>
<td>JavaScript Basics</td>
<td>JavaScript Basics cont.</td>
</tr>
<tr>
<td colspan="7" style="text-align: center">Theme II: Client-Side Programming - Purification Leads to Progress
</td>
</tr>
<tr>
<td>Week 2</td>
<td>JavaScript on Browsers</td>
<td>Scope & Closure</td>
<td>JavaScript Inheritance</td>
<td>Events & AJAX</td>
<td>Servlet Intorduction</td>
<td>Review</td>
</tr>
<tr>
<td colspan="7" style="text-align: center">Theme III: Server-Side Programming with Servlets and JSP - Every
Action has a Reaction
</td>
</tr>
<tr>
<td>Week 3</td>
<td>Midterm Exam</td>
<td>State Management</td>
<td>JavaServerPages (JSP)</td>
<td>JSP CustomTags Project</td>
<td>(JAKSON API)</td>
<td>Project</td>
</tr>
<tr>
<td colspan="7" style="text-align: center">Theme IV: Integrating all parts together - The Whole is Greater than
the Sum of the Parts
</td>
</tr>
<tr>
<td>Week 4</td>
<td>Project</td>
<td>Project Presentation</td>
<td>Review</td>
<td>Final Exam</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<footer style="margin-top: 2em">
<a href="/">Home</a>
<br/>
<script>
let encodedCurrentUrl = encodeURIComponent(window.location);
</script>
<a href="javascript:void(window.open('https://validator.w3.org/check?uri='+encodedCurrentUrl, '_blank'));">
<img src="w3c-html.png" alt="html validator" referrerpolicy="no-referrer-when-downgrade">
</a>
<a href="javascript:void(window.open('https://jigsaw.w3.org/css-validator/validator?uri='+encodedCurrentUrl, '_blank'));">
<img src="w3c-css.png" alt="css validator" referrerpolicy="no-referrer-when-downgrade" width="88" height="31">
</a>
</footer>
</body>
</html>