-
Notifications
You must be signed in to change notification settings - Fork 1
/
Legacy.html
43 lines (38 loc) · 2.17 KB
/
Legacy.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
<html>
<title>Dr. Evelyn Shaw</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: "Lato", sans-serif}
.mySlides {display: none}
</style>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-black w3-card">
<a class="w3-bar-item w3-button w3-padding-large w3-hide-medium w3-hide-large w3-right" href="javascript:void(0)" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="Shaw.html" class="w3-bar-item w3-button w3-padding-large">Home</a>
<a href="About.html" class="w3-bar-item w3-button w3-padding-large w3-hide-small">About</a>
<a href="Research.html" class="w3-bar-item w3-button w3-padding-large w3-hide-small">Research</a>
<a href="Publications.html" class="w3-bar-item w3-button w3-padding-large w3-hide-small">Publications</a>
<div class="w3-dropdown-hover">
<button class="w3-bar-item w3-button w3-padding-large">Legacy ∨ </button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="Challenge.html" class="w3-bar-item w3-button w3-padding-large"">Challenge</a>
<a href="Contributions.html" class="w3-bar-item w3-button w3-padding-large">Shaw's Contributions after death</a>
</div>
<a href="javascript:void(0)" class="w3-padding-large w3-hover-red w3-hide-small w3-right"><i class="fa fa-search"></i></a>
</div>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-black w3-hide w3-hide-large w3-hide-medium w3-top" style="margin-top:46px">
<a href="About.html" class="w3-bar-item w3-button w3-padding-large">About</a>
<a href="#tour" class="w3-bar-item w3-button w3-padding-large">Research</a>
<a href="#contact" class="w3-bar-item w3-button w3-padding-large">Pictures/Historical Documents</a>
<a href="#" class="w3-bar-item w3-button w3-padding-large">Contact/Legacy</a>
</div>
</body>
</html>