<boby> 内容 boby>
是开始标签,
是结束标签
是单标签
开始标签中可以带有属性,如id属性相当于一个唯一标识符<html>
<head>
页面
head>
<boby>
hello
boby>
html>
标签,此标签是“顶级标签”,其余标签都是它的子标签DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documenttitle>
head>
<body>
body>
html>
定义文件类型,方便服务器识别,值是html,表示当前文件是一个HTML5版本的文件
定义字符编码方式,没有就可能出现乱码选中文字 Ctrl+w生成
一共六个
<h1> 一级标题 h1>
<h2> 二级标题 h2>
<h3> 三级标题 h3>
<h4> 四级标题 h4>
....
每一个p标签就是一个段落,没有缩进
html中的中文文字间输入多个空格相当于一个空格
html中的换行符("/n")无效,只相当于一个空格
<p>
根据国家有关法律法规和政策文件,近期审计署审计发现,中国石油天然气
集团有限公司下属燃料油公司(以下简称燃料油公司)存在倒卖进口原油问
题。
按照党中央、国务院部署,国务院联合调查组依法依规、客观公正、实
事求是开展了
核查调查。
p>
<br/>
<strong>加粗strong>
<b> b>
<em>倾斜em>
<i> <i>
<del>删除线del>
<s> s>
<ins>下划线ins>
<u> u>
<img src = "图片的相对路径/绝对路径/网络路径">
/
\
,也支持/
\
要用\\
表示./
表示当前路径,../
表示当前路径的上级路径
<img src = "./image/1.jpg">或
<img src = "image/1.jpg">
<img src = "C:/Users/86188/Documents/前端三剑客/image/1.jpg">
无论在那个目录下都能找到,不建议,代码的可移植性不强
<img src = "https://img-s-msn-
com.akamaized.net/tenant/amp/entityid/AATbzvL.img?
h=1080&w=1920&m=6&q=60&o=f&l=f&x=283&y=248">
属性名 | 作用 |
---|---|
title | 鼠标放在图片上显示说明 |
height | 高度 |
width | 宽度 |
alt | 如果图片加载不出来,就显示文字;如果图片加载出来了,对显示效果没有影响 |
<a href = "路径">显示名字a>
<a href = "https://blog.csdn.net/gjwloveforever?type=blog"
target = "_blank"> 我的博客 a>
<a href = "./1-18.html" target = "_blank"> 内部链接 a>
<a href = "#"> 空链接 a>
<a href = "./image/test.zip">下载链接a>
<a href="https://blog.csdn.net/gjwloveforever?type=blog">
<img src="./image/1.jpg">a>
<style>
p{
height: 1000px;
}
style>
<a href = "#one"> 济南 a>
<a href = "#two"> 青岛 a>
<a href = "#three"> 淄博 a>
<p id = "one">
济南 <br/>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Cum nam ipsum voluptatibus repellat. Aspernatur, ullam
possimus consequuntur soluta et aut vero magnam? Aut,
beatae ad sequi facere ipsa dolor magnam?
p>
<p id = "two">
青岛 <br/>
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Unde, cum et totam quas explicabo vero. Exercitationem
rerum suscipit nesciunt odit ipsa, perferendis vero harum
officiis neque minus animi magnam aliquam?
p>
<p id = "three">
淄博 <br/>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Ea eaque deleniti provident veniam nam laudantium tempora
atque voluptatum consectetur cumque! Cumque laboriosam
molestias veritatis qui sequi hic rerum labore eum.
p>
<table width = "500px" height = "200px" border = "1px" cellspacing = "0">
<tr>
<th> 城市名 th>
<th> 位置 th>
<th> GDP(亿) th>
tr>
<tr>
<td> 鹤岗 td>
<td rowspan = "2"> 黑龙江 td>
<td> 1200 td>
tr>
<tr>
<td>大庆td>
<td> 1600 td>
tr>
<tr>
<td> 三亚 td>
<td> 海南 td>
<td> 2600 td>
tr>
<tr>
<td> 南通 td>
<td> 江苏 td>
<td> 10600 td>
tr>
table>
标签 | |
---|---|
table | 表示整个表格 |
tr | 表示表格的一行 |
td | 表示表格的一个单元格 |
th | 表示表头单元格,会加粗 |
rowspan = “n” | 跨行合并 |
colspan = “n” | 跨列合并 |
<h3>无序列表h3>
<ul>
<li>白山li>
<li>四平li>
<li>公主岭li>
<li>延庆li>
ul>
<h3>有序列表h3>
<ol>
<li>白山li>
<li>四平li>
<li>公主岭li>
<li>延庆li>
ol>
<dl>
<dt>辽宁dt>
<dd> 铁岭dd>
<dd> 沈阳dd>
<dd> 辽阳dd>
<dd> 营口dd>
dl>
属性 | |
---|---|
type | 控制表单控件的类型 |
name | 主要用于单选按钮 |
checked | 默认被选中 checked = “checked” |
value | input中的默认值 |
<input type="text"> 一般用于用户名,输入内容可见
<input type="password"> 用于密码,输入内容不可见
<input type="radio" name="sex" checked="checked">男
<input type="radio" name="sex">女
<input type="checkbox">石家庄
<input type="checkbox">邯郸
<input type="checkbox">唐山
<input type="button" value="我是按钮">
<input type="file">
点击文字也可以选中 选框
input标签中的id属性值和label标签中的for属性值一致
<input type="radio" name="sex" checked="checked" id="male"> <label for="male">男label>
<input type="radio" name="sex" id="female"> <label for="female">女label>
下拉菜单
搭配option标签使用,option标签中的select属性表示默认选中,若select属性没有复制,默认选中第一个
<select>
<option> 保定option>
<option> 廊坊option>
<option> 邢台option>
<option selected = "selected"> 秦皇岛option>
<option> 张家口option>
select>
文本框
<textarea>文本框的初始内容textarea>
<div>
<span> 鹤壁 span>
<span> 濮阳 span>
<span> 平顶山 span>
div>
<div>
<span> 安阳 span>
<span> 商丘 span>
<span> 洛阳 span>
div>