Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added LearnCSS/Imagens/Sem título.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
65 changes: 65 additions & 0 deletions LearnCSS/div.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Div</title>
<style type="text/css">
#topo{
background : green;
}
#Produtos{
background: red;
}
.objeto{
background: gray;
margin: 1%;
}
#Rodape{
background-color: blanchedalmond;
}
#Assinatura{
background-color: blueviolet;
}
#conteudo{
border: 1px solid red;

}
</style>
</head>
<body>
<div id="Topo">
<img src="Imagens/Sem título.png" alt="" width="300">
<ul>
<li>Home</li>
<li>Produtos</li>
<li>Contatos</li>
</ul>
</div>
<div id="Produtos">
<div class="objeto">
Produto 1
</div>
<div class="objeto">
Produto 3
</div>
<div class="objeto">
Produto 2
</div>
</div>

<div class="Rodape">
Todos os direitos reservados
</div>

<span id="Assinatura">
Vitor Taichi Taira
</span>

<div id="conteudo">
Bordas
Bordas
Bordas
</div>
</body>
</html>
12 changes: 12 additions & 0 deletions LearnHTML/Unes/cadastro.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,21 @@ <h2>Entre em contato</h2>
<a href="index.html">Home</a>|
<a href="cadastro.html">Cadastro</a>|
<a href="contato.html">Quem somos</a>
<hr><br>
<form action="">
Seu email <br>
<input type="text" name="email" id=""><br>
Assunto: <br>
<input type="text" name="Assunto" id=""><br>
Descrição: <br>
<textarea name="descrição" id=""></textarea><br>

<input type="submit" name="" id="" value="Enviar">
</form>


<br><br><br>
<h2>Todos os direitos reservados</h2>

</body>
</html>
4 changes: 2 additions & 2 deletions LearnHTML/Unes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>University Unes</title>
<title>University Unes - Página Principal</title>
</head>
<body>
<body background="imagens/fundo.png">
<p><img src="imagens/logo.png" alt="" width="18%"></p>
<br>
<img src="imagens/capa.png" alt="" width="55%">
Expand Down