-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrate-cafe.html
66 lines (56 loc) · 2.2 KB
/
rate-cafe.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
<!DOCTYPE html>
<!--[if lt IE 9]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if (gt IE 8)|!(IE)]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fixie App - Get your caffeine fix on the road</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/main.min.css">
<link href='http://fonts.googleapis.com/css?family=Oxygen:300' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="lines">
<div class="lines--red-white"></div>
<div class="lines--blue-blue"></div>
</div>
<div class="wrap">
<header class="site-header">
<h1 class="branding"><a href="#"><img src="images/fixie-logo.svg"></a></h1>
<a href="#" class="home-link" title="return to home screen"><span class="icon-home"></span></a>
</header>
<section class="content">
<h1>Old Betty's</h1>
<div class="form">
<div class="form__group">
<label class="form__label" for="cafe-rating">Rating</label>
<span class="form__helper">How would you rate this café for cyclists?</span>
<select class="form__control form__control--full" id="cafe-rating" name="cafe-rating">
<option value="1">1 star</option>
<option value="2">2 stars</option>
<option value="3">3 stars</option>
<option value="4">4 stars</option>
<option value="5">5 stars</option>
</select>
<div class="rating">
<div class="stars">
<span class="star-5">★</span>
<span class="star-4">★</span>
<span class="star-3">★</span>
<span class="star-2">★</span>
<span class="star-1">★</span>
</div>
</div>
</div>
<div class="form__group">
<label class="form__label" for="cafe-comment">Leave a comment</label>
<span class="form__helper">Are there bike racks? What's the coffee like? How much does the cake cost?</span>
<textarea name="cafe-comment" id="cafe-comment" class="form__control form__control--full" rows="10"></textarea>
</div>
<input type="submit" class="btn btn--red" value="Add rating">
</div>
</section>
</div>
</body>
</html>