-
Notifications
You must be signed in to change notification settings - Fork 0
/
moodview.html
executable file
·74 lines (64 loc) · 2.51 KB
/
moodview.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
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mood View</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<style>
#map { width: 880px;
height: 880px;
z-index: 1;
}
.mooddivs {
margin-bottom: 15px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="row2">
<div class="col-2-1">
<img src="images/bluenote.png"></img>
</div>
<div class="moodbuttons">
<!-- <div style="position: relative; background: url(path to image); width: (width)px; height: (height)px;"> -->
<div class="mooddivs" style="position: relative; background: url(images/rushing.jpg); height: 40px;">
<a href="#">
<div style="position: absolute; bottom: 0; text-align: center; width: 400px; font-family: Helvetica Neue; font-weight: bold; color: #fff;">
<p>RUSHING</p>
</div>
</a>
</div>
<div class="mooddivs" style="position: relative; background: url(images/striding.jpg); height: 40px;">
<a href="#">
<div style="position: absolute; bottom: 0; text-align: center; width: 400px; font-family: Helvetica Neue; font-weight: bold; color: #fff;">
<p>STRIDING</p>
</div>
</a>
</div>
<div class="mooddivs" style="position: relative; background: url(images/walking.jpg); height: 40px; ">
<a href="#">
<div style="position: absolute; bottom: 0; text-align: center; width: 400px; font-family: Helvetica Neue; font-weight: bold; color: #fff;">
<p>WALKING</p>
</div>
</a>
</div>
<div class="mooddivs" style="position: relative; background: url(images/strolling.jpg); height: 40px;">
<a href="#">
<div style="position: absolute; bottom: 0; text-align: center; width: 400px; font-family: Helvetica Neue; font-weight: bold; color: #fff;">
<p>STROLLING</p>
</div>
</a>
</div>
<div class="mooddivs" style="position: relative; background: url(images/lounging.jpg); height: 40px;">
<a href="#">
<div style="position: absolute; bottom: 0; text-align: center; width: 400px; font-family: Helvetica Neue; font-weight: bold; color: #fff;">
<p>LOUNGING</p>
</div>
</a>
</div>
</div>
</body>
</html>