-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
161 lines (134 loc) · 5.61 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<title>WikiArt Analysis</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<header id="header" class="header">
<div class ="row">
<div class = "col-sm-1"></div>
<h1 class = "col-sm-5" style="font-size:24px;" >WikiArt Analysis</h1>
<nav class = "col-sm-6 text-right">
<a href = "index.html">Home</a>
<a href = "design.html">Design</a>
</nav>
</div>
<div class="header-content">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-container">
<h1>About Us </h1>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- <section id = "style-category" class = "container">
<div class = "row">
<div class = "col-sm-12">
<p>asdfghjk</p>
</div>
</div>
</section> -->
<section id = "LL" class = "container">
<div class = "row">
<div class = "col-sm-4">
<img src = "images/ll.png" style="width:200px;height:200px;border-radius:50% 50% 50% 50%;position: absolute;left: 50%; top: 50%; transform: translate(-50%,-50%);">
</div>
<div class = "col-sm-8">
<div>
<h3>Ling Liu</h3>
<p>
<StrutAlign><img src="images/degree.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>A PhD student in Linguistics.
</p>
<p>
<StrutAlign><img src="images/duty.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>Data preprocessing. Build charts and videos on the Home page and write an explanation of them.
</p>
<p>
<StrutAlign><img src="images/tool.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>Python, Flourish
</p>
</div>
</div>
</section>
<section id = "LS" class = "container">
<div class = "row">
<div class = "col-sm-4">
<img src = "images/LanSang.jpg" style="width:200px;height:200px;border-radius:50%;position: absolute;left: 50%; top: 50%; transform: translate(-50%,-50%);">
</div>
<div class = "col-sm-8">
<div>
<h3>Lan Sang</h3>
<p>
<StrutAlign><img src="images/degree.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>A master student in Computational Linguistics.
</p>
<p>
<StrutAlign><img src="images/duty.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>Data preprocessing. Build charts in the pages of each style and write an explanation of them.
</p>
<p>
<StrutAlign><img src="images/tool.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>Tableau, Excel
</p>
</div>
</div>
</section>
<section id = "ZZ" class = "container">
<div class = "row">
<div class = "col-sm-4">
<img src = "images/zz.jpeg" style="width:200px;height:200px;border-radius:50%;position: absolute;left: 50%; top: 50%; transform: translate(-50%,-50%);">
</div>
<div class = "col-sm-8">
<div>
<h3>Ziying Zhang</h3>
<p>
<StrutAlign><img src="images/degree.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>A master student in Computer Science.
</p>
<p>
<StrutAlign><img src="images/duty.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>Design and build all pages of this website and the design roadmap.
</p>
<p>
<StrutAlign><img src="images/tool.png" style="height: 40px; width: 40px; margin-top: 10px; margin-right: 20px;"></StrutAlign>HTML5, CSS3, JavaScript, Sketch, Venngage
</p>
</div>
</div>
</section>
<div id="gotop">
<div class="arrow"></div>
<div class="stick"></div>
</div>
<footer class = "container" >
<div class = "row" >
<p>© 2019 INFO 5602 Group 6</p>
</div>
</footer>
<script src="http://cdn.staticfile.org/jquery/1.11.1-rc2/jquery.min.js"></script>
<script>
$(function(){
$(window).scroll(function(){
var scrollt = document.documentElement.scrollTop + document.body.scrollTop;
if( scrollt >600 ){
$("#gotop").fadeIn(400);
}else{
$("#gotop").stop().fadeOut(400);
}
});
$("#gotop").click(function(){
$("html,body").animate({scrollTop:"0px"},200);
});
});
const MyIcon = (props) => (
<span style={{
display: 'inline-flex',
alignItems: 'center',
}}>
{'\u200b'/* ZWSP(zero-width space) */}
<svg {...props} />
</span>
)
</script>
</body>
</html>