-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
162 lines (117 loc) · 4.81 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<title>The PHP SERP Spider - A search engine scraper</title>
<meta
name="description"
content="SERPS is a php library that aims to ease search engine analyse through tools for creating urls and parsing SERP.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="favicon.ico" />
<link rel="canonical" href="https://serp-spider.github.io">
<style>
body{
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
color: #4c4c4c;
font-size: 16px;
margin-bottom: 50px;
}
header{
padding: 50px 0;
background: #613636;
}
h1,h2{
margin: 0;
color: #fff;
position: relative;
}
h1{
font-size: 43px;
bottom: -20px;
}
h2{
top: -30px;
font-size: 24px;
}
.search-engine-logo{
max-width: 135px;
max-height: 45px;
margin: 0 10px;
}
section{
margin-top: 35px;
}
h3{
margin-bottom: 25px;
}
.links{
margin-top: 30px;
}
.btn{
margin-bottom: 17px;
}
.alpha-banner{
padding: 15px 0;
font-weight: bold;
background: #75b379;
color: #FFF;
}
.se-roadmap{
opacity: 0.8;
}
</style>
</head>
<body>
<div class="alpha-banner">
<i class="fa fa-exclamation-triangle"></i>
We just release version 0.2. Please check migration guide
<a href="/documentation/about/migration/from-v0_1-to-v0_2/">upgrade guide</a>.
<i class="fa fa-exclamation-triangle"></i>
</div>
<header>
<h1>SERPS</h1>
<img alt="SERP spider logo" src="logo.png" />
<h2>The Search Engine Result Page Spider</h2>
</header>
<section>
<p>SERPS is a php library that helps you to write tools to analyse and scrape search engines. It's all about scraping!</p>
<h3>Supported Search Engines:</h3>
<img class="search-engine-logo" alt="google" src="logo-google.png" />
<h3>They are on the Roadmap:</h3>
<img class="search-engine-logo se-roadmap" alt="bing" src="logo-bing.png" />
<img class="search-engine-logo se-roadmap" alt="yahoo" src="logo-yahoo.png" />
<div class="links">
<a class="btn btn-default" href="https://serp-spider.github.io/documentation/" role="button">
<i class="fa fa-book"></i>
Browse the documentation
</a>
<a class="btn btn-default" href="https://github.com/serp-spider" role="button">
<i class="fa fa-github-alt"></i>
See the project on github
</a>
<a class="btn btn-default" href="https://gitter.im/serp-spider/help" role="button">
<i class="fa fa-comment"></i>
Join us on gitter
</a>
</div>
</section>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75620778-1', 'auto');
ga('send', 'pageview');
</script>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'serp-spider/help'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
</body>
</html>