-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a10c7d
commit b6f09f7
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |