HTMLify
webpage2.html
Views: 587 | Author: demo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <!DOCTYPE html> <html> <head> <title>My Unique Demo Page</title> <style> body { font-family: "Courier New", monospace; background-color: #f9f9f9; margin: 0; padding: 0; } header { background-color: #ff5722; color: #fff; padding: 20px; text-align: center; } .container { max-width: 800px; margin: 20px auto; padding: 20px; background-color: #fff; border: 1px solid #ddd; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); border-radius: 10px; } h1 { color: #ff5722; font-size: 36px; } p { font-size: 20px; line-height: 1.5; } button { background-color: #ff5722; color: #fff; padding: 12px 24px; border: none; border-radius: 5px; font-size: 18px; cursor: pointer; transition: background-color 0.3s ease-in-out; } button:hover { background-color: #e64a19; } </style> </head> <body> <header> <h1>Welcome to My Unique Demo Page</h1> </header> <div class="container"> <h2>Experience a Different Look</h2> <p>Just another sample page with diffrent style!!</p> <button onclick="showAlert()">Click Me to trigger a JavaScript Function!!</button> </div> <script> function showAlert() { alert('Hello!! This is a JavaScript alert.'); } </script> </body> </html> |