-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Lightsaber CSS</title>
</head>
<body>
<label for="green">Green</label>
<input type="radio" id="green" name="color" checked>
<label for="blue">Blue</label>
<input type="radio" id="blue" name="color">
<label for="yellow">Yellow</label>
<input type="radio" id="yellow" name="color">
<label for="purple">Purple</label>
<input type="radio" id="purple" name="color">
<label for="red">Red</label>
<input type="radio" id="red" name="color">
<label for="darksaber">Darksaber</label>
<input type="radio" id="darksaber" name="color">
<div class="lightsaber">
<input type="checkbox" id="on-off">
<div class="blade"></div>
<label class="hilt" for="on-off">
</label>
<embed src="saber.mp3" type="">
</div>
</body>
</html>