-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1018 Bytes
/
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Cards</title>
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="./style.css">
</head>
<body>
<fieldset>
<label style="--_img: url(https://assets.codepen.io/2585/fiddle-leaf.jpeg)">
<input type="radio" name="images" value="Fiddle Leaf">
</label>
<label style="--_img: url(https://assets.codepen.io/2585/pink-princess.jpeg)">
<input type="radio" name="images" value="Pink Princess">
</label>
<label style="--_img: url(https://assets.codepen.io/2585/kara-eads-zcVArTF8Frs-unsplash.jpg)">
<input type="radio" name="images" value="Monstera" checked>
</label>
<label style="--_img: url(https://assets.codepen.io/2585/pothos.jpeg)">
<input type="radio" name="images" value="Pothos">
</label>
<label style="--_img: url(https://assets.codepen.io/2585/rubber-tree.webp)">
<input type="radio" name="images" value="Rubber Tree">
</label>
</fieldset>
</body>
</html>