Skip to content

Commit

Permalink
Merge pull request #41 from ronierlima/main
Browse files Browse the repository at this point in the history
Aula
  • Loading branch information
devronier authored Jul 13, 2024
2 parents c691177 + cbc87f0 commit d7614b9
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aulas/2024-03-18/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```
Aula ministrada pelo Elias
```
18 changes: 18 additions & 0 deletions aulas/2024-07-08/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Manipulação</title>
</head>
<body>

<h1 id="titulo">Meu nome é </h1>



<script src="script.js"></script>

</body>
</html>
10 changes: 10 additions & 0 deletions aulas/2024-07-08/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const nome = prompt("Digite seu nome")

// document.body.innerHTML = document.body.innerHTML + "<h2 >" + nome + "</h2>"
// document.body.innerHTML += "<h2>" + nome+ "</h2>"
document.body.innerHTML += `<h2>${nome}</h2>`

// Atividade de Casa

// Receber do prompt uma cor entre verde, amarelo, vermelho
// Dependendo da cor colocar uma div redonda no html com a cor escolhida
3 changes: 3 additions & 0 deletions aulas/2024-07-08/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#titulo {
color: red;
}

0 comments on commit d7614b9

Please sign in to comment.