-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathreviews.html
126 lines (125 loc) · 7.11 KB
/
reviews.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<html class="js">
<head>
<title>Mobile-First Responsive Web Design</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<script type="text/javascript" src="js/modernizr.js"></script>
</head>
<body>
<div id="page">
<nav class="back-nav">
<a href="index.html">← Back to Super Ffly T-shirt</a>
</nav>
<section class="reviews " id="reviews">
<header id="tab-reviews" role="tab" aria-controls="p-reviews">
<h2>8 Reviews</h2>
<ol class="star">
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li>☆</li>
</ol>
</header>
<div id="content">
<div id="p-reviews" aria-labeledby="tab-reviews">
<ol class="reviews-list">
<li>
<img src="images/avatar.png" alt="Commenter Name" />
<div class="review-meta">
<ol class="star">
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li>☆</li>
</ol>
<h3>Awesome shirt!</h3>
<a href="#"><time datetime="2010-01-20" pubdate>11/12/2011</time></a> By Bruce Bosco
</div>
<div class="review-content">
<p>This shirt looks awesome and is really comfortable to wear. It did shrink quite a lot when washed, but that could have just been how I ran it. All in all, it's my favourite shirt, and I love wearing it.</p>
</div>
</li>
<li>
<img src="images/avatar.png" alt="Commenter Name" />
<div class="review-meta">
<ol class="star">
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li>☆</li>
</ol>
<h3>Nice shirt</h3>
<a href="#"><time datetime="2010-01-20" pubdate>11/12/2011</time></a> By Nick McKinsey
</div>
<div class="review-content">
<p>This shirt is a great addition to any simple wardrobe. Can be worn by itself or complimented with accessories. Nice and soft to the touch!</p>
</div>
</li>
<li>
<img src="http://a1.twimg.com/profile_images/1561258552/brad_frost.png" alt="Commenter Name" />
<div class="review-meta">
<ol class="star">
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li>☆</li>
</ol>
<h3>I love these tees</h3>
<a href="#"><time datetime="2010-01-20" pubdate>11/12/2011</time></a> By Rowdy Randy
</div>
<div class="review-content">
<p>Fits, looks, and feels great. Got 4 of these in medium (140lbs, 5'9) and they fit well. My favorite is the grey one!</p>
</div>
</li>
<li>
<img src="images/avatar.png" alt="Commenter Name" />
<div class="review-meta">
<ol class="star">
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li>☆</li>
<li>☆</li>
</ol>
<h3>Runs a little small</h3>
<a href="#"><time datetime="2010-01-20" pubdate>11/12/2011</time></a> By Nathan Hey
</div>
<div class="review-content">
<p>I got 2 of these shirts (black and green) on small size and I really loved it!</p>
<p>Regular shirts usually fits tight on my neck. I can't wait to get the red, blue and white one, since I'm from Brazil, and I'm going back home on mid-January. I hope these colors get available on my size before this.</p>
</div>
</li>
<li>
<img src="images/avatar.png" alt="Commenter Name" />
<div class="review-meta">
<ol class="star">
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li class="on">★</li>
<li>☆</li>
</ol>
<h3>Best Shirt I Own</h3>
<a href="#"><time datetime="2010-01-20" pubdate>11/12/2011</time></a> By Chack Tuylor
</div>
<div class="review-content">
<p>This is comfortable, soft, and the right fit for any sort of guy who wants to dress up or dress down. Over all im very satisfied with this product.</p>
</div>
</li>
</ol>
<a href="#" class="btn">Read All Reviews</a>
</div>
</div>
</section><!--end .reviews-->
<nav class="back-nav">
<a href="index.html">← Back to Super Ffly T-shirt</a>
</nav>
</div><!--end page-->
</body>
</html>