1 基础
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
- <html> 与 </html> 之间的文本描述网页
- <body> 与 </body> 之间的文本是可见的页面内容
- <h1> 与 </h1> 之间的文本被显示为标题
- <p> 与 </p> 之间的文本被显示为段落
2 页面有个点我的链接.
实际上为<a>press me</a> 应加上属性点到哪里去了
<html>
<body>
<a href="http://www.w3school.com.cn">
点我</a>
</body>
</html>
3 页面显示一个图像
<img src="w3school.jpg" width="104" height="142" />
4页面浏览器最上方为标题
<h>搜狐-中国最大的门户网站</h>
5html的注释
<!-- This is a comment -->
6换行显示
<p>This is<br />a para<br />graph with line breaks</p>
7插入横线
<p>This is a paragraph</p><hr /><p>This is a paragraph</p>
8背景颜色设置
<html><body style="background-color:yellow"><h2 style="background-color:red">This is a heading</h2><p style="background-color:green">This is a paragraph.</p></body></html>
9不同字体和大小
<body>
<h1 style="font-family:verdana">A heading</h1>
<p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p>
</body>
10居中显示
<body>
<h1 style="text-align:center">This is a heading</h1>
<p>The heading above is aligned to the center of this page.</p>
</body>
11 显示点我,同一页面打开
<a href="http://www.w3school.com.cn/">Visit W3School</a>
12显示点我,再开开一页面打开
<a href="http://www.w3school.com.cn/" target="_blank">Visit W3School!</a>
13
这种样式
<form>First name: <input type="text" name="firstname" /><br />Last name: <input type="text" name="lastname" /></form>
14
这种样式
<form><input type="radio" name="sex" value="male" /> Male<br /><input type="radio" name="sex" value="female" /> Female</form>
15
I have a bike
I have a car
复选框
<form><input type="checkbox" name="bike" />I have a bike<br /><input type="checkbox" name="car" />I have a car</form>
16 显示图像,并且图像不能显示时显示一些信息
<img src="....../boat.gif" alt="Big Boat">
17背景为图像
<body background="http://www.w3school.com.cn/clouds.gif">
已经废弃,使用css
18 颜色
当所有颜色取相等的值时,灰色就可以被显示出来。为了使您更容易地选择合适的灰色,我们为您制作了一幅灰阶色表。
| 灰色 | RGB | HEX |
|---|---|---|
| RGB(0,0,0) | #000000 | |
| RGB(8,8,8) | #080808 | |
| RGB(16,16,16) | #101010 | |
| RGB(24,24,24) | #181818 | |
| RGB(32,32,32) | #202020 | |
| RGB(40,40,40) | #282828 | |
| RGB(48,48,48) | #303030 | |
| RGB(56,56,56) | #383838 | |
| RGB(64,64,64) | #404040 | |
| RGB(72,72,72) | #484848 | |
| RGB(80,80,80) | #505050 | |
| RGB(88,88,88) | #585858 | |
| RGB(96,96,96) | #606060 | |
| RGB(104,104,104) | #686868 | |
| RGB(112,112,112) | #707070 | |
| RGB(120,120,120) | #787878 | |
| RGB(128,128,128) | #808080 | |
| RGB(136,136,136) | #888888 | |
| RGB(144,144,144) | #909090 | |
| RGB(152,152,152) | #989898 | |
| RGB(160,160,160) | #A0A0A0 | |
| RGB(168,168,168) | #A8A8A8 | |
| RGB(176,176,176) | #B0B0B0 | |
| RGB(184,184,184) | #B8B8B8 | |
| RGB(192,192,192) | #C0C0C0 | |
| RGB(200,200,200) | #C8C8C8 | |
| RGB(208,208,208) | #D0D0D0 | |
| RGB(216,216,216) | #D8D8D8 | |
| RGB(224,224,224) | #E0E0E0 | |
| RGB(232,232,232) | #E8E8E8 | |
| RGB(240,240,240) | #F0F0F0 | |
| RGB(248,248,248) | #F8F8F8 | |
| RGB(255,255,255) | #FFFFFF |
如需查看基于红色从 0 到 255 变化时的 16384 种不同的颜色,请单击下面的十六进制值或者 rgb 颜色值:
| Color | Color HEX | Color RGB |
|---|---|---|
| #000000 | rgb(0,0,0) | |
| #FF0000 | rgb(255,0,0) | |
| #00FF00 | rgb(0,255,0) | |
| #0000FF | rgb(0,0,255) | |
| #FFFF00 | rgb(255,255,0) | |
| #00FFFF | rgb(0,255,255) | |
| #FF00FF | rgb(255,0,255) | |
| #C0C0C0 | rgb(192,192,192) | |
| #FFFFFF | rgb(255,255,255) |
19插入表格,还有序列号
<table border="1"> <tr> <th>someheader</th> <th>someheader</th> </tr> <tr> <td>sometext</td> <td>sometext</td> </tr> </table>
<ul>
<li>First item</li>
<li>Next item</li>
</ul>
<ol> <li>First item</li> <li>Next item</li> </ol>
20
| This is some text. This is some text. This is some text. This is some text. This is some text. | Another text. Another text. Another text. Another text. Another text. Another text. Another text. |
是不带边框的表格table
<table border="0" width="100%" cellpadding="10">
<tr>
<td width="50%" valign="top">
This is some text. This is some text. This is some text. This is some text. This is some text.
</td>
<td width="50%" valign="top">
Another text. Another text. Another text. Another text. Another text. Another text. Another text.
</td>
</tr>
</table>
21ubuntu那样页面并行显示
<frameset cols="25%,50%,25%">
<frame src="/example/html/frame_a.html">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>
22竖着显示
<frameset rows="25%,50%,25%">
<frame src="/example/html/frame_a.html">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>
23框架的应用可以做成QT的那种多界面应用
本文介绍了HTML的基础知识,包括基本标签的使用、页面布局、链接、图片插入等,还讲解了如何利用表格进行内容组织及简单的样式设置。
2728

被折叠的 条评论
为什么被折叠?



