forked from caminosdeagua/rainwater-calculator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.18 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.18 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rainwater Calculator</title>
<!-- Adding Materialize -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css">
<link rel="stylesheet" href="./css/Main.css" media="screen" title="no title">
<!-- Adding jQuery -->
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<!-- JS for Materialize -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js"></script>
</head>
<body>
<nav>
<div class="nav-wrapper container">
<a href="#" class="brand-logo">Rainwater Harvesting Calculator</a>
</div>
</nav>
<div class="container">
<p>This calculator can be used to size a rainwater harvesting system which
provides enough safe drinking and cooking water - your household’s
essential water need. With any questions, comments, or collaborations,
please contact us!
</p>
</div>
<script src="./js/Main.js"></script>
</body>
</html>