<!DOCTYPE html> <html> <head> <title> Fancy Text Generator Tool </title> <style> body { font-family: Arial, sans-serif; background-color: #f2f2f2; padding: 20px; } h1 { text-align: center; margin-bottom: 20px; } form { display: flex; flex-direction: column; margin-bottom: 20px; } label { margin-bottom: 10px; } input { padding: 10px; border: none; border-radius: 5px; margin-bottom: 10px; } button { padding: 10px; border: none; border-radius: 5px; background-color: #4CAF50; color: #fff; cursor: pointer; } #output { margin-top: 20px; font-size: 24px; font-weight: bold; text-align: center; } </style> </head> <body> <h1>Fancy Text Generator Tool</h1> <form> <label for="text">Enter Text:</label> <input type="text" id="text" name="text" placeholder="Enter your text here..."> <button type=...
Posts
Showing posts from April, 2023