Advertisement
deushdezt

23/03/2023 - main.html

Mar 23rd, 2023 (edited)
859
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.23 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.   <link rel="preconnect" href="https://fonts.googleapis.com">
  8.   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  9.   <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Handlee&family=Montserrat:wght@300;400&family=Roboto:wght@300;400&family=Space+Mono&display=swap" rel="stylesheet">
  10.  
  11.   <title> Library </title>
  12.  
  13.   <style>
  14.     * {
  15.       padding: 0;
  16.       margin: 0;
  17.       box-sizing: border-box;
  18.       font-family: "Roboto", sans-serif;
  19.     }
  20.  
  21.     body {
  22.       min-height: 100vh;
  23.       display: flex;
  24.       flex-direction: column;  
  25.     }
  26.  
  27.     main {
  28.       padding: 1rem;
  29.       display: flex;
  30.       justify-content: center;
  31.       align-items: center;
  32.       flex-direction: column;
  33.  
  34.       gap: 0.5rem;
  35.  
  36.       flex: 1 0;
  37.       width: 100%;
  38.     }
  39.  
  40.     main form {
  41.       width: 100%;
  42.       max-width: 500px;
  43.       padding: 1rem;
  44.       margin-top: 2rem  ;
  45.  
  46.       background: #eee;
  47.       border-radius: 10px;
  48.  
  49.       display: flex;
  50.       flex-direction: column;
  51.       gap: 0.5rem;
  52.     }
  53.  
  54.     main form label {
  55.       display: flex;
  56.       flex-direction: column;
  57.       gap: 0.25rem;
  58.     }
  59.  
  60.     footer {
  61.       background-color: indigo;
  62.       padding: 1rem;
  63.  
  64.       display: flex;
  65.       justify-content: center;
  66.       align-items: center;
  67.  
  68.       color: white;
  69.       font-size: 0.8rem;
  70.     }
  71.   </style>
  72. </head>
  73. <body>
  74.   <main>
  75.     <h1> Library (<a href="/library/all"> Ver Libros </a>) </h1>
  76.     <h2> 23/03/2023 14:00 </h2>
  77.     <form action="/library/add">
  78.       <label for="isbn-field">
  79.         ISBN:
  80.         <input type="text" name="isbn" id="isbn-field">
  81.       </label>
  82.  
  83.       <label for="title-field">
  84.         Title:
  85.         <input type="text" name="title" id="title-field">
  86.       </label>
  87.  
  88.       <label for="owner-field">
  89.         Owner:
  90.         <input type="text" name="owner" id="owner-field">
  91.       </label>
  92.  
  93.       <input type="submit" value="Register">
  94.     </form>
  95.   </main>
  96.    
  97.     <footer>
  98.      Copyright @ DouglasHdezT, 2023
  99.     </footer>
  100. </body>
  101. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement