首页 > 代码库 > HTML
HTML
基础 | ||
<p> <br > <h1> 属性: <h1 align="center"> <!-- 单行注释 --> <i> <body bgcolor=””> | 段落,换行依赖于浏览器 换行
注释 斜体字 背景 | |
格式化 | ||
<pre></pre> | 会遵从格式化 | |
<a href>add 属性:target="_blank" 同一页面的链接<a name=”名字”> style="text-decoration:none"> | add会变成超链接 打开新窗口
定位到本地 链接下横线没有 | |
<acronym title="World Wide Web">WWW</acronym> | WWW。鼠标点上会显示详情 | |
框架 | ||
<frameset> 属性 cols="25%,50%,25%" rows=”” | 定义框架集
竖 横 | |
<frame> 属性 src=http://www.mamicode.com/”” | 窗口
外部定义窗口 | |
表格 | ||
<table> border <tr> <td> <caption> <td> 均有的属性: bgcolor background align | 表格 不设置它的值,没有边界 行 列 标题 表头 | |
列表 | ||
ul: li: ol: | 无序 单个列表项 有序默认为1开始 可设置start=”” | |
表格 |
| |
form action text password checkbox radio <select> <option value=http://www.mamicode.com/> selected="selected"> <textarea cols="30" rows="5"> <input type="button" value="http://www.mamicode.com/Hello world!"> <fieldset> <legend>健康信息
| 表单 转向谁处理 文本 密码 复选框 单选框 使用checked="checked" 默认选中 下拉列表 可使用改变默认 文本域 列 行 按钮 表格加边框 边框显示文本
| |
图像 | ||
img src=http://www.mamicode.com/” ” align width="50" height="50" alt="向左转" <a href="http://www.mamicode.com/"> | 图片路径 图像和文本的相对位置 图片长宽 图像无法正常显示的时候 在<img>添加它后面即可为图像添加链接 | |
样式CSS | ||
<head><<style type="text/css"> <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/.css" > | 文内添加样式 外部使用链接 | |
head属性 | ||
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <meta name="author" content="w3school.com.cn"> <meta http-equiv="Refresh" content="5;url=http://www.w3school.com.cn" /> | 添加编码信息
键值对
自动刷向新的地址,5秒 | |
JavaScript | ||
<script type="text/javascript"> document.write("<h1>Hello World!</h1>") </script> |
| |
HTML