-
Notifications
You must be signed in to change notification settings - Fork 1
/
state-vent.html
86 lines (77 loc) · 3.91 KB
/
state-vent.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
<!DOCTYPE html>
<html lang="en">
<title>COVID MultiVent</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://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="multi-vent.css">
<body>
<!-- Navbar -->
<div class="w3-top">
<header class="w3-container w3-blue w3-center">
<h1>COVID MultiVent</h1>
</header>
<div class="w3-bar w3-blue w3-card w3-left-align w3-large">
<a class="w3-bar-item w3-button w3-hide-medium w3-hide-large w3-right w3-padding-large w3-hover-white w3-large w3-blue" href="javascript:void(0);" onclick="myFunction()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="index.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">Home</a>
<div class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white dropdown">
<a href="assembly-guide-v1.html" style="text-decoration: none;">Assembly Guide</a>
<div class="dropdown-content">
<a href="assembly-guide-v1.html">Assembly Guide V1</a>
<a href="assembly-guide-v2.html">Assembly Guide V2</a>
</div>
</div>
<a href="results.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">System Overiew</a>
<a href="about.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large w3-hover-white">About Vent Splitting</a>
<a href="state-vent.html" class="w3-bar-item w3-button w3-padding-large w3-white">State of Ventilation</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium w3-large">
<a href="index.html" class="w3-bar-item w3-button w3-padding-large">Home</a>
<a href="assembly-guide-mobile.html" class="w3-bar-item w3-button w3-padding-large">Assembly Guide</a>
<a href="results.html" class="w3-bar-item w3-button w3-padding-large">System Overiew</a>
<a href="about.html" class="w3-bar-item w3-button w3-padding-large">About Vent Splitting</a>
<a href="state-vent.html" class="w3-bar-item w3-button w3-padding-large">State of Ventilation</a>
</div>
</div>
<div style="padding-top: 150px; text-align: center;">
<h3>Coming soon. This page will have news on ventilator availability in the US and around the world.</h3>
</div>
<div class="w3-row-padding w3-light-grey w3-padding-32 w3-container">
<div class="w3-content">
<div>
<h1>Contact Us</h1>
<h5 class="w3-padding-32">
<form action="https://formspree.io/xvobgloj" method="POST">
<label>Name:</label><br>
<input type="text" name="name" style="width: 500px; border: none;"><br><br>
<label>Your email:</label><br>
<input type="text" name="_replyto" style="width: 500px; border: none;"><br><br>
<label>Your message:</label><br>
<textarea name="message" style="width: 500px; height: 100%; border: none;"></textarea><br><br>
<button type="submit">Send</button>
</form>
</h5>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-32 w3-center w3-opacity">
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">w3.css</a></p>
</footer>
<script>
// Used to toggle the menu on small screens when clicking on the menu button
function myFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>