diff --git a/modulo1/html-sistema-loja/__MACOSX/._add-produto.html b/modulo1/html-sistema-loja/__MACOSX/._add-produto.html new file mode 100644 index 0000000..e7bc821 Binary files /dev/null and b/modulo1/html-sistema-loja/__MACOSX/._add-produto.html differ diff --git a/modulo1/html-sistema-loja/__MACOSX/._ctrl-estoque.html b/modulo1/html-sistema-loja/__MACOSX/._ctrl-estoque.html new file mode 100644 index 0000000..e7bc821 Binary files /dev/null and b/modulo1/html-sistema-loja/__MACOSX/._ctrl-estoque.html differ diff --git a/modulo1/html-sistema-loja/__MACOSX/._funcionarios.html b/modulo1/html-sistema-loja/__MACOSX/._funcionarios.html new file mode 100644 index 0000000..e7bc821 Binary files /dev/null and b/modulo1/html-sistema-loja/__MACOSX/._funcionarios.html differ diff --git a/modulo1/html-sistema-loja/add-produto.html b/modulo1/html-sistema-loja/add-produto.html new file mode 100644 index 0000000..93a569e --- /dev/null +++ b/modulo1/html-sistema-loja/add-produto.html @@ -0,0 +1,55 @@ + + + + + + + Adicionar Produto + + +
+

Nome da lojinha

+
+ +
+ Página Inicial + Controle de Estoque + Adicionar Produto + Funcionários +
+ + +

Adicionar Produto

+
+
+ + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + +
+ +
+ + + \ No newline at end of file diff --git a/modulo1/html-sistema-loja/ctrl-estoque.html b/modulo1/html-sistema-loja/ctrl-estoque.html new file mode 100644 index 0000000..b46842a --- /dev/null +++ b/modulo1/html-sistema-loja/ctrl-estoque.html @@ -0,0 +1,70 @@ + + + + + + + Controle de Estoque + + +
+

Nome da lojinha

+
+ +
+ Página Inicial + Controle de Estoque + Adicionar Produto + Funcionários +
+ +

Controle de Estoque

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FotoDescriçãoPreço (R$)Quantidade disponível
Charmander Charmander Pelucia R$:150,00 10
Squirtle Squirtle Pelucia R$:140,00 10
Bulbasaur Bulbasaur Pelucia R$:130,00 10
Mimikyu Mimikyu Pelucia R$:180,00 10
Umbreon Umbreon Pelucia R$:200,00 10
+ + + \ No newline at end of file diff --git a/modulo1/html-sistema-loja/funcionarios.html b/modulo1/html-sistema-loja/funcionarios.html new file mode 100644 index 0000000..df0ebaa --- /dev/null +++ b/modulo1/html-sistema-loja/funcionarios.html @@ -0,0 +1,28 @@ + + + + + + + Funcionários + + +
+

Nome da loja

+
+ +
+ Página Inicial + Controle de Estoque + Adicionar Produto + Funcionários +
+ +

Funcionários

+ +
Jenifer
+
Vanessa
+
Daniel
+
Alexandre
+ + \ No newline at end of file diff --git a/modulo1/html-sistema-loja/imagem/Bulbasaur.jpg b/modulo1/html-sistema-loja/imagem/Bulbasaur.jpg new file mode 100644 index 0000000..b4e29aa Binary files /dev/null and b/modulo1/html-sistema-loja/imagem/Bulbasaur.jpg differ diff --git a/modulo1/html-sistema-loja/imagem/Charmander.jpg b/modulo1/html-sistema-loja/imagem/Charmander.jpg new file mode 100644 index 0000000..1559fd6 Binary files /dev/null and b/modulo1/html-sistema-loja/imagem/Charmander.jpg differ diff --git a/modulo1/html-sistema-loja/imagem/Mimikyu.png b/modulo1/html-sistema-loja/imagem/Mimikyu.png new file mode 100644 index 0000000..355ab0e Binary files /dev/null and b/modulo1/html-sistema-loja/imagem/Mimikyu.png differ diff --git a/modulo1/html-sistema-loja/imagem/Squirtle.jpg b/modulo1/html-sistema-loja/imagem/Squirtle.jpg new file mode 100644 index 0000000..1447356 Binary files /dev/null and b/modulo1/html-sistema-loja/imagem/Squirtle.jpg differ diff --git a/modulo1/html-sistema-loja/imagem/umbreon.jpg b/modulo1/html-sistema-loja/imagem/umbreon.jpg new file mode 100644 index 0000000..d1e0d7d Binary files /dev/null and b/modulo1/html-sistema-loja/imagem/umbreon.jpg differ diff --git a/modulo1/html-sistema-loja/index.html b/modulo1/html-sistema-loja/index.html new file mode 100644 index 0000000..07cf0a0 --- /dev/null +++ b/modulo1/html-sistema-loja/index.html @@ -0,0 +1,36 @@ + + + + + + + Nome da Loja + + +
+

Bem-vind@ ao nome da loja!

+

Frase de chamada para sua loja

+
+ +
+ Página Inicial + Controle de Estoque + Adicionar Produto + Funcionários +
+ +
+ +
+ +
+

Siga-nos nas redes sociais!

+ +
+ + + +
+
+ + \ No newline at end of file diff --git a/modulo1/projeto-lista-js/lista-exercicios-intro-js/exercicios.js b/modulo1/projeto-lista-js/lista-exercicios-intro-js/exercicios.js new file mode 100644 index 0000000..f9246a1 --- /dev/null +++ b/modulo1/projeto-lista-js/lista-exercicios-intro-js/exercicios.js @@ -0,0 +1,116 @@ +// EXEMPLOS DE IMPLEMENTAÇÃO --------------------------------------------------------------- + +// EXERCÍCIO 0A +function soma(num1, num2) { + // implemente sua lógica aqui + return num1 + num2 +} +function calculaAreaRetangulo(alturaTriangulo, larguraTriangulo) +const alturaTriangulo = Number (prompt("Digite a altura:")) +const larguraTriangulo = Number (prompt("Digite a largura:")) + +const resultado =alturaTriangulo * larguraTriangulo + +console.log (resultado +) + +// EXERCÍCIO 0B +function imprimeMensagem() { + // implemente sua lógica aqui + const mensagem = prompt('Digite uma mensagem!') + + console.log(mensagem) +} + +// EXERCÍCIOS PARA FAZER ------------------------------------------------------------------ + +// EXERCÍCIO 01 +function calculaAreaRetangulo() { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 02 +function imprimeIdade() { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 03 +function calculaIMC(peso, altura) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 04 +function imprimeInformacoesUsuario() { + // implemente sua lógica aqui + // "Meu nome é NOME, tenho IDADE anos, e o meu email é EMAIL." + +} + +// EXERCÍCIO 05 +function imprimeTresCoresFavoritas() { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 06 +function retornaStringEmMaiuscula(string) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 07 +function calculaIngressosEspetaculo(custo, valorIngresso) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 08 +function checaStringsMesmoTamanho(string1, string2) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 09 +function retornaPrimeiroElemento(array) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 10 +function retornaUltimoElemento(array) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 11 +function trocaPrimeiroEUltimo(array) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 12 +function checaIgualdadeDesconsiderandoCase(string1, string2) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 13 +function checaRenovacaoRG() { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 14 +function checaAnoBissexto(ano) { + // implemente sua lógica aqui + +} + +// EXERCÍCIO 15 +function checaValidadeInscricaoLabenu() { + // implemente sua lógica aqui + +} \ No newline at end of file