ATEC 3361 Lecture Notes - Lecture 4: Internet Explorer 11, California Polytechnic State University, Html Element

33 views19 pages
HTML 5
HTML 5 Form Datalist
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>HTML5 Datalist Example</title>
</head>
<body>
<h1>HTML5 Form Elements</h1>
<p>HTML5 datalist Element</p>
<form action="action_page.php">
<label>My preferred web browser:</leabl>
<input list="browsers">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
</form>
<br>
<br>
<p>Select Dropdown List (pre-HTML5)</p>
<form>
<label>My preferred web browser:</leabl>
Unlock document

This preview shows pages 1-3 of the document.
Unlock all 19 pages and 3 million more documents.

Already have an account? Log in
<select>
<option> -- select an option -- </option>
<option value="Internet Explorer">Internet Explorer</option>
<option value="Firefox">Firefox</option>
<option value="Chrome">Chrome</option>
<option value="Safari">Safari</option>
</select>
</form>
<br>
<br>
</body>
</html>
HTML 5 new input types
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=utf-8">
<title>HTML5 Input Types</title>
<style>
p {
font-weight: bold;
}
</style>
</head>
Unlock document

This preview shows pages 1-3 of the document.
Unlock all 19 pages and 3 million more documents.

Already have an account? Log in
<body>
<h1>HTML5 Input Types - Examples</h1>
<p>Input Type Number</p>
<form>
Quantity (between 1 and 5):
<input type="number" name="quantity" min="1" max="5">
</form>
<br>
<hr>
<p>Input Type Number</p>
<form>
Quantity:
<input type="number" name="points" min="0" max="100"
step="10" value="30">
</form>
<br>
<hr>
<p>Input Type Color</p>
<form>
Select your favorite color:
<input type="color" name="favcolor">
</form>
<br>
<hr>
<p>Input Type Range</p>
<form>
Unlock document

This preview shows pages 1-3 of the document.
Unlock all 19 pages and 3 million more documents.

Already have an account? Log in

Get access

Grade+
$40 USD/m
Billed monthly
Grade+
Homework Help
Study Guides
Textbook Solutions
Class Notes
Textbook Notes
Booster Class
10 Verified Answers
Class+
$30 USD/m
Billed monthly
Class+
Homework Help
Study Guides
Textbook Solutions
Class Notes
Textbook Notes
Booster Class
7 Verified Answers

Related Documents

Related Questions