Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Plain Text by sa ( 13 years ago )
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>MYFORM</title>
</head>
<body id="index" class="home">
MYSITE
<form>
<p><label>Customer name: <input></label></p>
<fieldset>
<legend> Pizza Size </legend>
<p><label> <input type=radio name=size> Small </label>
<label> <input type=radio name=size> Medium </label>
<label> <input type=radio name=size> Large </label></p>
</fieldset>
<fieldset>
<legend> Pizza Toppings </legend>
<p><label> <input type=checkbox> Bacon </label>
<label> <input type=checkbox> Extra Cheese </label></p>
<p><label> <input type=checkbox> Onion </label>
<label> <input type=checkbox> Mushroom </label></p>
</fieldset>
<p><button>ok</button><button>cancel</button></p>
<p><button>order</button><button>submit</button></p>
<table>
<tr> <th> Product ID <th> Product name <th> Price <th> Action
<tr>
<td> <input read name="1.pid" value="H412">
<td> <input required="required" name="1.pname" value="Floor lamp
Ulke">
<td> $<input required="required" type="number" min="0" step="0.01"
name="1.pprice" value="49.99">
<td> <button formnovalidate="formnovalidate" name="action"
value="delete:1">Delete</button>
<tr>
<td> <input read name="2.pid" value="FG28">
<td> <input required="required" name="2.pname" value="Table lamp
Ulke">
<td> $<input required="required" type="number" min="0" step="0.01"
name="2.pprice" value="24.99">
<td> <button formnovalidate="formnovalidate" name="action"
value="delete:2">Delete</button>
<tr>
<td> <input required="required" name="3.pid" value="" pattern="[A-Z0
-9]+">
<td> <input required="required" name="3.pname" value="">
<td> $<input required="required" type="number" min="0" step="0.01"
name="3.pprice" value="">
<td> <button formnovalidate="formnovalidate" name="action"
value="delete:3">Delete</button>
</table>
<p> <button formnovalidate="formnovalidate" name="action"
value="add">Add</button> </p>
<p> <button name="action" value="update">Save</button> </p>
<label for="password1">Password:</label>
<input id="password1" type=password required name=up>
<input type=submit value="Create account">
<button type=button
>
Show hint
</button>
<label for="unittype">Select unit type:</label>
<select id="unittype" name="unittype">
<option value="1"> Miner </option>
<option value="2"> Puffer </option>
<option value="3" selected> Snipey </option>
<option value="4"> Max </option>
<option value="5"> Firebot </option>
</select>
<p>Select the recipe from the list:</p>
<select multiple required name="act2">
<option value="s1">Food
<option value="s2">Tablet
<option value="s3">Cauldron
<option value="s4">Plate
<option value="s5">Tree
<option value="s6">Horn
<option value="s7">Slime
<option value="s8">Dust
<option value="s9">Bone
<option value="s10">Oil
<option value="s11">Table
</select>
<p>Which course would you like to watch today?
<p><label>Course:
<select name="c">
<optgroup label="8.01 Physics I: Classical Mechanics">
<option value="8.01.1">Lecture 01: Powers of Ten
<option value="8.01.2">Lecture 02: 1D Kinematics
<option value="8.01.3">Lecture 03: Vectors
<optgroup label="8.02 Electricity and Magnestism">
<option value="8.02.1">Lecture 01: What holds our world together?
<option value="8.02.2">Lecture 02: Electric Field
<option value="8.02.3">Lecture 03: Electric Flux
<optgroup label="8.03 Physics III: Vibrations and Waves">
<option value="8.03.1">Lecture 01: Periodic Phenomenon
<option value="8.03.2">Lecture 02: Beats
<option value="8.03.3">Lecture 03: Forced Oscillations with Damping
</select>
</label>
<p><input type=submit value="Play">
<section>
<h2>Task Progress</h2>
<p>Progress: <progress id="p" max=100><span>0</span>%</progress></p>
[removed]
var progressBar = document.getElementById('p');
function updateProgress(newValue) {
progressBar.value = newValue;
progressBar.getElementsByTagName('span')[0].textContent = newValue;
}
[removed]
</section>
</form>
<body>
</html>
Revise this Paste