-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (38 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Page-Exit" content="revealTrans(Duration=1.0,Transition=9)">
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
div.left {width: 51%;}
div.right {width: 49%;}
</style>
</head>
<body>
<nav>
<a href="index.html">Product </a>
<a href="cause.html">Cause</a>
</nav>
<div class="left">
<div class="container">
<h3 class="first">Refugee?</h3>
<h3>Find a local</h3>
<h3><a href="refugee.html"><img src="img/leftgo.png" onmouseover="this.src='img/leftgohover.png'" onmouseout="this.src='img/leftgo.png'" alt="connect"></a></h3>
<h3>OR</h3>
<h3>Head to the nearest <a href=#>camp</a></h3>
</div>
</div>
<div class="right">
<div class="container-right">
<h3 class="first">Local?</h3>
<h3>Meet those arriving</h3>
<h3><a href="local.html"><img src="img/rightgo.png" onmouseover="this.src='img/rightgohover.png'" onmouseout="this.src='img/rightgo.png'" alt="connect"></a></h3>
<h3>AND</h3>
<h3>Make them feel home</h3>
</div>
</div>
<div class="footer"><a href="team.html">About</a></div>
</body>
</html>