Strong Password Generator Tool

Strong Password Generator Strong Password Generator Password Length: Include Uppercase Letters Include Numbers Include Symbols Generate Password Copy * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; background-color: #f7f7f7; display: flex; justify-content: center; align-items: center; height: 100vh; color: #333; } .container { background-color: #fff; padding: 20px; border-radius: 10px; box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); width: 90%; max-width: 400px; text-align: center; } h1 { color: #3498db; margin-bottom: 20px; } .input-group { margin-bottom: 20px; } label { font-size: 16px; color: #333; display: block; margin-bot...

Name server lookup tool


 

Nameserver Lookup Tool

Nameserver Lookup Tool

Nameservers

    body { font-family: Arial, sans-serif; background-color: #f0f0f0; color: #333; margin: 0; padding: 0; } .container { max-width: 800px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); text-align: center; } h1 { color: #2196F3; } .form-container, .result-container { margin-bottom: 20px; } label { display: block; font-weight: bold; margin-bottom: 5px; } input { width: 100%; padding: 10px; font-size: 16px; border: 1px solid #ccc; border-radius: 4px; margin-bottom: 10px; } button { padding: 10px 20px; font-size: 16px; background-color: #2196F3; color: #fff; border: none; border-radius: 4px; cursor: pointer; } button:hover { background-color: #0b7dda; } .result-container h2 { margin-top: 20px; } ul { list-style-type: none; padding: 0; } li { padding: 10px; background-color: #f9f9f9; border-radius: 4px; margin-bottom: 5px; } function lookupNameservers() { const domain = document.getElementById('domainInput').value.trim(); if (!domain) { alert('Please enter a domain name'); return; } const url = `https://dns.google/resolve?name=${domain}&type=NS`; fetch(url) .then(response => response.json()) .then(data => { if (data.Answer) { const nameserversList = document.getElementById('nameserversList'); nameserversList.innerHTML = ''; data.Answer.forEach(answer => { const li = document.createElement('li'); li.textContent = answer.data; nameserversList.appendChild(li); }); } else { alert('No nameservers found for the domain'); } }) .catch(error => { console.error('Error:', error); alert('An error occurred while fetching nameservers'); }); 


    Comments

    Post a Comment

    Popular posts from this blog

    Image Compressor Tool

    Strong Password Generator Tool

    Toss Coin Game Tool