-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
102 lines (86 loc) · 3.1 KB
/
team.html
File metadata and controls
102 lines (86 loc) · 3.1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="keywords" content="">
<title>Team Stacks HW2</title>
<meta name="description" content="This is Team Stack' HW2 submission.">
<meta name="author" content="Team Stacks">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,700italic,700,300' rel='stylesheet' type='text/css'>
<!--<link href='https://fonts.googleapis.com/css?family=Titillium+Web:300,300italic,600,600italic' rel='stylesheet' type='text/css'>
-->
<link href="style.css" rel="stylesheet">
<style>
.profile {
padding: 10px;
margin: 20px;
}
.profile > img {
margin-right:10px;
height:100px;
float: left;
}
.faded {
color:gray;
display:inline;
text-transform: uppercase;
}
.heading {
text-transform: uppercase;
display:inline;
margin: 0;
}
</style>
</head>
<body>
<header>
<nav>
Team Stacks' HTML Guide!!!
<a href="index.html">Home</a> |
<a href="team.html">Team</a> |
<a href="conformance.html">Conformance</a>
</nav>
</header>
<section>
<!-- BEGIN CONTENT OF THE PAGE! -->
<h2>
Our Team
</h2>
<blockquote>"We're a team of introverts, but we want to make something cool."</blockquote>
<div class="profile">
<img src="angie.jpg" alt="Angie">
<h4 class="heading">Angie Nguyen </h4><h4 class="faded">ann045@ucsd.edu</h4>
<p>I enjoy watching YouTube videos in my free time. In the future, I'd like a job in the Bay Area. I'd also like a dog, probably a chihuahua.
</p>
</div>
<div class="profile">
<img src="charles.png" alt="Charles">
<h4 class="heading">Charles Cruz </h4><h4 class="faded">c8cruz@ucsd.edu</h4>
<p>That guy on the team that's there... Just a student that studies CS and Japanese.
</p>
</div>
<div class="profile">
<img src="edward.png" alt="Edward">
<h4 class="heading">Edward Chiou </h4><h4 class="faded">edchiou@ucsd.edu</h4>
<p> I am a fourth year UCSD student studying CS. I play video games (mainly Heroes of the Storm) and browse Reddit in my free time.
</p>
</div>
<div class="profile">
<img src="jiajie.png" alt="Jiajie">
<h4 class="heading">Jiajie Duan </h4><h4 class="faded">jduan@ucsd.edu</h4>
<p>I am a fourth year UCSD student graduating this quarter. I like to go to beach and play video games in my free time. I also enjoy sleeping.
</p>
</div>
<div class="profile">
<img src="waiho.jpg" alt="Wai Ho">
<h4 class="heading">Wai Ho Leung </h4><h4 class="faded">whleung@ucsd.edu</h4>
<p>I am a fourth year undergraduate student at UC San Diego studying Computer Engineering and Mathematics-Computer Science. I have contributed to several open-source projects. You may find them on <a href="//www.github.com/whleung">GitHub</a> or on my <a href="//whleung.github.io/">personal webpage</a>. Outside of coding, I like to play basketball and watch YouTube videos.
</p>
</div>
<!-- END CONTENT OF THE PAGE! -->
</section>
<footer>
© 2015 Team Stacks ♥ UCSD ♥ CSE 134B
</footer>
</body>
</html>