最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

常用html元素總結(jié)包括基本結(jié)構(gòu)、文檔類型、頭部、主體等等

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 14:44:43
文檔

常用html元素總結(jié)包括基本結(jié)構(gòu)、文檔類型、頭部、主體等等

常用html元素總結(jié)包括基本結(jié)構(gòu)、文檔類型、頭部、主體等等:1.基本結(jié)構(gòu): 代碼如下: <!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd> <html> <head> <meta http-equiv=Conte
推薦度:
導(dǎo)讀常用html元素總結(jié)包括基本結(jié)構(gòu)、文檔類型、頭部、主體等等:1.基本結(jié)構(gòu): 代碼如下: <!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd> <html> <head> <meta http-equiv=Conte

1.基本結(jié)構(gòu):

代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
</body>
</html>

2.文檔類型:

(1)HTML 4.01

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

(2)HTML5

<!DOCTYPE html>

(3)XHTML 1.0

代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

3.頭部:
(1)字符集

代碼如下:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

(2)引入JS

代碼如下:
<script language="javascript"></script>
<script language="javascript" src=""></script>
<script language="javascript">var u="__URL__";var a="__APP__";</script>
<script language="javascript" src="__PUBLIC__/js/jquery-1.8.1.min.js"></script>

(3)引入CSS

代碼如下:
<style type="text/css"></style>
<link rel="stylesheet" href="" type="text/css">

(4)設(shè)置默認(rèn)跳轉(zhuǎn)

代碼如下:
<base href="" />
<base target="_blank" />

(5)設(shè)置搜索引擎相關(guān)信息

代碼如下:
<meta name="description" content=",," />
<meta name="keywords" content=",," />

4.主體:

(1)基本內(nèi)容

代碼如下:
<body onload="">
<div id="" class=""></div>
<div style="clear:both;">

(2)表單
GET方式提交:<form id="" action="" method="post"></form>
POST方式提交:<form id="" action="" method="get"></form>

攜帶文件提交:<form id="" action="" method="post" enctype="multipart/form-data"></form>

首頁常用:

代碼如下:
<input id="username" name="username" class="" type="text" placeholder="用戶名"></input>
<input id="password" name="password" class="" type="password" placeholder="密碼"></input>
<input id="login_button" class="button" type="button" value="登錄" onclick=""></input>
<input id="register_button" class="button" type="button" value="注冊" onclick="location.href=''">


文本域:<input id="" name="" class="" type="text"></input>

密碼域:<input id="" name="" class="" type="password"></input>
普通按鈕:<input id="" name="" class="" type="button"></input>
單選按鈕:<input id="" name="" class="" type="radio"></input>
多選按鈕:<input id="" name="" class="" type="checkbox"></input>

為了顯示上傳文件名:

<input id="" name="" class="" type="text" onchange="document.getElementById('').value=this.value"></input>
文件上傳:<input id="" name="" class="" type="file"></input>
隱藏域:<input id="" name="" class="" type="hidden"></input>
提交按鈕:<input id="" name="" class="" type="submit"></input>
圖片提交按鈕:<input id="" name="" class="" type="image"></input>
重置按鈕:<input id="" name="" class="" type="reset"></input>

多行文本域:<textarea cols="" rows="" id="" name=""></textarea>

下拉菜單:

代碼如下:
<select name="" size="" multiple>
<option value="" selected></option>
<option value=""></option>
</select>

(3)超鏈接
點擊跳轉(zhuǎn)到JS:<a class="" href="#" id="" onclick="location.href=''"></a>
空超鏈接(點擊跳到頁首):<a href="#"></a>
空超鏈接(點擊不動):<a href="javascript:void(0);"></a>

圖片超鏈接:<a href=""><img width="" height="" src=""></a>

(4)圖片
普通圖片:<img src="" >

設(shè)置寬高的圖片(按照比例縮小,文件大小不變):<img width="" height="" src="">

(5)表格

代碼如下:
<table border="1" cellpadding="10" cellspacing="0">
<tr>
<th width="100px">A</th>
<th width="200px">B</th>
</tr>
<tr>
<td>A</td>
<td>B</td>
</tr>
</table>

(6)列表

無序列表:

代碼如下:
<ul type="disc">
<li>第一點</li>
<li>第二點</li>
</ul>
<ul type="square">
<li>第一點</li>
<li>第二點</li>
</ul>
<ul type="circle">
<li>第一點</li>
<li>第二點</li>
</ul>

有序列表:

代碼如下:
<ol type="1">
<li>第一點</li>
<li>第二點</li>
</ol>
<ol type="a">
<li>第一點</li>
<li>第二點</li>
</ol>
<ol type="A">
<li>第一點</li>
<li>第二點</li>
</ol>
<ol type="i">
<li>第一點</li>
<li>第二點</li>
</ol>
<ol type="I">
<li>第一點</li>
<li>第二點</li>
</ol>

(7)多媒體

滾動字幕:<marquee></marquee>

背景音樂:<bgsound></bgsound>

音頻、視頻、flash、mpeg等:<embed></embed>

(8)行控制

標(biāo)題:<hn></hn>

段落:<p></p>

換行:<br>

水平線:<hr>

5.框架

代碼如下:
<frameset rows="50% 50%">
<farme src="">
<farme src="">
</frameset>

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

常用html元素總結(jié)包括基本結(jié)構(gòu)、文檔類型、頭部、主體等等

常用html元素總結(jié)包括基本結(jié)構(gòu)、文檔類型、頭部、主體等等:1.基本結(jié)構(gòu): 代碼如下: <!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd> <html> <head> <meta http-equiv=Conte
推薦度:
標(biāo)簽: 文件 文檔 文本
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top