<!DOCTYPE html><html><head><metacharset="ISO-8859-1"><title>Html</title><style type="text/css">header {
background-color:blue;
color:white;
text-align:center;
padding:6px;
}
nav {
line-height:40px;
background-color:yellow;
height:500px;
width:100px;
float:left;
padding:5px;
}
section {
width:350px;
float:left;
padding:10px;
}
footer {
background-color:blue;
color:white;
text-align:center;
padding:6px;
clear:both;
}
</style></head><body><header><h1>Tutorial</h1></header><nav>
C++<br>
Java<br>
C#<br></nav>
"WebContent/13 html5 header nav footer and section f.mp4"
<section><h2>Code Tutorials</h2><p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></p></section><footer>
Copyright example.com
</footer></body></html>
Searches related to html5 section header footer nav
html5 header footer template
html5 header footer example
html5 header footer main
HTML5 section • header • footer
HTML5 section, aside, header, nav, footer elements
<!DOCTYPE html><html><head><metacharset="ISO-8859-1"><title>Html</title><style type="text/css">#header {
background-color:blue;
color:white;
text-align:center;
padding:6px;
}
#navigation {
line-height:40px;
background-color:yellow;
height:500px;
width:100px;
float:left;
padding:5px;
}
#section {
width:350px;
float:left;
padding:10px;
}
#foot {
background-color:blue;
color:white;
text-align:center;
padding:6px;
clear:both;
}
</style></head><body><divid="header"><h1>Tutorial</h1></div><divid="navigation">
C++<br>
Java<br>
C#<br></div><divid="section"><h2>Code Tutorials</h2><p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p></p></div><divid="foot">
Copyright example.com
</div></body></html>
<!DOCTYPE html><html><head><metacharset="ISO-8859-1"><title>Javascript IF ... ELSE</title><script type="text/javascript">/*== is equal to=== equal value and equal type!= is not equal to!== not equal value or not equal type> is greater than< is less than>= is greater than or equal to<= is less than or equal to*/var age =20;
if (age ==18) {
document.write("the age is == 18");
}
elseif (age >18) {
document.write("the age is > 18");
}
else {
document.write("the age is <= to 18");
}
</script></head><body></body></html>
<!DOCTYPE HTML><html><head><title>My HTML</title><metaname="description"content="HTML5 Tutorial For Beginners . Basic Structure of HTML Page."><metaname="keywords"content="HTML, Htmal5, Tutorials, CSS, XML, XHTML, JavaScript"><metaname="auther"content="Auther name"><metaname="robot"content="index,follow"></head><body><oltype="a"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ol><oltype="A"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ol><oltype="I"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ol><oltype="i"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ol><oltype="i"><li>John</li><ul><li>Tea</li><li>Coffee</li></ul><li>Tim</li><li>Tom</li><li>Jack</li></ol><ulstyle="list-style-type: none"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ul><ulstyle="list-style-type: square"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ul><ulstyle="list-style-type: desc"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ul><ulstyle="list-style-type: circle"><li>John</li><li>Tim</li><li>Tom</li><li>Jack</li></ul><dl><dt>Term</dt><dd>- Description of the term</dd><dt>Term</dt><dd>- Description of the term</dd></dl></body></html>