-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (69 loc) · 2.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="author" content="Syed Furquan Ahmad" />
<meta name="description" content="Indeed.com scraping API" />
<title>indeed_scraper API | Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet" />
<style>
:root {
font-family: 'Noto Sans', sans-serif;
color: #1e293b;
}
h2 {
font-weight: 400;
}
a {
text-decoration: none;
color: #155e75;
}
a:hover {
text-decoration: underline;
}
body {
border-color: red;
border: 1em;
min-height: 95vh;
}
footer {
position: sticky;
top: 95vh;
}
.footer-container {
display: flex;
justify-content: space-between;
}
article {
max-width: 50%;
font-family: 'Noto Serif', serif;
font-size: large;
}
</style>
</head>
<body>
<h1>Welcome to the indeed_scraper API. Version 0.8.1.</h1>
<h2>API documentation can be found: <a href="https://scraper.nextdev.in/docs">here</a></h2>
<h2>The source code as well as usage instructions can be found:
<a href="https://github.com/furquan-lp/indeed-scraper">here</a>
</h2>
<article>
<h3>Legal:</h3>
<p>indeed_scraper is free software: you can redistribute it and/or modify it under the terms of the GNU General
Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
<p><a href="https://raw.githubusercontent.com/furquan-lp/indeed-scraper/master/LICENSE">See the License for more
details.</a></p>
</p>
</article>
<footer>
<hr />
<span class="footer-container"><span>Copyright © 2024 Syed Furquan Ahmad. Contact:
[email protected]</span><b>Built on FastAPI | Powered by Fly.io</b></span>
</footer>
</body>
</html>