-
Notifications
You must be signed in to change notification settings - Fork 0
/
Roofview_Screen3.html
85 lines (63 loc) · 1.84 KB
/
Roofview_Screen3.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
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang = "en">
<head> <meta http-equiv = "Content-Type" content = "text/html; charset = utf-8">
<title> Roofview </title>
<!-- Link to Stylesheet -->
<link rel = "stylesheet" type = "text/css" href = "d4.css"/>
</head>
<body>
<h1> Roofview </h1>
<!--Insert map icon-->
<img src = "map.jpg" alt = "Map"/>
<a target="_blank" href="https://icons8.com/icon/8IhpkFkTIsxZ/user">User</a> icon by <a target="_blank" href="https://icons8.com">Icons8</a>
<!--Insert icons-->
<!--Initiate Form-->
<form action = "" method = "get">
<p>
<label for= "Location"> Location
<select name = "location" id = "location">
<option value = "arbutus"> Arbutus </option>
<option value = "annapolis"> Annapolis </option>
<option value = "annapolis"> Catsonville </option>
<option value = "annapolis"> Other? </option>
</select> </label> </br>
<label>
Location name <input type = "text">
</label> </br>
<label>
Description <input type = "text" name = "description"/>
</label></br>
<label>
Upload photo <input type = "text"/>
</label> </br>
<label>
Rating <input type = "text"/>
</label></br>
<label>
Cost <input type = "text"/>
</label></br>
<label>
Best for? Select all tags that apply
</label></br>
UMBC Transit Accessible?
<label>
<input type = "radio" name = "transit_accessible" value = "Yes" checked = "checked"/> Yes
</label>
<label>
<input type = "radio" name = "transit_accessible" value = "No"/> No
</label></br>
Student Discounts Available?
<label>
<input type = "radio" name = "discounts_available" value = "Yes"/> Yes
</label>
<label>
<input type = "radio" name = "discounts_available" value = "No" checked = "checked"/> No
</label></br>
<!--Insert buttons-->
<input type = "submit" value = "Submit Review!" />
<input type = "reset" value = "Reset!"/>
<img src = "five-stars-thumbs-up-icon" alt = "Rating"/>
</p>
</form>
</body>
</html>