-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
95 lines (79 loc) · 2.99 KB
/
about.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
<!--Contact Us Page-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Tufts Text Exchange - Contact</title>
<link rel="stylesheet" href="css/about_style.css" />
<link rel="stylesheet" type="text/css" href="css/toolbar_style.css" />
</head>
<body>
<!-- Toolbar -->
<div class="menu">
<span class="left">
<a href="index.html">Home</a>
<a class="toolapplyBorderLeft" href="marketplace.html">Buy</a>
<a class="toolapplyBorderLeft" href="sellerhome.html">Sell</a>
</span>
<span class="right">
<a href="about.html" class="button">About</a>
<a class="toolapplyBorderLeft" href="contact.html" class="button">Contact</a>
</span>
</div>
<!-- Banner -->
<div class="banner">
<div class="banner-background">
<div class="banner-words">
<div id="banner-title-about"> Meet the team. </div>
<div id="banner-subscript"> We're cool kids. </div>
</div>
</div>
</div>
<div class ="team-info">
<li class ="personInfo">
<div class = "circle-block">
<img src = "img/about/elif.jpg" alt = "Elif profile photo"/>
</div>
<div class = "name-block" >
Elif Kinli
</div>
<div class = "info-block">
A junior at Tufts majoring in Computer Science and Quantative Economics, Elif has an interest in full stack development, having won the Best Use of TripAdvisor API at the Tufts Polyhack for her work on Trvlr.
</div>
</li>
<li class ="personInfo applyBorderLeft">
<div class = "circle-block">
<img src = "img/about/jade.jpg" alt = "Jade profile photo"/>
</div>
<div class = "name-block" >
Jade Chan
</div>
<div class = "info-block">
Jade is junior majoring in Computer Science and English. An executive board member at Jumbocode, Jade is committed to front end web design and development. She is partners in crime with Elif on the Trvlr project, which won the Best Use of TripAdvisor API at the Tufts Polyhack.
</div>
</li>
<li class ="personInfo applyBorderLeft">
<div class = "circle-block">
<img src = "img/about/marcus.jpg" alt = "Marcus profile photo"/>
</div>
<div class = "name-block" >
Marcus Mok
</div>
<div class = "info-block">
Marcus is a junior at Tufts majoring in Computer Science and Economics. He was a summer analyst at Ortus Capital Management, syncing live databases and implementing a framework to predict price movements. He is a consulting director at Tufts Consulting Collective overseeing tech startup projects.
</div>
</li>
<li class ="personInfo applyBorderLeft">
<div class = "circle-block">
<img src = "img/about/zabir.jpg" alt = "Zabir profile photo"/>
</div>
<div class = "name-block" >
Zabir Islam
</div>
<div class = "info-block">
Zabir is a junior, academic technology fellow at Tufts majoring in Computer Science. He was an software engineer at Tufts' Human Robot interaction lab and helped debug, maintain, refactor and write new tools for Java-based software architecture for robots.
</div>
</li>
</div>
</body>
</html>