Responsive Website Checker Tool Script 100% Free To Download
100% Free To Download This Script.
100% Free With “Resell Rights”.
Sell These Tools S As Per Your Need Or Offer Free To Anyone Give Giveaway Also.
About : Free Tools.
License: Master Resale Rights
Use In This Website Any Script Or Any Products You Will Download 100% Free To Use.
Responsive Website Checker
How To Use This Script
Use This Script WordPress Or Blogger Anyone You Choose Use This Script And Publish Your Online Tool And Make Passive Income.
Login Your WordPress Or Blogger Dashboard.
Copy This Code Or Download.
And Post Or Page.
Add HTML Widget.
Paste This Code And Publish.
After See The Result, Magic..
DEMO
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Website Checker</title>
<style>
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f9f9f9;
}
#container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
}
label {
margin-bottom: 10px;
}
input {
padding: 8px;
margin-bottom: 20px;
}
#websiteEmbed {
width: 100%;
max-width: 800px;
height: 500px;
}
</style>
</head>
<body>
<div id="container">
<h2>Responsive Website Checker</h2>
<label for="websiteInput">Enter Website URL:</label>
<input type="text" id="websiteInput" placeholder="https://example.com">
<button onclick="loadWebsite()">Check Website</button>
<div id="websiteEmbed"></div>
</div>
<script>
function loadWebsite() {
const websiteUrl = document.getElementById("websiteInput").value;
const embedElement = document.getElementById("websiteEmbed");
// Clear any previous content
embedElement.innerHTML = "";
// Create and append embed element
const embedFrame = document.createElement("embed");
embedFrame.src = websiteUrl;
embedFrame.type = "text/html";
embedFrame.width = "100%";
embedFrame.height = "500px";
embedElement.appendChild(embedFrame);
}
</script>
</body>
</html>