-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-background.html
75 lines (74 loc) · 2.53 KB
/
search-background.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="search.css" />
<link rel="stylesheet" href="shared.css" />
<link rel="stylesheet" href="background.css" />
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link rel="icon" href="apple-touch-icon.png" />
<meta
name="Description"
content="SSASearch is a Yahoo/GoodSearch powered search engine that donates $0.01 to St. Stephen’s Academy on GoodShop per search."
/>
<meta
name="keywords"
content="SSASearch,Yahoo,GoodSearch,search engine, St. Stephen’s Academy.,support without spending money"
/>
<meta name="msvalidate.01" content="CEF6216C9C83DB1D061CECBB139AD29E" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script>
$(document).ready(function () {
document
.querySelector(".bg")
.style.setProperty(
"background-image",
`url(\"backgrounds/bg-${Math.floor(Math.random() * 25)}.jpg\")`
);
});
</script>
<script scr="background.js"></script>
<title>SSASearch | Search to Donate</title>
<link
rel="search"
type="application/opensearchdescription+xml"
title="SSASearch"
href="https://matthewr2024.github.io/SSASearch/opensearch.xml"
/>
</head>
<body>
<div class="bg"></div>
<div class="mainContent">
<form
target="_top"
class="example"
action="https://www.goodshop.com/search-web"
style="margin: auto; max-width: 500px"
>
<input type="hidden" name="charityid" value="903615" />
<input
autofocus
required
type="text"
name="keywords"
placeholder="Search to donate..."
aria-label="Search here to donate..."
/>
<button required type="submit" aria-label="Search">
<i class="fa fa-search"></i>
</button>
</form>
<br />
</div>
</body>
</html>