32 lines
846 B
HTML
32 lines
846 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Color Picker</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="pageTitle" ></div>
|
|
<div class="secTitle"> <h1 class="secTitleFont">Countdown Animation</h1> </div>
|
|
<div class="secCntrls" height: 200px>
|
|
<label for="dropList">Animation: </label>
|
|
<select class="dropList">
|
|
<option>Custom 1</option>
|
|
<option>Custom 2</option>
|
|
<option>Custom 3</option>
|
|
<option>Custom 4</option>
|
|
<option>Rainbow</option>
|
|
<option>Chasing</option>
|
|
<option>Meteors</option>
|
|
<option>Fire (red)</option>
|
|
</select>
|
|
<label for="color-picker">Color: </label>
|
|
<input type="color" id="color-picker">
|
|
</div>
|
|
<div class="secTitle"> <h1 class="secTitleFont"> Selection Screen</h1> </div>
|
|
<div class="secCntrls">
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|