Advertisement
brandblox

SuddenFall

Oct 21st, 2024
210
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 5.65 KB | None | 1 0
  1. ## Form
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Form Elements Showcase</title>
  8.     <style>
  9.         body {
  10.             font-family: Arial, sans-serif;
  11.             margin: 0;
  12.             height: 100vh;
  13.             display: flex;
  14.             justify-content: center;
  15.             align-items: center;
  16.             background-color: #f4f4f4;
  17.         }
  18.         form {
  19.             width: 100%;
  20.             max-width: 400px;
  21.             padding: 20px;
  22.             background-color: #fff;
  23.             border-radius: 8px;
  24.             box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  25.         }
  26.         label {
  27.             display: block;
  28.             margin-bottom: 8px;
  29.             font-weight: bold;
  30.         }
  31.         input[type="text"],
  32.         input[type="email"],
  33.         input[type="tel"],
  34.         select,
  35.         textarea {
  36.             width: 100%;
  37.             padding: 10px;
  38.             margin-bottom: 15px;
  39.             border: 1px solid #ccc;
  40.             border-radius: 4px;
  41.         }
  42.         input[type="radio"] {
  43.             margin-right: 10px;
  44.         }
  45.         button {
  46.             padding: 10px 20px;
  47.             border: none;
  48.             border-radius: 4px;
  49.             background-color: #28a745;
  50.             color: white;
  51.             cursor: pointer;
  52.             transition: background-color 0.3s ease;
  53.         }
  54.         button:hover {
  55.             background-color: #218838;
  56.         }
  57.         button:active {
  58.             background-color: #1e7e34;
  59.         }
  60.     </style>
  61. </head>
  62. <body>
  63.  
  64.     <form action="#" method="POST">
  65.         <label for="name">Name:</label>
  66.         <input type="text" id="name" name="name" placeholder="Enter your name" required>
  67.  
  68.         <label for="email">Email:</label>
  69.         <input type="email" id="email" name="email" placeholder="Enter your email" required>
  70.  
  71.         <label for="phone">Phone Number:</label>
  72.         <input type="tel" id="phone" name="phone" placeholder="Enter your phone number" pattern="[0-9]{10}" required>
  73.  
  74.         <label>Gender:</label>
  75.         <input type="radio" id="male" name="gender" value="male">
  76.         <label for="male" style="display:inline;">Male</label>
  77.         <input type="radio" id="female" name="gender" value="female">
  78.         <label for="female" style="display:inline;">Female</label>
  79.         <input type="radio" id="other" name="gender" value="other">
  80.         <label for="other" style="display:inline;">Other</label>
  81.  
  82.         <label for="country">Country:</label>
  83.         <select id="country" name="country">
  84.             <option value="">Select your country</option>
  85.             <option value="India">India</option>
  86.             <option value="USA">USA</option>
  87.             <option value="UK">UK</option>
  88.         </select>
  89.  
  90.         <label for="comments">Comments:</label>
  91.         <textarea id="comments" name="comments" rows="4" placeholder="Enter your comments"></textarea>
  92.  
  93.         <label for="message">Message:</label>
  94.         <textarea id="message" name="message" rows="4" placeholder="Enter your message here"></textarea>
  95.  
  96.         <button type="submit">Submit</button>
  97.     </form>
  98.  
  99. </body>
  100. </html>
  101.  
  102.  
  103.  
  104.  
  105. ###navbar
  106. <!DOCTYPE html>
  107. <html lang="en">
  108. <head>
  109.     <meta charset="UTF-8">
  110.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  111.     <title>Navigation Bar</title>
  112.     <style>
  113.         /* General Reset */
  114.         * {
  115.             margin: 0;
  116.             padding: 0;
  117.             box-sizing: border-box;
  118.         }
  119.  
  120.         body {
  121.             font-family: Arial, sans-serif;
  122.             background-color: #f4f4f4;
  123.         }
  124.  
  125.         /* Navigation Bar */
  126.         nav {
  127.             background-color: #333;
  128.             padding: 10px 20px;
  129.             position: fixed;
  130.             width: 100%;
  131.             top: 0;
  132.             left: 0;
  133.             z-index: 1000;
  134.         }
  135.  
  136.         nav ul {
  137.             list-style: none;
  138.             display: flex;
  139.             justify-content: center;
  140.         }
  141.  
  142.         nav ul li {
  143.             margin: 0 20px;
  144.         }
  145.  
  146.         nav ul li a {
  147.             text-decoration: none;
  148.             color: white;
  149.             font-weight: bold;
  150.             padding: 8px 16px;
  151.             display: inline-block;
  152.             transition: background-color 0.3s ease;
  153.         }
  154.  
  155.         nav ul li a:hover {
  156.             background-color: #575757;
  157.             border-radius: 4px;
  158.         }
  159.  
  160.         /* Sample content to show scroll effect with fixed nav */
  161.         .content {
  162.             padding-top: 80px; /* Space for fixed navbar */
  163.             text-align: center;
  164.             margin-top: 40px;
  165.         }
  166.  
  167.         .content h1 {
  168.             margin-bottom: 20px;
  169.         }
  170.  
  171.         .content p {
  172.             width: 60%;
  173.             margin: 0 auto;
  174.             line-height: 1.6;
  175.         }
  176.     </style>
  177. </head>
  178. <body>
  179.  
  180.     <!-- Navigation Bar -->
  181.     <nav>
  182.         <ul>
  183.             <li><a href="#home">Home</a></li>
  184.             <li><a href="#about">About</a></li>
  185.             <li><a href="#services">Services</a></li>
  186.             <li><a href="#contact">Contact</a></li>
  187.         </ul>
  188.     </nav>
  189.  
  190.     <!-- Sample Content for Demo -->
  191.     <div class="content">
  192.         <h1>Welcome to My Website</h1>
  193.         <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce at libero ut risus fermentum elementum. Phasellus ac orci in metus scelerisque vestibulum. Nullam nec justo non leo facilisis feugiat. Aliquam erat volutpat. Nullam at dui non ipsum varius vulputate. In vel urna a elit placerat volutpat. Integer sit amet gravida augue.</p>
  194.     </div>
  195.  
  196. </body>
  197. </html>
  198.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement