-
Notifications
You must be signed in to change notification settings - Fork 49
Aluna Sandra Gonçaves (contém exerícios de HTML, CSS, Lógica e JS) #202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sandra-goncalves
wants to merge
24
commits into
WoMakersCode:master
Choose a base branch
from
sandra-goncalves:Javascript
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
86affa0
Aula 1
sandra-goncalves e8d6e07
Exercício Aula 2
sandra-goncalves 0c1c242
Aula 1
sandra-goncalves a6cb09f
Exercício Aula 2
sandra-goncalves 2bdd3c8
Merge branch 'master' of https://github.com/sandra-goncalves/primeiro…
sandra-goncalves 6a6e054
Add files via upload
sandra-goncalves cd20e49
Exercício 3
sandra-goncalves 10159ee
Exercício aula 3
sandra-goncalves 5032c9d
Exercício aula 1
sandra-goncalves c93c476
enviando os exercícios 1/2/3
sandra-goncalves 753d273
corrigindo o exercício 3
sandra-goncalves ec225f4
Merge branch 'master' of https://github.com/WoMakersCode/primeiros-pa…
sandra-goncalves 45440cd
aulas-css/exercicios/aula1
sandra-goncalves a0925ed
enviando o exercicio 2
sandra-goncalves 217e332
Merge branch 'master' of https://github.com/WoMakersCode/primeiros-pa…
sandra-goncalves 5b1519e
enviando para github exercicio 1
sandra-goncalves b128254
Update Exercicio aula 1.por
sandra-goncalves 8930469
Aula-logica/exercício/aula2
sandra-goncalves 239041d
Aula-logica/exercicio/aula2
sandra-goncalves 20bd303
Merge pull request #3 from sandra-goncalves/sandra-goncalves-patch-2
sandra-goncalves 279cdd3
Exercico 2 aula-logica
sandra-goncalves dd81a63
Exercicio aula 1
sandra-goncalves fea0d37
enviando para github exercicio photo grid
sandra-goncalves 379e1e4
enviando para Github exercicio 2 javascript
sandra-goncalves File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| aula-css/aula1/exemplos/index.html |
This file contains hidden or 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,30 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Primeiros Passos</title> | ||
| <link rel="stylesheet" href="style.css" /> | ||
| <!-- <link rel="stylesheet" href="print.css" media="print" /> --> | ||
| </head> | ||
| <body> | ||
| <div> | ||
| <h1>Foto de gatinho</h1> | ||
| <img src="https://purr.objects-us-east-1.dream.io/i/o7pjQLT.jpg" alt="" /> | ||
| <p> | ||
| Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam et | ||
| aliquet ex. Fusce tempus ante arcu, eu tristique ex faucibus a. | ||
| Suspendisse auctor, est quis efficitur facilisis, dolor lectus venenatis | ||
| orci, ut sagittis tellus massa ac nibh. Praesent finibus magna eu lorem | ||
| semper laoreet. Mauris eu ligula et justo luctus aliquet at ut felis. | ||
| Etiam aliquam vitae magna et malesuada. Vivamus at pretium nisi, ut | ||
| viverra diam. Nam sagittis sagittis quam, et posuere lorem sagittis sit | ||
| amet. Aliquam in dolor posuere, fringilla justo eget, rhoncus sapien. | ||
| Vivamus finibus sed justo eu lobortis. Praesent vel metus et nisi | ||
| vestibulum blandit eget ut nibh. Nunc venenatis feugiat ante, et | ||
| eleifend est lacinia in. Ut tellus augue, fermentum in feugiat vitae, | ||
| luctus nec felis. Aliquam eget turpis arcu. | ||
| </p> | ||
| </div> | ||
| </body> | ||
| </html> |
This file contains hidden or 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,17 @@ | ||
| h1 { | ||
| color: green; | ||
| font-size: 32px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| p { | ||
| color: #000; | ||
| font-size: 18px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| img { | ||
| width: 400px; | ||
| margin: 0 auto; | ||
| display: block; | ||
| } |
This file contains hidden or 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,47 @@ | ||
| h1 { | ||
| color: #ff0000; | ||
| font-size: 20px; | ||
| } | ||
| p { | ||
| color: #000000; | ||
| font-family: "Arial", sans-serif; | ||
| font-size: 12px; | ||
| } | ||
|
|
||
| img { | ||
| width: 300px; | ||
| } | ||
|
|
||
| @media (min-width: 768px) { | ||
| h1 { | ||
| font-size: 24px; | ||
| color: blue; | ||
| } | ||
| p { | ||
| font-size: 18px; | ||
| color: green; | ||
| } | ||
| img { | ||
| width: 600px; | ||
| } | ||
| } | ||
|
|
||
| @media print { | ||
| h1 { | ||
| color: green; | ||
| font-size: 32px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| p { | ||
| color: #000; | ||
| font-size: 18px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| img { | ||
| width: 400px; | ||
| margin: 0 auto; | ||
| display: block; | ||
| } | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,60 @@ | ||
| programa | ||
| { | ||
|
|
||
| funcao inicio() | ||
| { | ||
| inteiro operacao | ||
|
|
||
| real a, b, soma, sub, mult, div | ||
|
|
||
| caracter op | ||
|
|
||
| enquanto op = "s" faça | ||
| { | ||
| escreva("Escolha a operacao: 1 - Soma; 2 - Subtração; 3 - Multiplicação; 4 - Divisão") | ||
| leia(operacao) | ||
|
|
||
| escreva("Digite o primeiro número: ") | ||
| leia(a) | ||
|
|
||
| escreva("Digite o segundo número: ") | ||
| leia(b) | ||
|
|
||
| soma = a + b | ||
| sub = a - b | ||
| mult = a * b | ||
| div = a / b | ||
|
|
||
| Se (operacao == 1) | ||
| { | ||
| escreva("\nA soma dos números é igual a: ", soma) | ||
| } | ||
| senao se(oeracao == 2) | ||
| { | ||
| escreva("\nA subtração dos números é igual a: ", sub) | ||
| } | ||
| senao se(operacao == 3) | ||
| { | ||
| escreva("\nA multiplicação dos números é igual a: ", mult) | ||
| } | ||
| senao se(operacao == 4) | ||
| { | ||
| escreva("\nA divisão dos números é igual a: ", div. ("\n") | ||
|
|
||
| escreva("deseja continuar? (s/n): ") | ||
| leia (op) | ||
| } | ||
| } | ||
| } | ||
| } | ||
| /* $$$ Portugol Studio $$$ | ||
| * | ||
| * Esta seção do arquivo guarda informações do Portugol Studio. | ||
| * Você pode apagá-la se estiver utilizando outro editor. | ||
| * | ||
| * @POSICAO-CURSOR = 883; | ||
| * @PONTOS-DE-PARADA = ; | ||
| * @SIMBOLOS-INSPECIONADOS = ; | ||
| * @FILTRO-ARVORE-TIPOS-DE-DADO = inteiro, real, logico, cadeia, caracter, vazio; | ||
| * @FILTRO-ARVORE-TIPOS-DE-SIMBOLO = variavel, vetor, matriz, funcao; | ||
| */ |
This file contains hidden or 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
This file contains hidden or 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
Empty file.
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Faltou abrir a lista não ordenada, exemplo: