-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (91 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Years to Hours</title>
</head>
<body>
<style>
:root {
--bgcolor: red;
}
h1, h2, h3{
text-align: center;
color: var(--bgcolor);
}
input#bkgurl {
width: 100%;
padding: 10px;
border-radius: 7px;
border: none;
outline: none;
margin: 10px;
border-bottom: 2px solid var(--bgcolor);
background: none;
}
input#bkgurl:active{
}
button#bklgenerate {
width: 200px;
height: 35px;
border: 1px solid var(--bgcolor);
outline: none;
border-radius: 10px;
margin-bottom: 20px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.divoutbklresult{
position: relative;
width: 100%;
height: auto;
}
textarea#outbklresult {
width: 100%;
height: auto;
position: relative;
border-radius: 10px;
margin-top: 34px;
outline: none;
padding: 10px;
border:2px solid var(--bgcolor);
background: none;
}
.divoutbklresult .copyoutput{
position: absolute;
width: 80px;
height: 30px;
padding: 5px;
border-radius: 8px;
background: var(--bgcolor);
right: 0px;
top: 0px;
outline: none;
border: none;
cursor: pointer;
color: white;
font-weight: bold;
}
</style>
<h1>Years to Hours</h1>
<h2>After giving the link to your website below, click on Generate.</h2>
<input id="bkgurl" value="https://www.yourwebsite.com" type="text" placeholder="Your URL "> <button id="bklgenerate">Generate</button> <br>
<div style="display: none;" class="tabledata"> </div>
<div class="tabledata2"> </div>
<h3>Wait a while after clicking Generate. Since the code of 5000+ links will be executed, it will take some time.</h3>
<h3>If do not close the page that automatically open every backlink page With a break of 3 seconds.</h3>
<h2>Copy all Code from the box below and make a webpage in online </h2>
<div class="divoutbklresult">
<button class="copyoutput">Copy code </button>
<textarea id="outbklresult" width="100%" height="auto" name="" id="" cols="30" rows="10"></textarea>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="script.js"></script>
<script src="https://www.mrlaboratory.info/feeds/posts/summary?orderby=published&max-results=1&alt=json-in-script&callback=mycallback"></script>
</body>
</html>