-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (71 loc) · 3.15 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
<!DOCTYPE html>
<html>
<head>
<title>Dynamic Web Appications Portfolio - Jason Yu</title>
<meta charset="utf-8">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" type="text/css"/>
<link href="//netdna.bootstrapcdn.com/bootswatch/3.1.1/flatly/bootstrap.min.css" rel="stylesheet"/>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<style>
.container {
margin-bottom: 50px;
min-width: 600px;
width: 75%;
}
body {
background-image: url("background.jpg");
color: white;
font-family: 'PT Sans', sans-serif;
}
h1 {
text-align: center;
}
h2 {
text-align: center;
}
hr {
border: 1px solid;
}
img {
border: 2px solid;
display: block;
margin: auto;
width: 50%;
}
p {
text-align: justify;
}
</style>
</head>
<body>
<div class="container">
<h1>Dynamic Web Appications Portfolio</h1>
<hr>
<div class="row">
<div class="col-md-5">
<img src="profile.jpg" alt="Jason Yu">
<h1>Jason Yu</h1>
<hr>
<h3>Project 2: <a href="http://p2.lengjai.me">PHP Basics</a></h3>
Github: <a href="https://github.com/jasonjyu/cscie15-p2">[link]</a>
<h3>Project 3: <a href="http://p3.lengjai.me">Laravel Basics</a></h3>
Github: <a href="https://github.com/jasonjyu/cscie15-p3">[link]</a>
<h3>Project 4: <a href="http://p4.lengjai.me">Final Project</a></h3>
Github: <a href="https://github.com/jasonjyu/cscie15-p4">[link]</a>
</div>
<div class="col-md-7">
<h2>In 2+ sentences describe who you are and what you do.</h2>
<p>My name is Jason Yu and I am a second year graduate student pursuing a Master's Degree in Software Engineering. I graduated from the Rutgers University School of Engineering with a Bachelor's Degree in Computer Engineering and minor in Computer Science. I am also a Software Engineer working for the Raytheon aerospace and defense company.</p>
<h2>Why are you taking this course?</h2>
<p>I am taking this course to build up my front-end programming skills and combine it with my experience programming back-end software.</p>
<h2>What previous experience do you have with programming?</h2>
<p>I have previous programming experience with C, C++, Java and JavaScript. I have experience with shell scripting in sh, csh and bash.</p>
<h2>Are you working on a Mac, PC, or some other platform?</h2>
<p>I am working on a Mac.</p>
<h2>Anything else we should know?</h2>
<p>I live about 45 minutes from campus. So I will mostly participate online, but I will try to attend class in person from time to time.</p>
</div>
</div>
</div>
</body>
</html>