Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>User Information</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f5f5f5;
- }
- form {
- background-color: #fff;
- padding: 20px;
- margin: 20px auto;
- max-width: 500px;
- box-shadow: 0 2px 4px rgba(0,0,0,0.2);
- }
- label {
- display: block;
- font-weight: bold;
- margin-bottom: 5px;
- }
- input[type="text"] {
- display: block;
- width: 100%;
- padding: 8px;
- border: 1px solid #ccc;
- border-radius: 4px;
- margin-bottom: 20px;
- box-sizing: border-box;
- }
- input[type="submit"] {
- background-color: #4CAF50;
- color: #fff;
- border: none;
- padding: 12px 20px;
- border-radius: 4px;
- cursor: pointer;
- font-size: 16px;
- transition: background-color 0.3s ease;
- }
- input[type="submit"]:hover {
- background-color: #3e8e41;
- }
- </style>
- </head>
- <body>
- <form>
- <label for="egn">Enter your EGN:</label>
- <input type="text" id="egn" name="egn">
- <label for="firstName">Enter your First name:</label>
- <input type="text" id="firstName" name="firstName">
- <label for="lastName">Enter your Last name:</label>
- <input type="text" id="lastName" name="lastName">
- <label for="email">Enter your Email address:</label>
- <input type="text" id="email" name="email">
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement