mirror of
https://github.com/wassname/mad.git
synced 2026-07-04 17:20:08 +08:00
35 lines
794 B
HTML
35 lines
794 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>MAD Options</title>
|
|
<script src="js/bootstrap.min.js"></script>
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
|
|
</head>
|
|
<body>
|
|
<div class="text-center">
|
|
<h1>Options</h1>
|
|
</div>
|
|
|
|
Favorite color:
|
|
<select id="color">
|
|
<option value="red">red</option>
|
|
<option value="green">green</option>
|
|
<option value="blue">blue</option>
|
|
<option value="yellow">yellow</option>
|
|
</select>
|
|
|
|
<label>
|
|
<input type="checkbox" id="like">
|
|
I like colors.
|
|
</label>
|
|
|
|
<div id="status"></div>
|
|
<button id="save">Save</button>
|
|
|
|
</body>
|
|
</html>
|
|
|