1、标签
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>标签练习</title></head><body background="未标题-1.jpg" style="background-repeat:repeat-x" bgcolor="#999999" text="#0000FF" rightmargin="100" topmargin="70"><a name="name"><strong>(锚点设置)</strong>让下面所有文字的size都为5<font size="5"><br /><b>字体加粗方式1b标签</b><br /><strong>字体加粗方式2strong标签</strong><br /><i>字体倾斜方式1i标签</i><br /><em>字体倾斜方式2em标签</em><br /><u>字体加下划线u标签</u><br /><center>居中显示center标签</center><p>分段</p><p>显示p标签</p>空 格是NBspace<br />回车是br标签<br>或br斜杠标签<br /><img src="/static/imghwm/default1.png" data-src="../aaa/0019.jpg" class="lazy" style="max-width:90%" title="这是一张头像" alt="这是一张qq头像" /><strong>(图片层标签)</strong><div title="司令部">中国人民解放军总参谋部</div><strong>(层标签)</strong><span title="肯德基标语" style=" border-bottom-style:double">成功者总是不约而同的配合时代的需要,</span><ol>有序列表ol标签<li>每一行都是li标签</li><li>这是第二行</li><li>第三行</li><li>第四行,自带序号</li></ol><ul>无序列表ul标签<li>每一行都是li标签</li><li>这是第二行</li><li>第三行</li><li>第四行,不带序号</li></ul><h1 id="h-h-标签">h1-h6标签</h1><h2 id="表示重要性依次递减">表示重要性依次递减</h2><h3 id="自带换行功能-大小不受外界font的影响">自带换行功能,大小不受外界font的影响</h3><a href="http://www.baidu.com/">标签,超链接</a><a href="#name"><strong>(锚点设置)</strong>返回最顶</a></font></body></html>
2、表格
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body><table width="100%" border="0" cellspacing="0" cellpadding="0"><font face="楷体"> <tr align="center"> <td><a target="_top"<strong>(在框架中让整个frameset页面跳转至某个页面)</strong> style="text-decoration:none" href="http://www.autohome.com.cn/?pvareaid=100519" target="_blank" ><font color="#000000" >汽车之家</font></a></td> <td>易车网</td> <td>太平洋汽车</td> <td>安居客</td> <td>折800</td> <td><font color="#00CC00">苏宁易购</font></td> </tr> <tr align="center"> <td>美拍</td> <td>人民•新华</td> <td>赶集网</td> <td>当当网</td> <!-- 图片热点 --> <td><img src="/static/imghwm/default1.png" data-src="RHXT{2I~~KPN`I12SZN49OF.png" class="lazy" title="这是图片" usemap="#fedian" name="name1" alt="HTML-标签与表格 、框架_html/css_WEB-ITnose" ><map name="fedian"><area shape="rect" coords="0,0,10,10"<strong>(大小不能超过图片的大小)</strong> href="http://www.tuniu.com/?p=14201&cmpid=mkt_03026001&utm_campaign=daohang&utm_source=hao.360.cn&utm_medium=display"></map>途牛旅游网</td> <td>1号店</td> </tr> <tr align="center"> <td>珍爱婚恋网</td> <td>梦芭莎</td> <td>亚马逊</td> <td>艺龙网</td> <td>去哪网</td> <td>美丽说</td> </tr> <tr align="center"> <td>美团网</td> <td>乐视视频</td> <td>唯品会</td> <td><font color="#FFFF00">聚美优品</font></td> <td>搜房网</td> <td>蘑菇街</td> </tr> <tr align="center"> <td>猎聘网</td> <td>1药网</td> <td>陆金所理财</td> <td>六间房</td> <td>携程机票</td> <td>优酷网</td> </tr> </font> <!--网页嵌套 --></table><table width="200" border="1"><tr><td><iframe src="http://www.baidu.com" width="150" style="max-width:90%" frameborder="0" scrolling="auto"></iframe></td></tr></table></body></html>
3、框架
1、frameset<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><frameset rows="100,*" cols="200,*" framborder="1"><frame src="Untitled-1.html" noresize="noresize" scrolling="auto"><frame src="Untitled-2.html" noresize="noresize" scrolling="auto"><frame name="你好"src="http://www.baidu.com" noresize="noresize" scrolling="auto" ><frame src="http://www.qq.com" noresize="noresize" scrolling="auto" ></frameset><noframes></noframes></html>2、iframe<table width="200" border="1"><tr><td><iframe src="http://www.baidu.com" width="150" height="150" frameborder="0" scrolling="auto"></iframe></td></tr></table>

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
