Après avoir suivi, vous pouvez suivre ses informations dynamiques en temps opportun
Cours dans la section correspondante:Lien HTML
<a href="url" target=""></a> url鏈接地址 target 打開方式,有4種打開方式 _blank _parent _self _top
2016-11-290個(gè)贊
Cours dans la section correspondante:élément d'en-tête HTML
<head> 元素是所有頭部元素的容器。在head元素標(biāo)簽內(nèi)容中,包含<title>、<base>、<link>、<meta>、<script> 以及 <style>
2016-11-290個(gè)贊
Cours dans la section correspondante:HTML-CSS
css 層疊樣式表 css的使用方法 1.行內(nèi)樣式 2.內(nèi)聯(lián)樣式 3.外部樣式
2016-11-290個(gè)贊
Cours dans la section correspondante:Image HTML
<img src="" alt=""> src:地址 alt:圖像替代文本,供探索引擎抓取使用 height:圖像高度 width:圖像寬度 ismap:為圖像定義為服務(wù)器端圖像映射
2016-11-290個(gè)贊
Cours dans la section correspondante:Tableau HTML
表格(table) <caption></caption>---標(biāo)題 <th></th>----表頭 <tr></tr>----行 <td></td>----單元格
2016-11-290個(gè)贊
Cours dans la section correspondante:Liste HTML
無序列表 <ul></ul> 有序列表 <ol></ol> 自定義列表<dl></dl>
2016-11-290個(gè)贊
Cours dans la section correspondante:HTML+CSS Facile à démarrer avec les liens d'ancrage
錨點(diǎn)鏈接 <a name="top">標(biāo)題</a> <p>內(nèi)容</p> <a href="#top">返回頂部</a> 注意,內(nèi)容有很多,出現(xiàn)滾動(dòng)條的效果就會(huì)很明顯!
2016-12-050個(gè)贊
Cours dans la section correspondante:Bloc HTML
內(nèi)聯(lián)元素:<a>、<img>、<td>、<span>、<b>
2016-11-290個(gè)贊
Cours dans la section correspondante:Mise en page HTML
colspan="" rowspan="" 使用表格布局要了解這倆個(gè)的用法
2016-11-290個(gè)贊
Cours dans la section correspondante:Formulaire d'inscription simple HTML+CSS
表單: <form> 表單元素,文本框,密碼框,文本域等 </form> 表單元素 1.文本框 <input type="text" name="name" id=1> 2.隱藏域 <input type="hidden" name="hid" id=2> 3.文本域 <textarea name="content"></textarea> 4.單選按鈕 <input type="radio" name="radio" value="radio" /> 5.復(fù)選框 <input type="checkbox" name="checkbox" value="checkbox" /> 6.下拉框 <select name="select"></select> 7.上傳文件 <input type="file"> 8.按鈕 提交:submit 重置:reset 提交:button
2016-12-050個(gè)贊
<!--有序列表--> <ol> <li>中國</li> <li>美國</li> <li>日本</li> </ol> <!--無序列表--> <ul> <li>北京</li> <li>上海</li> <li>南京</li> </ul>
2016-12-050個(gè)贊
Cours dans la section correspondante:Formulaire HTML
<form action="" method=""> </form> action 表單提交到什么位置 method 表單的提交方式 post或者get
2016-11-290個(gè)贊
Cours dans la section correspondante:Cadre HTML
<iframe src="URL"></iframe> URL指向不同的網(wǎng)頁 <IFRAME>用于設(shè)置文本或圖形的浮動(dòng)圖文框或容器。 BORDER <IFRAME BORDER="3"></IFRAME> 設(shè)定圍繞圖文框的邊緣寬度 FRAMEBODER <IFRAME FRAMEBODER="0"></IFRAME> 設(shè)置邊框是不否為3維(0=否,1=是) HEIGHT,WIDTH <IFRAME HEIGHT="31" WIDTH="88"></IFRAME> 設(shè)質(zhì)邊框的寬度和高度 SCROLLING <IFRAME SCROLLING="NO"></IFRAME> 是否有滾動(dòng)條(YES,NO,AUTO)
2016-11-290個(gè)贊
行內(nèi)樣式:<p style="color:yellow">php中文網(wǎng)</p> 內(nèi)聯(lián)樣式:<style type="text/css"> body{ font-size: 20px;color: red;font-weight: bold; } </style> 外部樣式 :<link rel="stylesheet" href="main.css"> 引入外部的main.css
2016-12-050個(gè)贊
Cours dans la section correspondante:Couleurs et catégories HTML
顏色名--------color:red; rgb格式-------color:rgb(255,0,0); 16進(jìn)制--------color:#ff0000;
2016-11-290個(gè)贊