-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (91 loc) · 3.45 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
<html>
<head>
<title>Gatotkaca!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="colorlib.com">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,800" rel="stylesheet" />
<link href="./static/css/main.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="./static/gatotkaca.png">
<meta property="og:title" content="Gatotkaca!. Mesin pencari apa saja." />
<meta property="og:url" content="https://gatotkaca.mooo.info" />
<meta property="og:image" content="https://gatotkaca.mooo.info/static/images/og-facebook-gatotkaca.jpg" />
<meta property="og:site_name" content="Gatotkaca" />
<meta property="og:description" content="Gatotkaca! Mesin pencari apa saja. Karya anak kopi paste." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@lantip" />
</head>
<body>
<div id="clouds">
<div class="cloud x1"></div>
<!-- Time for multiple clouds to dance around -->
<div class="cloud x2"></div>
<div class="cloud x3"></div>
<div class="cloud x4"></div>
<div class="cloud x5"></div>
</div>
<div class="s004">
<form method="post" action="">
<fieldset>
<legend>
<span>G</span>
<span>a</span>
<span>t</span>
<span>o</span>
<span>t</span>
<span>k</span>
<span>a</span>
<span>c</span>
<span>a</span>
<span>V.</span>
<span></span>
<span>2</span>
<span>!</span>
</legend>
<div class="inner-form">
<div class="input-field">
<input class="form-control" type="search" placeholder="Type to search..." name="search" />
<button id="button_seach" class="btn-search" type="button" onclick="moveBro()" onsubmit="moveBro()">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
</svg>
</button>
</div>
</div>
</fieldset>
</form>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
let count = 0;
function moveBro() {
count++
if (count >= 5) {
window.location="./internetpositif.id";
}
buttonSearch = document.getElementById("button_seach");
buttonSearch.style.left = (Math.random() * 350) + "px";
buttonSearch.style.top = (Math.random() * 350) + "px";
}
$(document).ready(function() {
$(window).keydown(function(event){
if(event.keyCode == 13) {
event.preventDefault();
return false;
}
});
$(function() {
$("button").on({
mouseover: function() {
$(this).animate({
left: (Math.random() * 250) + "px",
top: (Math.random() * 250) + "px",
}, "medium");
}
});
});
});
</script>
</html>