This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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"> |
NewerOlder