All Rounder Tools Blogger-Best blog for blogger: Fake Address Generator Tool with colorful styling and all its features use any free library...

Tuesday, September 24, 2024

Fake Address Generator Tool with colorful styling and all its features use any free library...

 

Fake Address Generator

Fake Address Generator

body { font-family: 'Arial', sans-serif; background-color: #f0f4f8; color: #333; margin: 0; padding: 0; } .container { max-width: 600px; margin: 50px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); text-align: center; } h1 { color: #007bff; } button { padding: 10px 20px; background-color: #007bff; color: #fff; border: none; border-radius: 4px; font-size: 16px; cursor: pointer; transition: background-color 0.3s; } button:hover { background-color: #0056b3; } .address { margin-top: 20px; padding: 15px; border: 1px solid #007bff; border-radius: 4px; background-color: #e7f3ff; color: #0056b3; display: none; /* Hidden initially */ font-size: 18px; } $(document).ready(function() { const streets = [ "Main St", "High St", "Oak St", "Pine St", "Maple Ave", "Cedar St", "Elm St", "1st St", "2nd St", "3rd St" ]; const cities = [ "Springfield", "Rivertown", "Lakeside", "Hill Valley", "Metropolis", "Gotham", "Smallville", "Sunnydale", "Star City", "Central City" ]; const states = [ "CA", "NY", "TX", "FL", "IL", "PA", "OH", "MI", "NC", "GA" ]; const zipCodes = [ "12345", "67890", "54321", "98765", "45678", "87654", "23456", "65432", "34567", "76543" ]; $('#generate').click(function() { const randomStreet = streets[Math.floor(Math.random() * streets.length)]; const randomCity = cities[Math.floor(Math.random() * cities.length)]; const randomState = states[Math.floor(Math.random() * states.length)]; const randomZip = zipCodes[Math.floor(Math.random() * zipCodes.length)]; const address = `${Math.floor(Math.random() * 9999)} ${randomStreet}, ${randomCity}, ${randomState} ${randomZip}`; $('#address').text(address).show(); }); });

No comments:

Post a Comment