forked from optimal-airbnb/front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
55 lines (44 loc) · 1.59 KB
/
contact.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="unit1-index.css">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
<title>AirBnB Optimal Prices</title>
</head>
<body>
<section>
<div class="nav-top">
<div class="nav-left">
<i class="fas fa-house-user"></i>
</div>
<div class="nav-right">
<nav>
<a href = "unit1-index.html" class="nav nav-1">Home</a>
<a href = "unit1-about.html" class="nav nav-2">About</a>
<a href = "faq.html" class="nav nav-3">FAQ</a>
<a href = "login.html" class="nav nav-4 callToAction">Launch App</a>
</nav>
</div>
</div>
</section>
<section>
<div class = 'contactTitle'>
<h1>Contact Us!</h1>
</div>
<div class = "contactContainer">
<div class = 'contactCard'>
<h1>Slack</h1>
<p>Contact us in the <a href="slack.com">#buildweek-airbnb</a> channel</p>
<img src = "assets/slack.png">
</div>
<div class = 'contactCard'>
<h1>Email</h1>
<p>Contact us via <a href = "mailto:[email protected]">email</a></p>
<img src = "assets/email.png">
</div>
</div>
</section>
</body>
</html>