-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
118 lines (114 loc) · 3.48 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
<!DOCTYPE html>
<html>
<head>
<script src="ajax.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.background {
background-image: url(Images/chalkboard.jpg);
background-repeat: no-repeat;
background-size:100%;
}
.topnav {
overflow: hidden;
background-color: rgba(169, 169, 169, 0.473);
margin-right: auto;
border-radius: 30px;
opacity: 70%;
}
.topnav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #2196F3;
color: white;
}
.contact {
color: white;
border: 2px solid rgba(128, 128, 128, 0.5);
border-radius: 30px;
background-color: rgba(128, 128, 128, 0.2);
margin-bottom: 10px;
margin-right: 70%;
}
.contact2 {
color: white;
margin-left: 18px;
}
.c {
color: white
}
</style>
</head>
<body class="background">
<div class="topnav" style = 'font-family: Trebuchet MS, sans-serif;'>
<a href="/">Home</a>
<a href="/analytics.html">Analytics</a>
<a href="/lda_10Topics.html">LDA Plot</a>
<a class = "active" href="/about.html">About</a>
</div>
<h1 class = 'c'>Contact Info:</h1>
<div class='contact'>
<div class = 'contact2'>
<h3>Eden Schaffer-Neitz</h3>
<p>University at Buffalo
<br>
Department of Linguistics
<br>
<br>
acsu.buffalo.edu/~edenscha
</p>
</div>
</div>
<div class='contact'>
<div class = 'contact2'>
<h3>Magali Lopez Cortez</h3>
<p>University at Buffalo
<br>
Department of Linguistics
<br>
<br>
acsu.buffalo.edu/~solmagal
</p>
</div>
</div>
<div class='contact'>
<div class = 'contact2'>
<h3>Michael Sullivan</h3>
<p>University at Buffalo
<br>
Department of Linguistics
<br>
<br>
acsu.buffalo.edu/~mjs227
</p>
</div>
</div>
<div class='contact'>
<div class = 'contact2'>
<h3>Ali Salehi</h3>
<p>University at Buffalo
<br>
Department of Linguistics
<br>
<br>
Alisalehi67.github.io
</p>
</div>
</div>
</body>
</html>