-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rossi.html
110 lines (102 loc) · 4.31 KB
/
Rossi.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Favorites</title>
<link rel="stylesheet" href="Rossi.css">
</head>
<body>
<fieldset class="checkbox-group">
<legend class="checkbox-group-legend">Choose Your Favorites</legend>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input">
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src="https://cdn-icons-png.flaticon.com/512/119/119909.png" height="100" width="100" alt="Choco">
</span>
<span class="checkbox-label">Chocolate</span>
</span>
</label>
</div>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input" checked>
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src=" https://cdn-icons-png.flaticon.com/512/5889/5889003.png" height="100" width="100" alt="Matcha">
</span>
<span class="checkbox-label">Matcha</span>
</span>
</label>
</div>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input">
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src="https://www.inventicons.com/uploads/iconset/530/wm/512/Garden-14.png
" alt="Garden" height="100" width="100">
</span>
<span class="checkbox-label">Garden</span>
</span>
</label>
</div>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input">
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src="https://cdn-icons-png.flaticon.com/512/2177/2177266.png" height="100" width="100" alt="Piano">
</span>
<span class="checkbox-label">Piano</span>
</span>
</label>
</div>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input">
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src="https://www.svgrepo.com/show/79316/youtube.svg" height="100" width="100" alt="Youtube">
</span>
<span class="checkbox-label">Youtube</span>
</span>
</label>
</div>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input">
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src="https://www.svgrepo.com/show/224031/beach.svg" height="100" width="100" alt="Beach">
</span>
<span class="checkbox-label">Beach</span>
</span>
</label>
</div>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input">
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src="https://cdn-icons-png.flaticon.com/512/2325/2325498.png" height="100" width="100" alt="Cat">
</span>
<span class="checkbox-label">Cat</span>
</span>
</label>
</div>
<div class="checkbox">
<label class="checkbox-wrapper">
<input type="checkbox" class="checkbox-input" checked>
<span class="checkbox-tile">
<span class="checkbox-icon">
<img src="https://www.svgrepo.com/show/67444/travel.svg" height="100" width="100" alt="Travel">
</span>
<span class="checkbox-label">Travel</span>
</span>
</label>
</div>
</fieldset>
</body>
</html>