Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Cadastro de Noticias
- <!DOCTYPE html>
- <html lang="pt-br">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Cadastro de Notícias</title>
- <style>
- body {
- font-family: 'Lora', serif;
- max-width: 600px;
- margin: 0 auto;
- padding: 20px;
- }
- label {
- display: block;
- margin-bottom: 8px;
- }
- input, textarea {
- width: 100%;
- padding: 8px;
- margin-bottom: 16px;
- }
- button {
- background-color: #4CAF50;
- color: white;
- padding: 10px 15px;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- }
- </style>
- </head>
- <body>
- <h1>Cadastro de Notícias</h1>
- <form action="salvar_noticia.php" method="post">
- <label for="titulo">Título:</label>
- <input type="text" id="titulo" name="titulo" required>
- <label for="noticia">Notícia:</label>
- <textarea id="noticia" name="noticia" rows="4" required></textarea>
- <label for="palavras_chave">Palavras-chave:</label>
- <input type="text" id="palavras_chave" name="palavras_chave" required>
- <button type="submit">Salvar Notícia</button>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement