Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Upload do site
  • Loading branch information
jaymepsantos authored Aug 15, 2024
1 parent 1c28960 commit 896e489
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Site Simples</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Bem-vindo ao Meu Site</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#sobre">Sobre</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</header>

<main>
<section id="home">
<h2>Home</h2>
<p>Esta é a página inicial do meu site simples.</p>
</section>

<section id="sobre">
<h2>Sobre</h2>
<p>Aqui você pode saber mais sobre o site.</p>
</section>

<section id="contato">
<h2>Contato</h2>
<p>Entre em contato através do formulário abaixo.</p>
<form>
<label for="nome">Nome:</label>
<input type="text" id="nome" name="nome">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<button type="submit">Enviar</button>
</form>
</section>
</main>

<footer>
<p>&copy; 2024 Meu Site Simples. Todos os direitos reservados.</p>
</footer>
</body>
</html>
50 changes: 50 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 896e489

Please sign in to comment.