-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (132 loc) · 5.87 KB
/
index.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
162
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>VEBush - Home</title>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: white;
font-size: 17px;
}
.container-header {
margin: auto;
padding: 30px;
overflow: auto;
}
.header-thumbnail {
float: left;
margin-left: 25px;
}
.header-thumbnail img {
display: inline-block;
border-radius: 8px;
}
.header-content {
margin-left: 225px;
}
.container-navbar {
margin:auto;
max-width: 1000px;
background-color:white;
padding: 10px 30px 10px 10px;
}
.container-main {
margin: auto;
max-width: 1000px;
background-color: white;
padding: 30px;
}
.navbar {
overflow: hidden;
background-color: white;
}
.navbar a {
float: left;
font-size: 20px;
color: #0D2121;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar a.active {
text-decoration: underline;
}
.dropdown {
float:left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 20px;
border: none;
outline: none;
color: #0D2121;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color:#DADFE3;
}
.dropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: #0D2121;
padding: 12 px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color:#DADFE3;
}
.dropdown:hover .dropdown-content {
display: block;
}
@media only screen and (max-width: 620px) {
.main {width: 100%;}
}
</style>
</head>
<body>
<div class="container-header">
<div class="header-thumbnail"><img src="img/headshot.jpg" alt="white trans person with a buzzcut hairstyle smiling" width="175px"></div>
<div class="header-content">
<h1>Victoria-Elliot Bush</h1>
<h3>PhD researcher in Linguistics, Queen Mary University of London</h3>
<h3>[email protected]</h3>
</div>
</div>
<div class="container-navbar">
<div class="navbar">
<a class="active" href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">Research Projects
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="project-phd.html">Connectives in British Sign Language</a>
<a href="project-nncs.html">Numeral + Nouns</a>
</div>
</div>
<a href="output.html">Output</a>
<a href="resources.html">Resources</a>
</div>
</div>
<div class="container-main">
<h1>About Me</h1>
<p>My name is Victoria-Elliot, or Elliot for short, and I am a formal linguist. A semanticist at my core, but I gleefully dip into morphology and syntax when the opportunity arises. I enjoy taking a creative and multi-faceted approach to puzzles in theoretical semantics. This means I am interested in evidence from experiments, natural language data, fieldwork, and theoretical work, when asking questions about the nature of the universal semantic frameworks in human language.</p>
<p>I am currently a PhD researcher in Linguistics at Queen Mary University of London. My project is funded by LISS DTP. This work seeks to better understand the limits and extent of how we are able to link sentences. I am focusing on British Sign Language, and in particular the ways in which you can link sentences using ‘non-manual markers’ such as movement of the head or face. You can find more information under the 'Research Projects' section of this website.</p>
<p>I am also interested in how numerals and nouns combine. This was the subject of my Master’s Thesis, which I am currently preparing for publication. For this I designed an Artificial Language Learning experiment.</p>
<p>I am passionate about making academia accessible, at all levels. This website is currently under construction. I am working to get BSL translations for this website as soon as I can.</p>
</div>
</body>
</html>