-
Notifications
You must be signed in to change notification settings - Fork 0
/
local.html
61 lines (47 loc) · 1.28 KB
/
local.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
<!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: 50%;}
div.right {width: 50%;}
</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">I offer</h3>
<p><select>
<option value="volvo">Clothes</option>
<option value="saab">Food</option>
<option value="mercedes">Money</option>
<option value="audi">Job</option>
</select>
</p>
<p><select>
<option value="volvo">Clothes</option>
<option value="saab">Food</option>
<option value="mercedes">Money</option>
<option value="audi">Job</option>
</select>
</p>
</div>
</div>
<div class="right">
<div class="container">
<h3>Where are you?</h3>
<button onclick="getLocation()">locate me</button>
<p id="demo"></p>
<script id="container" src="js/locate.js"></script>
</div>
</div>
<div class="footer"><a href="team.html">About</a></div>
</body>
</html>