Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KOUISAmine authored Jan 9, 2024
1 parent 572bb8c commit 6f39aac
Show file tree
Hide file tree
Showing 2 changed files with 131 additions and 0 deletions.
107 changes: 107 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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>Roman Numerals to Number</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>Roman Numerals to Number</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>
24 changes: 24 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

function apendmmr(){
$("#outbklresult").val('<!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>Google backlink maker for by mr laboratory </title></head><body><h1> Rediect backlink for <a href="'+$("#bkgurl").val()+'">'+$("#bkgurl").val()+'</a> by <a href="https://www.example.com/">Example</a></h1>'+mrmakeblinkmr($("#bkgurl").val())+mritem10+'<p>Rediect backlink for <a href="'+$("#bkgurl").val()+'">'+$("#bkgurl").val()+'</a> by <a href="https://www.mrlaboratory.info/">MR Laboratory</a></p> </body></html>');}
function mrdataapnd(d){$(".tabledata").append(d); };
function mrmakeblinkmr(u){
var r='<a target="_blank" href="https://www.fudbal91.com/tz.php?zone=America/Iqaluit&amp;r=' + u + ' "> https://www.fudbal91.com/tz.php?zone=America/Iqaluit&amp;r=' + u + ' </a> <a target="_blank" href="https://edusearch.ir/Goto.aspx?url=' + u + ' "> https://edusearch.ir/Goto.aspx?url=' + u + ' </a>';
return r; }

$(".divoutbklresult .copyoutput").on("click",function(){ navigator.clipboard.writeText($(".divoutbklresult textarea").val());
$(".divoutbklresult .copyoutput").html("Copyed");
})



// for(var i = 0; i < $(".mrrrm a").length ; i++) {
// (function(index) {
// setTimeout(function() {
// var u = $(".mrrrm a:eq("+index+")").attr('href');
// var popupwin = window.open(u,'anyname','width=300,height=300,right=10,bottom=10');
// $(".tabledata2").append("<a href='"+u+"'>"+u+"</a></br>");
// setTimeout(function() { popupwin.close();}, 2000);
// }, index*2000);
// })(i);
// }

0 comments on commit 6f39aac

Please sign in to comment.