-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheartsw.html
26 lines (24 loc) · 1.19 KB
/
heartsw.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Flick of heart</title>
<link rel="stylesheet" href="heartsw.css">
</head>
<body>
<p class="title"> Heart shaped checkboxs</p>
<p>Click on hearts to switch</p>
<label class="heart-switch">
<input type="checkbox">
<svg viewBox="0 0 33 23" fill="white">
<path d="M23.5,0.5 C28.4705627,0.5 32.5,4.52943725 32.5,9.5 C32.5,16.9484448 21.46672,22.5 16.5,22.5 C11.53328,22.5 0.5,16.9484448 0.5,9.5 C0.5,4.52952206 4.52943725,0.5 9.5,0.5 C12.3277083,0.5 14.8508336,1.80407476 16.5007741,3.84362242 C18.1491664,1.80407476 20.6722917,0.5 23.5,0.5 Z"></path>
</svg>
</label>
<label class="heart-switch">
<input type="checkbox" checked>
<svg viewBox="0 0 33 23" fill="white">
<path d="M23.5,0.5 C28.4705627,0.5 32.5,4.52943725 32.5,9.5 C32.5,16.9484448 21.46672,22.5 16.5,22.5 C11.53328,22.5 0.5,16.9484448 0.5,9.5 C0.5,4.52952206 4.52943725,0.5 9.5,0.5 C12.3277083,0.5 14.8508336,1.80407476 16.5007741,3.84362242 C18.1491664,1.80407476 20.6722917,0.5 23.5,0.5 Z"></path>
</svg>
</label>
</body>
</html>