Meta Description" name="description" />
<!DOCTYPE html><html lang="ne">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BLE Result Checker</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f0f4f8;
text-align: center;
padding: 30px;
}
.container {
background: white;
padding: 20px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
max-width: 400px;
margin: auto;
}
input {
padding: 10px;
width: 80%;
margin: 10px 0;
border-radius: 10px;
border: 1px solid #ccc;
}
button {
padding: 10px 20px;
border: none;
border-radius: 10px;
background: #4CAF50;
color: white;
cursor: pointer;
}
.result {
margin-top: 20px;
font-weight: bold;
}
iframe {
margin-top: 20px;
width: 100%;
height: 200px;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="container">
<h2>BLE Result Checker</h2>
<p>आफ्नो Symbol Number हाल्नुहोस्</p>
<input type="text" id="symbol" placeholder="203202305">
<br>
<button onclick="checkResult()">Check Result</button>
<div class="result" id="output"></div><iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="Result Guide Video"></iframe>
</div> <script>
function checkResult() {
var symbol = document.getElementById("symbol").value;
var output = document.getElementById("output");
if(symbol === "203202305") {
output.innerHTML = "🎉 बधाई छ! तपाईँ पास हुनुभयो।";
} else {
output.innerHTML = "❌ Symbol Number भेटिएन।";
}
}
</script></body>
</html>18
10
989KB
3665KB
170.0ms
192.0ms
1,285.0ms