導航:首頁 > 編程語言 > 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頁面代碼相關的資料

熱點內容
fme可以打開哪些文件 瀏覽:339
好看的qq密碼 瀏覽:293
安卓唯一標識有哪些 瀏覽:243
win10ime 瀏覽:271
手機號大數據保護停機是什麼意思 瀏覽:81
兩個蘋果手機怎麼隔空投送app 瀏覽:903
ps修改有褶皺的文件 瀏覽:417
javadbfreader 瀏覽:307
蘋果手機數字代碼是什麼 瀏覽:66
驅動程序順序安裝腳本 瀏覽:665
word文件里怎樣查重 瀏覽:219
mx5系統基帶版本 瀏覽:184
ntlea全域通win10 瀏覽:171
qq怎麼查看別人的收藏 瀏覽:135
地震三參數matlab程序 瀏覽:57
怎樣給優盤文件加密軟體 瀏覽:7
收拾文件有哪些小妙招 瀏覽:431
pdf文件去底網 瀏覽:253
win10重裝系統需要格式化c盤嗎 瀏覽:424
路由器trx文件 瀏覽:655

友情鏈接