Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Domain Search.</title>
- <style>
- /* Container for the form to center align it */
- .form-container {
- text-align: center;
- margin-top: 20px;
- }
- /* Style for the form */
- form {
- display: inline-block; /* Align input and button in a line */
- background-color: transparent; /* No background for the form */
- border: none; /* No border for the form */
- }
- /* Style for the input field */
- input[type="text"] {
- height: 44px; /* Height of input field */
- width: 300px; /* Adjust this value to change the length */
- padding: 0 10px; /* Padding inside the input field */
- border: 2px solid #F0C05A; /* Specified border color */
- background-color: black; /* Background color for the input field */
- color: white; /* Text color inside the input field */
- border-right: none; /* Remove right border to connect with the button */
- border-radius: 22px 0 0 22px; /* Rounded corners on the left side */
- }
- /* Style for the submit button */
- input[type="submit"] {
- height: 44px; /* Slightly larger to cover the border of the input field */
- border: 2px solid #F0C05A; /* Specified border color */
- background-color: #F0C05A; /* Background color for the button */
- color: black; /* Text color for the button */
- padding: 0 15px; /* Padding inside the button */
- border-radius: 0 22px 22px 0; /* Rounded corners on the right side */
- cursor: pointer; /* Change cursor to pointer to indicate clickable item */
- border-left: none; /* Remove left border to eliminate gap with the input field */
- font-size: 18px; /* Adjust this value to change the font size */
- font-weight: bold; /* Make the text bold */
- }
- /* Hover effect for button */
- input[type="submit"]:hover {
- background-color: #DAA520; /* Darker shade on hover for better user interaction */
- border-color: #DAA520; /* Match border color with the background on hover */
- }
- /* Style for placeholder to ensure it's white */
- input[type="text"]::placeholder {
- color: white;
- font-size: 18px; /* Adjust this value to change the font size */
- font-weight: bold; /* Make the text bold */
- }
- </style>
- </head>
- <body>
- <div class="form-container">
- <form action="https://shop.cybermerlin.com/cart.php?a=add&domain=register" method="post">
- <input type="text" name="query" placeholder=" Find your new domain name" />
- <input type="submit" value="Check" />
- </form>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement