E a saga continua :D
Fiz algumas alterações no projeto que ficaram bem interessantes :) https://github.com/PhanthroX/studying-html-css/tree/desenvolvimento
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Contato - Pâmela Medeiros</title>
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/style-home.css">
<link rel="stylesheet" href="src/css/style.css">
<link rel="stylesheet" href="src/css/style-contato.css">
</head>
<body>
<header>
<div class="caixa">
<h1><img id="logo" src="src/img/foto_modelo2.png"></h1>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="servicos.html">Serviços</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
<h1 id="pam">Pâmela Medeiros</h1>
<div class="principal-inicio">
<img id="logo-studio" src="src/img/Logo em png.png">
</div>
</header>
<main>
<form>
<label for="nomesobrenome">Nome e Sobrenome</label>
<input type="text" id="nomesobrenome">
<label for="email">Email</label>
<input type="text" id="email">
<label for="telefone">Telefone</label>
<input type="text" id="telefone">
<input type="submit" value="Enviar Formulário">
</form>
</main>
<footer>
<img id="logo_rodape" src="src/img/Logo em png.png">
<p class="copy">© Copyright Pâmela Medeiros</p>
</footer>
</body>
</html>
style-contato.css
/*
Alterando a largura do conteúdo main da contact page.
*/
main {
width: 940px;
margin: 0 auto;
}
/*
Criando uma margem para espaçamento entre o formulário, header e footer.
*/
form {
margin: 40px 0;
}
/*
Alterando a forma de exibição das etiquetas e dos inputs, assim como o espaçamento,
tamanho da fonte e da margem.
*/
form label {
display:block;
font-size: 20px;
margin: 0 0 10px;
}
form input {
display: block;
margin: 0 0 20px;
padding: 10px 25px;
width: 50%;
}