https://doi.org/10.1057/9780230307292Next, let’s cover text publishing tags in HTML5, which allow developers to control text-based content with styling, superscript and subscript, line and word breaks, quotations, abbreviations, citations, and the like.
https://doi.org/10.1007/978-1-349-81738-2These more specialized text-related tags allow HTML5 developers to define their document content without having to resort to using stylesheets for styling purposes, or JavaScript for coding-related activities.
https://doi.org/10.1007/978-3-642-79681-4In this chapter, you learn about list tags, which implement list-based content in HTML, as all of the tags are supported in HTML 4.01, and some in earlier versions of HTML.
https://doi.org/10.1007/978-1-349-16903-0The table tags are inherently semantic because they are clearly used to define tables of data collections and information grids.
https://doi.org/10.1007/978-1-349-07722-9Let’s talk about the tags in HTML5 that allow developers to group elements and control the content’s position.
function setTab(name,cursel){
cursel_0=cursel;
for(var i=1; i<=links_len; i++){
var menu = document.getElementById(name+i);
var menudiv = document.getElementById("con_"+name+"_"+i);
if(i==cursel){
menu.className="off";
menudiv.style.display="block";
}
else{
menu.className="";
menudiv.style.display="none";
}
}
}
function Next(){
cursel_0++;
if (cursel_0>links_len)cursel_0=1
setTab(name_0,cursel_0);
}
var name_0='one';
var cursel_0=1;
var ScrollTime=3000;//循环周期(毫秒)
var links_len,iIntervalId;
onload=function(){
var links = document.getElementById("tab1").getElementsByTagName('li')
links_len=links.length;
for(var i=0; i