This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- os metadados vão aqui--> | |
| </head> | |
| <body> | |
| <!-- o conteúdo vai aqui. --> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML & CSS Codelab para Mulheres</title> | |
| </head> | |
| <body> | |
| <!-- o conteúdo vai aqui. --> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML & CSS Codelab para Mulheres</title> | |
| <link rel="stylesheet" href="caminho/para/seu/arquivo.css"> | |
| </head> | |
| <body> | |
| <!-- o conteúdo vai aqui. --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML & CSS Codelab para Mulheres</title> | |
| <style> | |
| body { | |
| margin: 0; | |
| font-family: 'Helvetica', sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML & CSS Codelab para Mulheres</title> | |
| </head> | |
| <body style="text-align: center;"> | |
| <p style="font-weight: bold;">Esse é um parágrafo.</p> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| font-family: 'Helvetica Neue', 'Helvetica', sans-serif; | |
| font-size: 1.5em; | |
| font-weight: bold; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div { | |
| background-color: #00897B; | |
| background-image: url('caminho/para/sua/imagem.png'); | |
| background-repeat: no-repeat; | |
| background-size: 100% 100%: | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* tag html */ | |
| body { | |
| background-color: blue; | |
| } | |
| /* acessando via id */ | |
| #unique { | |
| font-size: 24pt; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML & CSS Codelab para Mulheres</title> | |
| </head> | |
| <body> | |
| <!-- abre página especificada na aba atual --> | |
| <a href="./algum/link">acese a página.</a> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML & CSS Codelab para Mulheres</title> | |
| </head> | |
| <body> | |
| <img src="caminho/para/a/imagem" alt="breve descrição da imagem"> | |
| </body> | |
| </html> |
OlderNewer