-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain2 (1).html
56 lines (54 loc) · 2.1 KB
/
main2 (1).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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Younger Lab Database Example</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<header>
<div class="container">
<a href="#" class="logo">Younger Lab Database</a>
<nav>
<ul class="nav-menu">
<li><a href="home.html">Home</a></li>
<li class="dropdown">
<a href="#">Forms</a>
<ul class="dropdown-menu">
<li><a href="passage-form.html">Passage Form</a></li>
<li><a href="sorting-form.html">Sorting Form</a></li>
<li><a href="clutch-form.html">Clutch Form</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#">Tables</a>
<ul class="dropdown-menu">
<li><a href="master-view.html">Master View</a></li>
<li><a href="sorting-table.html">Sorting Table</a></li>
<li><a href="passage-table.html">Passage Table</a></li>
</ul>
</li>
<li><a href="modify-tables.html">Modify Tables</a></li>
<li class="dropdown">
<a href="#">Diagnostics</a>
<ul class="dropdown-menu">
<li><a href="master-view.html">Clutch Wellness</a></li>
<li><a href="sorting-table.html">Statistics</a></li>
</ul>
</li>
<li><a href="#">Help</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<h1>Introduction</h1>
<p>This database was created in cooperation with the Younger Lab to aid in mosquito line management. Tabs in this webpage will aid the Younger Lab in diagnostic plotting of egg propensity, a master view of the mosquito lines, an image
view of mosquito lines, a form to input mosquito line passage data, and a to do list. A help page is also provided to guide the user of the main functionalities of the database.
</p>
</div>
</main>
</body>
</html>