This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Page Title</title> | |
<link rel="stylesheet" href="styles/css/main.css" /> | |
</head> | |
<body id="home"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>HTML5 Example Form: Kitchen-Sink</title> | |
</head> | |
<body> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.media-module { | |
width:300px; border:solid;padding:10px;margin:0; | |
} | |
.media-module .main-item { | |
width:100%; height:auto; background:#ccc; | |
} | |
.media-module .caption { | |
font-size:.75em; | |
margin-top:.5em; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Description List (aka. Definition List) | |
more info here: | |
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl | |
you can use mutiple DT's or DD's per list entry | |
--> | |
<dl> | |
<dt>Ira Glass</dt> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
An example of how one might setup the HTML for a site header complete with | |
a meta nav and main site navigation. Source order could be changed, but I consider | |
the H1 and main nav more important than the meta nav, so that's how I ordered things. | |
Styles are added just to give an impression as to how this might be set up | |
visually. | |
--> | |
<!DOCTYPE html> | |
<html lang="en"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Flexbox Demo</title> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id="res_form" action="" method="post" accept-charset="utf-8"> | |
<fieldset> | |
<legend>Guest Information<span>* Indicates required field</span></legend> | |
<label for="state">* State/Territory/Associations</label> | |
<select name="state" required title="Please select a state or territory."> | |
<option value="">select your location</option> | |
<optgroup label="US Territories"> | |
<option value="AS">American Samoa</option> | |
<option value="PR">Commonwealth of Puerto Rico</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table id="example" class="display" border="1"> | |
<!-- in HTML5 the summary, cellspacing, and cellpadding attributes are obsolete/deprecated --> | |
<caption> Global Employees Listing</caption> | |
<thead> | |
<tr> | |
<th scope="col">Name</th> | |
<th scope="col">Position</th> | |
<th scope="col">Office</th> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>test</title> | |
<meta charset="utf-8"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<!-- specialized typefaces can be added to a webpage from external sources --> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>test</title> | |
<meta charset="utf-8"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<style> | |
/* Ideally, this stylesheet should be external and linked to this document. | |
it is embedded here to simplify the demo process */ | |
OlderNewer