了解一些HTML5的基础知识和CSS基础知识有助于爬虫的学习,在学习这些基础知识之前,首先要安装HBuiderX工具。直接到官网下载标准版即可。
HTML基础
可以到HTML教程学习一下HTML基础知识。
超文本标记语言(英语:HyperText Markup Language,简称:HTML)是一种用于创建网页的标准标记语言。
打开HBuiderX工具,新建项目
在index.html中写入如下代码:
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML基础</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<div class="a">
<h1 id="a">我是标题标签h1</h1>
<h2>我是标题标签h2</h2>
<h3>我是标题标签h3</h3>
<h4>我是标题标签h4</h4>
<h5>我是标题标签h5</h5>
<h6>我是标题标签h6</h6>
<p>YYDS</p>
<p>段落标签</p>
<p>我爱<br />我的<br />祖国</p>
<a href="https://www.baidu.com/" target="_blank">百度</a>
<img src="https://www.baidu.com/img/flexible/logo/pc/result.png" width="60px"/>
<img src="./img/头像.png" width="50px" height="50px"/>
<img src="D:\project\HTML基础\img\头像.png" height="50px" width="50px"/>
<audio controls src="music/1.m4a"></audio><br />
<video controls src="video/puppy_2.mp4" width="400px " height="200px"></video>
</div>
<div class="b">
<ol>
有序列表
<li>海贼王</li>
<li>火影忍者</li>
<li>斗罗大陆</li>
<li>名侦探柯南</li>
</ol>
<ul>
无序列表
<li>王者荣耀</li>
<li>摩尔庄园</li>
<li>和平精英</li>
<li>LOL</li>
</ul>
<iframe src="https://www.chinanews.com/" width="500px" height="500px"></iframe>
</div>
<div class="c">
<tbody>
<tr>
<th>队名</th>
<th>第一节</th>
<th>第二节</th>
<th>第三节</th>
<th>第四节</th>
<th>总分</th>
</tr>
<br />
<tr>
<td>太阳</td>
<td> 16 </td>
<td> 13 </td>
<td> 30 </td>
<td>21</td>
<td>98</td>
</tr>
<br />
<tr>
<td>雄鹿</td>
<td>29</td>
<td>13</td>
<td>35</td>
<td>28</td>
<td>105</td>
</tr>
<br />
</tbody>
<hr />
<b>YYDS</b>
<strong>YYDS</strong>
<i>文字倾斜</i>
<em>文字倾斜</em>
<form>
账号:<input type="tel" /><br />
密码:<input type="password" /><br />
<input type="submit" value="登录">
<input type="reset" value="重置">
</form>
</div>
</body>
</html>
一些快捷键:
CSS基础
可以到CSS基础学习一下CSS基础知识。
通过使用 CSS 我们可以大大提升网页开发的工作效率。
在刚刚创建的项目文件下的css文件夹下新建css文件,在其中写入以下代码:
* {
margin: none;
padding: none;
}
.a {
border: 1px solid red;
}
.b {
border: 1px double blue;
}
.c {
border: 1px dotted green;
}
#a {
color: aqua;
font-family: "宋体";
font-size: 20px;
}
p {
font-size: 30px;
}
.a > h2 {
text-align: center;
}
.b li {
color: blueviolet;
}
h1 ~ h6 {
text-align: center;
}
h1+h2{
font-family: "仿宋";
}
.b > ol > li:nth-child(3) {
color: #FF0000;
}
input[type=submit]{
background-color: #008000;
color: white;
border: none;
}
form {
border: 2px solid black;
width: 400px;
margin: 20px 200px 20px 650px;
padding-left: 200px;
}
掌握以上基础知识,对于爬虫的学习会有很大帮助。
|