导航:首页 > 编程语言 > html5页面代码

html5页面代码

发布时间:2023-08-19 05:20:46

『壹』 HTML5的代码有没有大神帮我做一下

<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title></title>
<styletype="text/css">
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,text

area,p,blockquote,th,td{margin:0;padding:0;}
body{background:#fff;color:#555;font-size:14px;font-family:Verdana,Arial,Helvetica,sans-serif;}
td,th,caption{font-size:14px;}
h1,h2,h3,h4,h5,h6{font-weight:normal;font-size:100%;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
a{color:#555;text-decoration:none;}
a:hover{text-decoration:none;}
img{border:none;}
ol,ul,li{list-style:none;}
input,textarea,select,button{font:14pxVerdana,Helvetica,Arial,sans-serif;}
table{border-collapse:collapse;}
html{overflow-y:scroll;}

.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
.clearfix{*zoom:1;}

.publish{
margin:0auto;
width:1000px;
overflow:hidden;
}
header{
height:60px;
background:#ccc;
border-radius:5px;
text-align:center;
}
.content{
margin-top:20px;
margin-bottom:20px;
height:300px;
border-radius:5px;
}
article{
width:700px;
height:300px;
float:left;
background:#123bad33;
}
articleh3{
line-height:40px;
width:95%;
height:40px;
border-radius:3px;
margin:0auto;
font-weight:bolder;
background:#dbf;
}
articlesection{
width:95%;
margin:10pxauto;
height:240px;
background:#00ff004f;
}
aside{
height:298px;
width:248px;
float:right;
border:1pxsolid#000;
border-bottom-right-radius:5px;
border-top-right-radius:5px;
}
footer{
height:40px;
text-align:center;
line-height:40px;
font-size:12px;
background:#fda;
}
</style>
</head>
<body>
<headerclass="publish">页头</header>
<divclass="publishcontentclearfix">
<article>
<h3>专题标题</h3>
<section>专题内容</section>
</article>
<aside>
侧边栏
</aside>
</div>
<footerclass="publish">页尾版权所有&;XuTel:xxxxxxxxx</footer>
</body>
</html>

Html5语义化标签:

头部<header>
专题文章<article>
侧边栏<aside>
尾部<footer>

『贰』 HTML5的代码标准格式是什么

你想问的应该是,在搭建一个HTML文件时,基本的文件结构是什么样子吧?

标准的HTML文件由“文档声明、文件头、文件体”组成。

对于HTML5,文档声明也应该采取HTML5.0的声明方式,具体代码如下:

<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>HTML5学堂(码匠) &言成科技联合出品</title>

<meta name="viewport" content="width=device-width,user-scalable=no">

<link rel="stylesheet" href="../css/reset.css">

</head>

<body>

<div>具体内容</div>

</body>

</html>

在html标签当中包含head标签和body标签两种,而head标签表示的是文件头,body标签表示文件体,文件头当中需要包含“字符编码”(head标签中的第一行)、“标题”(title标签)、“其他元信息”(除了字符编码外的其他meta),而文件体当中书写的具体代码就是在网页当中会显示的内容。

此外,在文件头部或文件体当中还可以使用link标签引入CSS文件,或者使用script标签引入JS文件。

关于文档声明,在传统的HTML4当中,有另外三种声明方法,请详见《文档声明 DOCTYPE常见的文档类型》

『叁』 找一点html5写的源代码案例,供初学者学习

首先准备好11张图片,放到img文件夹下供调用

阅读全文

与html5页面代码相关的资料

热点内容
使用土地的有关证明文件包含哪些 浏览:493
数据标注哪里可以接 浏览:482
在家自学编程下什么学 浏览:705
最近很火的app软件是什么软件 浏览:862
ai文字工具 浏览:157
兰博玩游戏路径怎么选择正确文件 浏览:972
淘宝直通车恢复老版本 浏览:510
播放草莓的图片我都文件 浏览:55
微信大文件打不开 浏览:767
家装合同准备哪些文件 浏览:296
应用bat合并excel文件 浏览:984
迅雷影音文件夹 浏览:109
makefile的文件路径 浏览:392
计算机程序文件名扩展名为 浏览:982
网络游戏推广策划案 浏览:609
替换所有文件内容的代码 浏览:960
不是常用数据模型有哪些 浏览:426
aspcms版本号 浏览:835
安卓怎么用数据流量下载软件 浏览:553
大众手动空调数据流通道号是多少 浏览:303

友情链接