-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
107 lines (101 loc) · 5.18 KB
/
team.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
<!DOCTYPE html>
<html>
<head>
<title>Master Project Visualizations</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS Lib -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./lib/css/site.css">
<!-- JS Lib -->
<script src="https://code.jquery.com/jquery-2.1.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Master Project Visualizations</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="visualization.html">Visualization</a></li>
<li><a href="data.html">Data</a></li>
<li><a href="tools.html">Tools</a></li>
<li class="active"><a href="team.html">Team</a></li>
</ul>
<ul class="nav navbar-nav navbar-right"></ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container">
<div class="panel panel-info">
<div class="panel-heading">Team Members</div>
<div class="panel-body">
<ul class="list-group">
<li class="list-group-item">
<div class="list-group-item-text container-fluid">
<div class="row">
<span class="col-sm-2">
<img src="./lib/img/seimei.jpg" alt="Seimei Matsusaki" class="avator img-circle" style="height:120px">
</span>
<span class="col-sm-9" style="font-size:16px">
<h3><b>Seimei Matsusaki</b></h3>
Seimei is an international student who originally comes from Japan and is a MS candidate in Computer Science. Before he attended the University of San Francisco, he went to the University of Maine at Fort Kent, majoring Computer Applications. His programming experience started from when he was a freshman there with VisualBasic. Currently, he is using C, Java, Python, and JavaScript mainly. His major interests are embedded systems, operating systems, distributed systems, web development, and data visualization.
</span>
</div>
</div>
</li>
<li class="list-group-item">
<div class="list-group-item-text container-fluid">
<div class="row">
<span class="col-sm-2">
<img src="./lib/img/xihan.jpg" alt="Xi Han" class="avator img-circle" style="width:110px; height:120px">
</span>
<span class="col-sm-9" style="font-size:16px">
<h3><b>Xi Han</b></h3>
Xi is also an international student who pursues a Master's degree in Computer Science. He originally comes from China. He is mainly interested in and focuses on data mining and data visualization in several fields using C#, Python and JavaScript. During his intern period, he was working on SQL error comparison visualization in Honeywell (China). In these years, he worked on a security visualization project for DELL, and also a project to visualize experiment data using D3.
</span>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="panel panel-info">
<div class="panel-heading">Sponsor</div>
<div class="panel-body">
<ul class="list-group">
<li class="list-group-item">
<div class="list-group-item-text container-fluid">
<div class="row">
<span class="col-sm-2">
<img src="./lib/img/sjengle.png" alt="Sophie Engle" class="avator img-circle" style="height:120px">
</span>
<span class="col-sm-9" style="font-size:16px">
<h3><b>Sophie Engle</b></h3>
Dr. Engle is an assistant professor in the Department of Computer Science at the University of San Francisco. She is the Graduate Director for the Masters in Science in Computer Science (MSCS) program, and teachs courses for the Masters in Science in Analytics (MSAN) program. She is the mentor and sponsor of this project.
</span>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<footer class="well">
CS690 Master Project, Spring 2015.
<a href="http://www.cs.usfca.edu/">Computer Science Department</a>
of
<a href="http://www.usfca.edu/">University of San Francisco</a>.
</footer>
</body>
</html>