初识HTML
前端三个使用工具:
- HBbuilder
- VsCode
- WebStrome
chatset编码都是用的:UTF-8; title标签:页面名 button:按钮
单表签和双标签 :双标签有结尾; </标签名>:单表签 <标签名>内容</标签名>:双标签
页面的size大小是:1-7;
<h1>----------------<h7>:标题
<b></b>:文本斜体
<i></i>:加粗
<a href="htttps://www.xxx.com"></a>:页面跳转
<a href="htttps://www.xxx.com" traget="_blank"></a>
<a href="htttps://www.xxx.com" traget="_self"></a>
列表标签:
<ul>
<li></li>
<li></li>
<li></li>
</ul>
有序标签
<oi>
<li></li>
<li></li>
<li></li>
</oi>
图片标签
宽度,高度,框,图片位置
<img width="40px" height="40px" border="1" src="图片地址" alt="图片信息"/>
属性的定义
color:颜色 width:宽度 heigh:高度
表格
表格样式,由table封住,tr,td控制表格,设定一些剧中,边框,长宽等等; 行合并关键字:colspan 列合并关键字:rowspan 行列可同时合并
<table alight="center" border="1" width="50" height="50" cellspacing="0">
<tr alight="right">
<td></td>
<td></td>
</tr>
</table>
iframe 框架标签
<iframe src="xxxxxx.html" widht="500" height="400"></iframe>
一些按钮
单选框--三个都用一个name属性
<input type="radio" name="xxx"/>男
多选框
<input type="checkbox" >xxxx
国籍
<select>是特殊的存在,只能自己写
<option>选择</option>
<option>中国</option>
<option>日本</option>
<option>美国</option>
</select>
表单
<form></form>
文本域
<textarea></textarea>标签不可换行
|