Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-zimmerman authored May 16, 2024
1 parent 3a10c7d commit b6f09f7
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
19 changes: 19 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./javascript.js"></script>
<link rel="stylesheet" href="style.css">
<title>Java Script</title>
</head>

<body>
<head>
<h1>Java Script</h1>
<h2>Aula 2 09/05/2024 - The beggin</h2>
<h3>Hello Word</h3>

</head>
</body>
</html>
50 changes: 50 additions & 0 deletions javascript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Comentario em uma linha

/* comentario em varias linhas
por exemplo assim */

// declarando
//var nome;
//var idade;

//atribuindo
//nome = "um nome";
//idade = 30

//inicializando
//var aula = "Aula 02";


//contas
//var numeroA = 2
//var numeroB = 3
//var numeroC = 5

//var resultadoDaSoma = numeroA + numeroB
//var resultadoDaDivisao = nume - numeroA

var nome = "Juan"
var sobrenome = "Zimmermann"
var ano = 2024
var idade = 27

var nomeCompleto = nome + sobrenome
var idadeNome = idade + nome

var nome = prompt("insira o nome aqui")
var resultado = nome + " " + "Seja Bem-vindo";
alert(resultado);

var valor = prompt("insira um valor a ser multiplicado por 7")
var valorNumerico = parseInt(7);
var resultadoNumerico = valor * valorNumerico;
alert(resultadoNumerico);

var nome = prompt("insira seu 1º nome aqui")
var sobrenome = prompt("insira sobrenome aqui")
var resultadoNomeCompleto = nome + " " + sobrenome;
alert(resultadoNomeCompleto);


console.log(inserirNome)
console.log("bem - vindo")
11 changes: 11 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
body{
background: rgb(206, 206, 206);
}

h1, h2{
text-align: center;
}

h2{
margin-top: 5em;
}

0 comments on commit b6f09f7

Please sign in to comment.