diff --git a/index.html b/index.html new file mode 100644 index 0000000..0939db3 --- /dev/null +++ b/index.html @@ -0,0 +1,49 @@ + + + + + + Meu Site Simples + + + +
+

Bem-vindo ao Meu Site

+ +
+ +
+
+

Home

+

Esta é a página inicial do meu site simples.

+
+ +
+

Sobre

+

Aqui você pode saber mais sobre o site.

+
+ +
+

Contato

+

Entre em contato através do formulário abaixo.

+
+ + + + + +
+
+
+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..77959ce --- /dev/null +++ b/style.css @@ -0,0 +1,50 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + background-color: #f0f0f0; +} + +header { + background-color: #4CAF50; + color: white; + padding: 10px 0; + text-align: center; +} + +nav ul { + list-style-type: none; + padding: 0; +} + +nav ul li { + display: inline; + margin: 0 15px; +} + +nav ul li a { + color: white; + text-decoration: none; +} + +main { + padding: 20px; +} + +section { + margin-bottom: 20px; + background-color: white; + padding: 15px; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +footer { + background-color: #333; + color: white; + text-align: center; + padding: 10px 0; + position: fixed; + width: 100%; + bottom: 0; +}