标签:提高 一起 概述 属性 header 之间 程序 用户体验 box
<html>
<head>
<title>title</title>
</head>
<body>
<FONT color='red'>Hello World</font><br/>
<font color='green'>Hello World</font>
</body>
</html>
* html:html文档的根标签
* head:头标签。用于指定html文档的一些属性。引入外部的资源
* title:标题标签。
* body:体标签
* <!DOCTYPE html>:html5中定义该文档是html文档
* 注释:<!-- 注释内容 -->
* <h1> to <h6>:标题标签
* h1~h6:字体大小逐渐递减
* <p>:段落标签每段空两行
* <br>:换行标签
* <hr>:展示一条水平线
* 属性:
* color:颜色
* width:宽度
* size:高度
* align:对其方式
* center:居中
* left:左对齐
* right:右对齐
* <b>:字体加粗
* <i>:字体斜体
* <font>:字体标签
* <center>:文本居中
* 属性:
* color:颜色
* size:大小
* face:字体
* 属性定义:
* color:
1. 英文单词:red,green,blue
2. rgb(值1,值2,值3):值的范围:0~255 如 rgb(0,0,255)
3. #值1值2值3:值的范围:00~FF之间。如: #FF00FF
* width:
1. 数值:width='20' ,数值的单位,默认是 px(像素)
2. 数值%:占比相对于父元素的比例
* 代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>大爷第一次学</title>
</head>
<body>
标题
<h1>
<b>序言</b>
</h1>
<h2>
<i>给您的信:</i>
</h2>
段落
<p>
<center><font color="#dc143c" size="6" face="黑体" >天天向上</ font></center>
</p>
<p>
<font color="aqua">好好学习</font>
</p>
横线
<hr color="red" width="30%" align="left"/>
有序列表
<ol type="A">
<li>one</li>
<li>two</li>
</ol>
无序列表
<ul type="square">
<li>one</li>
<li>two</li>
</ul>
超链接
<a href="http://www.baidu.com" target="_blank">从新窗口打开百度</ a><br>
<a href="mailto:v-luobo@qq.com" target="_blank">联系我
<img src="./image/1.jpg" width="500" height="300" alt="联系图 片">
</a>
</body>
</html>
* img:展示图片
* 属性:
* src:指定图片的位置
* 代码:
<!--展示一张图片 img-->
<img src="image/jingxuan_2.jpg" align="right" alt="古镇" width="500" height="500"/>
<!--
相对路径
* 以.开头的路径
* ./:代表当前目录 ./image/1.jpg
* ../:代表上一级目录
-->
<img src="./image/jiangwai_1.jpg">
<img src="../image/jiangwai_1.jpg">
* 有序列表:
* ol:
* li:
* 无序列表:
* ul:
* li:
* a:定义一个超链接
* 属性:
* href:指定访问资源的URL(统一资源定位符)
* target:指定打开资源的方式
* _self:默认值,在当前页面打开
* _blank:在空白页面打开
* div:每一个div占满一整行。块级标签
* span:文本信息在一行展示,行内标签 内联标签
* html5中为了提高程序的可读性,提供了一些标签。
1. <header>:页眉
2. <footer>:页脚
* table:定义表格
* width:宽度
* border:边框
* cellpadding:定义内容和单元格的距离
* cellspacing:定义单元格之间的距离。如果指定为0,则单元格的线会合为一条、
* bgcolor:背景色
* align:对齐方式
* tr:定义行
* bgcolor:背景色
* align:对齐方式
* td:定义单元格
* colspan:合并列
* rowspan:合并行
* th:定义表头单元格,默认加粗居中
* <caption>:表格的标题
* <thead>:表示表格的头部分
* <tbody>:表示表格的体部分
* <tfoot>:表示表格的脚部分
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>注册</title>
</head>
<body>
<form action="" method="post">
<table border="1" align="center" width="50%">
<tr>
<td><label for="username">用户名</label></td>
<td><input type="text" id="username" name="username"></td>
</tr>
<tr>
<td><label for="password">密码</label></td>
<td><input type="password" id="password" name="password"></td>
</tr>
<tr>
<td><label for="email">Email</label></td>
<td><input type="email" id="email" name="email"></td>
</tr>
<tr>
<td><label for="name">姓名</label></td>
<td><input type="text" id="name" name="name"></td>
</tr>
<tr>
<td><label for="phone">手机号</label></td>
<td><input type="text" id="phone" name="phone"></td>
</tr>
<tr>
<td>性别:</td>
<td><input type="radio" name="gender" value="male"> 男
<input type="radio" name="gender" value="female"> 女</td>
</tr>
<tr>
<td><label for="date">出生日期</label></td>
<td><input type="date" id="date" name="birthday"></td>
</tr>
<tr>
<td><label for="checkcode">验证码</label></td>
<td><input type="text" id="checkcode" name="checkcode">
<img src="image/" alt="验证码" >
</td>
</tr>
<tr>
<td colspan="2" align="center"><input type="button" value="注册" ></td>
</tr>
</table>
</form>
</body>
</html>
标签:提高 一起 概述 属性 header 之间 程序 用户体验 box
原文地址:https://www.cnblogs.com/huxiaobai/p/11913981.html