-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (81 loc) · 5.27 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
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Test task</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<main>
<section class="articles-wrap clearfix">
<article class="article-block">
<img src="img/first_block.jpg" height="150" width="260" alt="First image">
<div class="star-rating">
<div class="star-block clearfix">
<input class="star-input" type="radio" name="rating_first" value="5">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-5" title="5 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_first" value="4">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-4" title="4 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_first" value="3">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-3" title="3 out of 5 stars"></label>
<input class="star-input" type="radio" checked name="rating_first" value="2">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-2" title="2 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_first" value="1">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-1" title="1 out of 5 stars"></label>
</div>
</div>
<h3>NEW ZEALAND TIMELAPSE</h3>
<p>Equipé de son appareil Canon 5D Mark II, le réalis
ateur Bevan Percival nous offre une nouvelle vidéo
en technique timelapse absolument magnifique
</p>
</article>
<article class="article-block">
<img src="img/second_block.jpg" height="150" width="260" alt="First image">
<div class="star-rating">
<div class="star-block clearfix">
<input class="star-input" type="radio" name="rating_second" value="5">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-5" title="5 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_second" value="4">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-4" title="4 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_second" value="3">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-3" title="3 out of 5 stars"></label>
<input class="star-input" type="radio" checked name="rating_second" value="2">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-2" title="2 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_second" value="1">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-1" title="1 out of 5 stars"></label>
</div>
</div>
<h3>NEW ZEALAND TIMELAPSE</h3>
<p>Equipé de son appareil Canon 5D Mark II, le réalis
ateur Bevan Percival nous offre une nouvelle vidéo
en technique timelapse absolument magnifique
</p>
</article>
<article class="article-block third-article">
<img src="img/third_block.jpg" height="150" width="260" alt="First image">
<div class="star-rating">
<div class="star-block clearfix">
<input class="star-input" type="radio" name="rating_third" value="5">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-5" title="5 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_third" value="4">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-4" title="4 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_third" value="3">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-3" title="3 out of 5 stars"></label>
<input class="star-input" type="radio" checked name="rating_third" value="2">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-2" title="2 out of 5 stars"></label>
<input class="star-input" type="radio" name="rating_third" value="1">
<label class="star-icon fa fa-star-o fa-lg" for="star-rating-1" title="1 out of 5 stars"></label>
</div>
</div>
<h3>NEW ZEALAND TIMELAPSE</h3>
<p>Equipé de son appareil Canon 5D Mark II, le réalis
ateur Bevan Percival nous offre une nouvelle vidéo
en technique timelapse absolument magnifique
</p>
</article>
</section>
</main>
</body>
</html>