-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·72 lines (65 loc) · 1.9 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
70
71
72
<html>
<head>
<title>Rate</title>
<link rel="stylesheet" href="src/css/rate_css.css">
<!--Needed for beautifying the site-->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>-->
<!--Offline Jquery solution-->
<script src="src/js/jquery.min.js"></script>
</head>
<body>
<h1>URateIt</h1>
<h3>the area where this AtHome home is located</h3>
<div class="container">
<div class="row-fluid" id="div0">
<p>
<img src="./src/img/house_01.jpg" class="img-thumbnail" alt="Rate me" width="304" height="236" id="myhome">
</p>
<h3 id="overalTitle">Overal rating</h3>
<div class="row-fluid">
<div class="col-md-12">
<h1 id="no-floor-average"></h1>
</div>
</div>
<div class="row-fluid">
<form id="sendForm" class="form-group">
<input type="hidden" name="rating" id="sendInput" value="0">
<button id="sendButton" class="btn btn-default disabled"> Send Overal rating</button>
</form>
</div>
</div>
<hr />
<h4>Pros</h4>
<div class="row-fluid" id="bottom-rate">
<div class="col-md-12">
<div class="col-md-2">
<h5>Property convenience</h5>
<p id="div1"></p>
</div>
<div class="col-md-3">
<h5>Services</h5>
<p id="div2"></p>
</div>
<div class="col-md-2">
<h5>Parks</h5>
<p id="div5"></p>
</div>
<div class="col-md-3">
<h5>Public transportation</h5>
<p id="div4"></p>
</div>
<hr />
<h4>Cons</h4>
<div class="col-md-2">
<h5>Noise</h5>
<p id="div3"></p>
</div>
</div>
</div>
</div>
<script src="./master.js"></script>
<!--Needed for bootstrap animation-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" ></script>
</body>
</html>