Advertisement
MizunoBrasil

Cadastro de Noticias (html apenas)

Dec 25th, 2023
1,042
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.38 KB | None | 0 0
  1. Cadastro de Noticias
  2.  
  3.  
  4. <!DOCTYPE html>
  5. <html lang="pt-br">
  6. <head>
  7.     <meta charset="UTF-8">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9.     <title>Cadastro de Notícias</title>
  10.     <style>
  11.         body {
  12.             font-family: 'Lora', serif;
  13.             max-width: 600px;
  14.             margin: 0 auto;
  15.             padding: 20px;
  16.         }
  17.  
  18.         label {
  19.             display: block;
  20.             margin-bottom: 8px;
  21.         }
  22.  
  23.         input, textarea {
  24.             width: 100%;
  25.             padding: 8px;
  26.             margin-bottom: 16px;
  27.         }
  28.  
  29.         button {
  30.             background-color: #4CAF50;
  31.             color: white;
  32.             padding: 10px 15px;
  33.             border: none;
  34.             border-radius: 4px;
  35.             cursor: pointer;
  36.         }
  37.     </style>
  38. </head>
  39. <body>
  40.     <h1>Cadastro de Notícias</h1>
  41.     <form action="salvar_noticia.php" method="post">
  42.         <label for="titulo">Título:</label>
  43.         <input type="text" id="titulo" name="titulo" required>
  44.  
  45.         <label for="noticia">Notícia:</label>
  46.         <textarea id="noticia" name="noticia" rows="4" required></textarea>
  47.  
  48.         <label for="palavras_chave">Palavras-chave:</label>
  49.         <input type="text" id="palavras_chave" name="palavras_chave" required>
  50.  
  51.         <button type="submit">Salvar Notícia</button>
  52.     </form>
  53. </body>
  54. </html>
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement