You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
9 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
|
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
|
||
|
<style>
|
||
|
html, body{
|
||
|
padding: 0px;
|
||
|
margin: 0px;
|
||
|
overflow: hidden;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form>
|
||
|
<input type="text" name="text"><br>
|
||
|
<input type="password" name="password"><br>
|
||
|
|
||
|
<input type="radio" name="radio" value="one" checked>One<br>
|
||
|
<input type="radio" name="radio" value="two">Two<br>
|
||
|
<input type="radio" name="radio" value="three">Three<br>
|
||
|
|
||
|
<input type="checkbox" name="checkbox1" value="1">Checkbox One<br>
|
||
|
<input type="checkbox" name="checkbox2" value="2">Checkbox Two<br>
|
||
|
|
||
|
<input type="number" name="number" min="1" max="5">Number<br>
|
||
|
|
||
|
<input type="range" name="range" min="0" max="10">Ranges<br>
|
||
|
|
||
|
<select>
|
||
|
<option value="one">One</option>
|
||
|
<option value="two">Two</option>
|
||
|
<option value="three">Three</option>
|
||
|
<option value="four">Four</option>
|
||
|
</select> Dropdowns<br>
|
||
|
|
||
|
<textarea rows="4" cols="50"> </textarea><br>
|
||
|
|
||
|
</form>
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
|