forked from WangJia-mm/JavaScript201708
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaidu.html
More file actions
35 lines (33 loc) · 878 Bytes
/
baidu.html
File metadata and controls
35 lines (33 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>珠峰培训</title>
<style>
* {
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
iframe {
display: block;
float: left;
width: 50%;
height: 50%;
border: none;
}
</style>
</head>
<body>
<iframe src="https://www.taobao.com/" frameborder="0"></iframe>
<iframe src="https://www.baidu.com/" frameborder="0"></iframe>
<iframe src="https://v.qq.com/" frameborder="0"></iframe>
<iframe src="https://www.zhufengpeixun.cn/" frameborder="0"></iframe>
</body>
</html>