Skip to content
Open
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 semana3/sistema-loja/__MACOSX/._add-produto.html
Binary file not shown.
Binary file added semana3/sistema-loja/__MACOSX/._ctrl-estoque.html
Binary file not shown.
Binary file added semana3/sistema-loja/__MACOSX/._funcionarios.html
Binary file not shown.
73 changes: 73 additions & 0 deletions semana3/sistema-loja/add-produto.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="css/style.css" rel="stylesheet">
<title>Adicionar Produto</title>
<style>
.texto-rosa{
color: palevioletred;
padding-bottom: 10px 0;
margin-top: 10px 0;
}

.texto-roxo{
color: cornflowerblue;
padding-bottom: 10px;
margin-top: 10px 0;
}
</style>
</head>
<body>
<div>
<h1><p class="texto-rosa">Beautiful and Care</p></h1>
</div>

<div><p class="texto-roxo"></p>
<a href="">Página Inicial</a>
<a href="">Controle de Estoque</a>
<a href="">Adicionar Produto</a>
<a href="">Funcionários</a>
</div>


<h2><p class="texto-rosa">Adicionar Produto</p></h2>
<form action="">
<div>
<label for="link-foto"><h4><p class="texto-roxo">Link para Foto:</p></h4></label>
<input type="url" id="link-foto" name="link-foto">
</div>

<div>
<label for="descricao"><h4><p class="texto-roxo">Descrição do Produto:</p></h4></label>
<!-- Adicione o id apropriado para o input abaixo -->
<input type="text" id="descricao" name="Descricao">
</div>

<div>
<label for="preco"><h4><p class="texto-roxo">Descrição do Produto:</p></h4>Preço (em R$): </label>
<!-- Adicione o id apropriado e o type para receber números abaixo -->
<input type="number" id="preco" name="Preço">
</div>

<div>
<!-- Preencha as propriedades necessárias para os elementos abaixo -->
<label for="quantidade"><h4><p class="texto-roxo">Descrição do Produto:</p></h4>Quantidade disponível: </label>
<input type="number" id="quantidade" name="Quantidade Disponivel">
</div>

<div class="form-add">
<!-- Adicione ao type do botão abaixo o valor para que ele submeta o formulário -->
<form>
<label for="nome">Nome: </label>
<input type="text" placeholder="Insira seu Nome" id="nome">
<button type="submit">Adicionar</button>
</form>
</div>

</form>

</body>
</html>
19 changes: 19 additions & 0 deletions semana3/sistema-loja/controle-de-vendas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/style.css" rel="stylesheet">
<title>Document</title>
<style>



</style>

</head>
<body>

</body>
</html>
93 changes: 93 additions & 0 deletions semana3/sistema-loja/ctrl-estoque.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions semana3/sistema-loja/funcionarios.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="css/style.css" rel="stylesheet"/>
<title>Funcionários</title>
<style>
.texto-rosa{
color: palevioletred;
padding: 10px 0;
margin: 10px 0;
}

.texto-roxo {
color: cornflowerblue;
padding: 10px 0;
margin: 10px 0;
}

.texto-rosa1 {
color: black;
background-color: palevioletred;
display: inline;

}

.texto-roxo1 {
color: black;
background-color: cornflowerblue;
display: inline;
}
</style>

</head>
<body>
<div>
<h1><p class="texto-rosa">Beautiful and Care</p></h1>
</div>

<div>
<a href="">Página Inicial</a>
<a href="">Controle de Estoque</a>
<a href="">Adicionar Produto</a>
<a href="">Funcionários</a>
</div>

<h2><p class="texto-roxo">Funcionários</p></h2>
<!-- Crie uma lista de funcionários usando as tags que você aprendeu hoje abaixo \/ -->
<ul>
<li><h4><p class="texto-rosa1">Monica</p></h4></li>
<li><h4><p class="texto-roxo1">Analu</p></h4></li>
<li><h4><p class="texto-rosa1">Débora</p></h4></li>
<li><h4><p class="texto-roxo1">Pedro Henrique</p></h4></li>


</ul>
</body>
</html>
74 changes: 74 additions & 0 deletions semana3/sistema-loja/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Beautiful and Care</title>
<link href="css/style.css" rel="stylesheet">
<style>
.texto-rosa{
color: palevioletred;
padding: auto;
margin: 10px 0;
}
.texto-roxo{
color: cornflowerblue;
padding: auto;
margin: 10px 0;
}
.texto.rosa1 {
display: inline;
padding: auto;
margin: 10px 0;
}

.texto-roxo1 {
color: black;
background-color: pink;
display: inline;
padding: auto;
margin: 10px 0;

}

.texto-tamanho{
display: inline;
padding: 10px 20px;
margin: 10px 0;
}
</style>
</head>
<body>
<div>
<h2><p class="texto-roxo">Bem-vindos ao</p></h2> <em><h1><u><p class="texto-rosa">Beautiful and Care</p></u></em></h1>
<h2><p class="texto-roxo">Cuidar da sua Beleza não eh custo, é <b>INVESTIMENTO!!</b></h2></A></p>
</div>

<div>

<a href=""><p class="texto-rosa1">Página Inicial</p></a>
<a href=""><p class="texto-rosa1">Controle de Estoque</p></a>
<a href=""><p class="texto-rosa1">Adicionar Produto</p></a>
<a href=""><p class="texto-rosa1"></p>Funcionários</p></a>
<a href=""><p class="texto-rosa1"></p>Vendas</p></a>
<a href=""><p class="texto-rosa1"></p>Histórico de Vendas</p></a>
</div>

<div>
<!-- ADICIONAR INFORMAÇOES SOBRE SUA LOJINHA -->
</div>

<div>
<h3><p class="texto-roxo1">Parcelamos suas compras em até 10x sem Juros!</p></h3>
<h3><p class="texto-roxo1">Enviamos para todo o Brasil!</p></h3>
<h3><p class="texto-roxo1">Siga-nos nas redes sociais!</p></h3>

<div>
<img src="https://image.flaticon.com/icons/png/512/25/25305.png"/>
<img src="https://image.flaticon.com/icons/png/512/25/25425.png"/>
<img src="https://image.flaticon.com/icons/png/512/8/8800.png"/>
</div>
</div>
</body>
</html>
Empty file added semana3/sistema-loja/style.css
Empty file.
19 changes: 19 additions & 0 deletions semana3/sistema-loja/vendas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="css/style.css" rel="stylesheet">

<style>

</style>
<title>Pagina de Vendas</title>
</head>
<body>

</body>
</html>