HTML
Estrutura básica do HTML5
Adicione um elemento h1 dentro da estrutura HTML5 com o seguinte texto: "Olá, mundo!"
💡Lembre-se: Os elementos html usam a tag de abertura: <> e a tag de fechamento </>
- <DOCTYPE html>
- <html lang="pt-br">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Meu primeiro projeto!</title>
- </head>
- <body>
- </body>
- </html>