diff --git a/introducao-ao-CSS/index.css b/introducao-ao-CSS/index.css new file mode 100644 index 0000000..4284b78 --- /dev/null +++ b/introducao-ao-CSS/index.css @@ -0,0 +1,24 @@ +h1 { + font-family: sans-serif; +} + +p { + font-weight: 600px; + font-size: 48px; +} + +body { + font-size: 16px; +} + +#yellow { + background-color: yellow; +} + +#red { + background-color: red; +} + +#brown { + background-color: brown; +} \ No newline at end of file diff --git a/introducao-ao-CSS/index.html b/introducao-ao-CSS/index.html new file mode 100644 index 0000000..9f9fc66 --- /dev/null +++ b/introducao-ao-CSS/index.html @@ -0,0 +1,22 @@ + + + + + + + HTML + + + + +

Exercícios 3.2

+

Qual é a sua cor favorita?

+ + + + + \ No newline at end of file