当前位置:网站首页>Selenium:简介
Selenium:简介
2022-08-01 04:59:00 【不怕猫的耗子A】
HTML简介
1、HTML中文为超文本标记语言(HyperText Markup Language),是一种用于创建网页的标准标记语言
2、HTML是用来描述网页的一种语言
⑴HTML不是一种编程语言,而是一种标记语言,标记语言是一套标记标签(markup tag)
⑵HTML使用标记标签来描述网页,包含了HTML标签及文本内容
HTML结构
1、一个HTML网页(文档)是由大量不同、相同标签组成的
⑴这些标签都是定义好了的(前端开发人员无法自己定义)
2、以下为一个简单的HTML网页实例
例1:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>标题</title>
</head>
<body>
<h1>正文</h1>
<a href="http://www.baidu.com">百度链接</a>
<img src="/i/eg_tulip.jpg" alt="图片" />
</body>
</html>
注:
1、HTML标签是由尖括号包围的关键词,比如 <html>、<head>、<title>、<meta>、<body>、<h1>、<a>、<img>
边栏推荐
- typescript26 - literal types
- mysql中解决存储过程表名通过变量传递的方法
- state compressed dp
- Mysql中的数据类型和运算符
- 【云原生之kubernetes实战】kubernetes集群的检测工具——popeye
- 剑指 Offer 68 - II. 二叉树的最近公共祖先
- (2022牛客多校四)D-Jobs (Easy Version)(三维前缀或)
- pytorch、tensorflow对比学习—张量
- 关于给Qt做一个软件初始化的进度条
- Error: AttributeError: module 'matplotlib' has no attribute 'figure'
猜你喜欢
高数 | 【重积分】线面积分880例题
typescript21 - Comparison of Interfaces and Type Aliases
Swastika line-by-line parsing and realization of the Transformer, and German translation practice (a)
pytorch、tensorflow对比学习—计算图和微分机制
深圳某游戏研发公司给每个工位都装监控,网友:堪比坐牢!
pytroch、tensorflow对比学习—功能组件(数据管道、回调函数、特征列处理)
UE4 制作遇到的问题
HJS-DE1/2时间继电器
Power button (LeetCode) 212. The word search II (2022.07.31)
移动应用恶意攻击激增500% 三六零天御为APP免费构建安全屏障
随机推荐
The method of solving stored procedure table name passing through variable in mysql
程序员代码面试指南 CD15 生成窗口最大值数组
数据比对功能调研总结
typescript21-接口和类型别名的对比
pytroch、tensorflow对比学习—功能组件(数据管道、回调函数、特征列处理)
MySQL实践总结-
In the shake database, I want to synchronize the data of the source db0 to the destination db5, how to set the parameters?
在沈自所的半年总结
Immutable
【目标检测】YOLOv7理论简介+实践测试
(Codeforce 757) E. Bash Plays with Functions
挑战52天背完小猪佩奇(第01天)
关于给Qt做一个软件初始化的进度条
解决ffmpeg使用screen-capture-recorder录屏,有屏幕缩放的情况下录不全的问题
【无标题】
(more than 2022 cattle school four) A - Task Computing + dynamic programming (sort)
High Numbers | 【Re-integration】Line Area Score 880 Examples
MySQL Practice Summary -
UE4 模型OnClick事件不生效的两种原因
Swastika line-by-line parsing and realization of the Transformer, and German translation practice (2)