-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (48 loc) · 1.42 KB
/
index.html
File metadata and controls
59 lines (48 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mental Rental - Home</title>
<link rel="stylesheet" href="style.css" charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Mitr" rel="stylesheet">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.6/Chart.min.js">
</script>
</head>
<body>
<header>
<section id="connect">
<p>Connect:</p>
<a id="githubLink"href="https://github.com/olds1423/finalProject"><img id="github" src="assets/style/github.png"/></a>
</section>
<!-- Title -->
<h1>Mental-Rental</h1>
<!-- login -->
<a id="login">Log In/ Register</a>
</header>
<!-- nav bar -->
<nav id="navbar">
<a id="formLink" href="form.html">Add information</a>
<a id="statsLink" href="statistics.html">All Statistics</a>
</nav>
<main id="landingMain">
<article id="genInfo">
<h3>About Mental Rental:</h3>
<p>Mental Rental is a website where you can easily keep track of a roommate's or tenant's rent and utilities bills.</p>
</article>
<article id="pricing">
<h3>Pricing:</h3>
<p>$15 per month or $150 per year</p>
</article>
<article id="updateHistory">
<h3>Update History:</h3>
<ul>
<li>7/7/2016 - Made website</li>
</ul>
</article>
</main>
<footer>
<p>Mental Rental - 2016</p>
</footer>
<script type='text/javascript' src='constructor.js'></script>
</body>
</html>