-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (40 loc) · 1.24 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=500, initial-scale=1">
<title>Airbnb Pricer </title>
<link href="https://fonts.googleapis.com/css?family=Russo+One|Ubuntu" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Spartan&display=swap" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<header>
<nav>
<img id="logo" src="img/logo.png" alt ='logo'/>
<a class="home" href="index.html"><h1>Airbnb Pricer</h1></a>
<a class="navA" href="#">Add a property</a>
<a class="navA" href="About-Us.html">About Us</a>
<a id="button" href="#">Login</a>
</nav>
</header>
<section class="mainContent">
<div class="box">
<p>See your properties here!</p>
</div>
</section>
<footer>
<nav>
<p>Copyright Lambda School Build Week 2020</p>
<a id="navA" href="#">Add a property</a>
<a id="navA" href="#">About Us</a>
<a id="button" href="#">Login</a>
</nav>
</footer>
</div>
</body>
</html>