-
Notifications
You must be signed in to change notification settings - Fork 0
/
academic.html
108 lines (97 loc) · 5.78 KB
/
academic.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 lang="en">
<head>
<meta charset="UTF-8">
<title>Henry's Academic Webpage!</title>
<link rel="stylesheet" type="text/css" href="css/grid.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/printstyle.css" media="print">
</head>
<body>
<div id="main">
<!-- This HTML5 header element will contain a picture, title of the page, and the nav element -->
<header>
<figure>
<img src="images/bu.jpg" alt="Boston University" title="Boston University"
width="600" height="450"/>
<figcaption><span>Photo by <a href="https://unsplash.com/@octoberroses?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Aubrey Odom</a> on <a href="https://unsplash.com/s/photos/boston-university?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></span></figcaption>
</figure>
<h1>Henry's Academic Page</h1>
<!-- This HTML5 nav element will contain the nav bar -->
<nav>
<ul>
<li><a href="index.html">Home</a> </li>
<li><a class="active" href="academic.html">School</a> </li>
<li><a href="professional.html">Work</a> </li>
<li class="dropdown">
<a href="#">Play</a>
<ul>
<li><a href="hiking.html">Hiking</a></li>
<li><a href="music.html">Music</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#">Apps</a>
<ul>
<li><a href="weather.html">Weather</a></li>
<li><a href="stocks.html">Stocks</a></li>
<li><a href="covid.html">Covid</a></li>
<li><a href="todo.html">To-Do</a></li>
<li><a href="reviews.html">Reviews</a></li>
</ul>
</li>
</ul>
</nav>
<hr>
</header>
<!-- This HTML5 section element will my article(s) for this page -->
<section>
<h2>Academic Background</h2>
<article class="no-aside">
<h3>Graduate Program - Boston University</h3>
<h4>Masters of Science in Software Development</h4>
<p>
I am currently in the <strong>Masters of Science in Software Development</strong> program at <a href="https://www.bu.edu/met/" target ="_blank">BU Metropolitan College</a>.
I've always had an interest in technology and programming ever since I took an intro to java class in undergrad, and with this degree I'm hoping to establish a
foundation of knowledge that will enable me to create applications that can make a difference in people's lives. Below are the classes I've taken so far.
</p>
<ul>
<li><a href="http://www.bu.edu/csmet/academic-programs/courses/cs300/" target ="_blank">CS300 - Introduction to Software Development</a></li>
<li><a href="https://www.bu.edu/csmet/academic-programs/courses/cs521/" target ="_blank">CS521 - Information Structures with Python</a></li>
<li><a href="http://www.bu.edu/csmet/academic-programs/courses/cs682/" target ="_blank">CS682 - Information Systems Analysis and Design</a></li>
<li><a href="http://www.bu.edu/csmet/academic-programs/courses/cs526/" target ="_blank">CS526 - Data Structures and Algorithms</a></li>
<li><a href="http://www.bu.edu/csmet/academic-programs/courses/cs622/" target ="_blank">CS622 - Advanced Programming Techniques</a></li>
<li><a href="https://www.bu.edu/csmet/academic-programs/courses/cs665/" target ="_blank">CS665 - Software Design and Patterns</a></li>
<li><a href="https://www.bu.edu/csmet/academic-programs/courses/cs669/" target ="_blank">CS669 - Database Design and Implementation for Business</a></li>
<li><a href="https://www.bu.edu/csmet/academic-programs/courses/cs601/" target ="_blank">CS601 - Web Application Development</a></li>
<li><a href="http://www.bu.edu/csmet/academic-programs/courses/cs602/" target ="_blank">CS602 - Server-Side Web Development</a></li>
</ul>
</article>
<article class="no-aside">
<h3>Undergraduate Program - Boston University</h3>
<h4>Questrom School of Business - Bachelors of Science in Business Administration</h4>
<p>
I completed my undergrad at <a href="http://www.bu.edu/questrom/" target ="_blank">BU Questrom School of Business</a> with a
concentration in finance and management information systems. The business program provided a broad
overview of many business disciplines and culminated in a semester of integrated "CORE" classes in junior year of finance,
operations management, marketing, and information systems. I also took many electives from all types of subjects such as
creative writing, psychology, ethics, and music theory.
</p>
</article>
</section>
<br>
<br>
<br>
<!-- This HTML5 footer element will contain my name, email, and last updated date, as well as printed from line -->
<footer>
<div id="footer-left"><p>© 2020 Henry Choy</p></div>
<div id="footer-center"><p><a href="mailto:henrychoy@gmail.com">henrychoy@gmail.com</a></p></div>
<div id="footer-right"><p id="last-updated"></p></div>
<p class="printed-from">Printed from http://henrychoy.com/</p>
</footer>
</div>
<script>
// last updated in footer
document.getElementById("last-updated").textContent = "Last Updated: " + document.lastModified;
</script>
</body>
</html>