25 lines
783 B
HTML
25 lines
783 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CodePen - Animated Fill and Strikethrough Checkboxes</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"><link rel="stylesheet" href="./style.css">
|
|
|
|
</head>
|
|
<body>
|
|
<!-- partial:index.partial.html -->
|
|
<form>
|
|
<label><input class="pristine" type="checkbox" name="A" checked> <span>Apples</span></label>
|
|
<br>
|
|
<label><input class="pristine" type="checkbox" name="B"> <span>Bananas</span></label>
|
|
<br>
|
|
<label><input class="pristine" type="checkbox" name="C"> <span>Cherries</span></label>
|
|
<br>
|
|
<label><input class="pristine" type="checkbox" name="D"> <span>Oranges</span></label>
|
|
</form>
|
|
<!-- partial -->
|
|
<script src="./script.js"></script>
|
|
|
|
</body>
|
|
</html>
|