-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Slider</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="wrapper">
<div class="container">
<input type="radio" name="slide" id="c1" />
<label for="c1" class="card">
<div class="row">
<div class="icon">1</div>
<div class="description">
<h4>RAINY</h4>
<p>Rainy is so boring</p>
</div>
</div>
</label>
<input type="radio" name="slide" id="c2" />
<label for="c2" class="card">
<div class="row">
<div class="icon">2</div>
<div class="description">
<h4>SPRING</h4>
<p>Spring is so beautiful</p>
</div>
</div>
</label>
<input type="radio" name="slide" id="c3" checked/>
<label for="c3" class="card">
<div class="row">
<div class="icon">3</div>
<div class="description">
<h4>SUMMER</h4>
<p>Summer is so hot</p>
</div>
</div>
</label>
<input type="radio" name="slide" id="c4" />
<label for="c4" class="card">
<div class="row">
<div class="icon">4</div>
<div class="description">
<h4>WINTER</h4>
<p>Winter is so cool</p>
</div>
</div>
</label>
</div>
</div>
</body>
</html>