-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
67 lines (67 loc) · 2.42 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="让我帮你百度一下吧。献给所有喜欢问他人问题而不是自己去搜索的人,知识的获取是需要脚踏实地去探索的。" name="description"/>
<meta content="让我帮你百度一下, 百度一下,百度, 伸手党福利" name="keywords"/>
<link href="./img/favicon.ico" rel="icon" type="image/x-icon"/>
<title>
百度一下,你就知道
</title>
<link href="./css/index.css" rel="stylesheet">
</link>
</head>
<body>
<div class="wb-header" id="header">
<span>
你可能
<img id="logo" src="./img/bd_logo.png"/>
就能知道
</span>
</div>
<div class="wb-search" id="search">
<input autofocus="autofocus" id="search-input" type="text"/>
<button id="search-button">
百度一下
</button>
</div>
<div class="wb-tip" id="tip">
<span id="tip1">
我帮您教他如何使用百度搜索
</span>
<span id="tip2">
将问题输入后点击"百度一下"
</span>
<div class="wb-link" id="link">
<input id="tip-input" readonly="readonly" type="text"/>
<button class="copy" data-clipboard-target="#tip-input" id="tip-button">
复制链接
</button>
</div>
</div>
<div class="wb-footer" id="footer">
<span>
.
百度(Baidu)是百度公司的商标,本产品和百度没有任何联系.
</span>
<br/>
<span>
CopyRight © 2018
<a href="https://wolfbolin.com/">
WolfBolin
</a>
|
<a href="https://github.com/wolfbolin/baidux">
Github
</a>
</span>
</div>
<img class="wb-mouse" id="fake-mouse" src="./img/mouse.png"/>
</body>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<script src="https://cdn.bootcss.com/clipboard.js/2.0.4/clipboard.min.js">
</script>
<script src="./js/index.js">
</script>
</html>