-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (88 loc) · 3.8 KB
/
index.html
File metadata and controls
88 lines (88 loc) · 3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta name="description" content="Web tutorials" />
<meta name="keywords" content="HTML, CSS, JavaScript" />
<meta name="author" content="Marcelo Ildefonso Campos" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<title>Curso de JavaScript</title>
</head>
<body>
<main>
<h1>🌐 SITE HELLO JAVASCRIPT</h1>
<img class="foto" src="https://upload.wikimedia.org/wikipedia/commons/3/3b/Javascript_Logo.png" alt="logo javascript" />
<h2 style="text-align: center">Quem sou eu?</h2>
<div>
<p>
Meu nome é <strong>Marcelo I Campos</strong>, sou estudante aficionado de HTML, CSS e JAVASCRIPT. Aprendendo (aos 40 anos de vida) a
programar e desenvolver. Veja meus estudos nos links abaixo e obrigado!
</p>
</div>
<p>
> SOBRE quem sou eu
<a href="https://marceloicampos.com/about" target="_blank"> CLIQUE AQUI</a>
</p>
<p>
<img class="logo" src="./imagens/icone_arroba.png" alt="ícone arroba de e-Mail" />
Meu e-Mail marceloicampos@outlook.com > > >
<a href="mailto:marceloicampos@outlook.com"> mande um e-Mail pra mim clicando aqui.</a>
</p>
<h1>Aulas em JavaScript</h1>
<h2>Exercícios em Aulas</h2>
<p>
<a href="./aulas/aula04/ex001.html">Aula 04 - Ex001 - Hello World</a>
</p>
<p>
<a href="./aulas/aula05/ex002.html">Aula 05 - Ex002 - Variáveis e Tipos Primitivos</a>
</p>
<p>
<a href="./aulas/aula06/ex003.html">Aula 06 - Ex003 - Tratamentos de Dados</a>
</p>
<p>
<a href="./aulas/aula06/ex004.html">Aula 06 - Ex004 - Strings and Numbers</a>
</p>
<p>
<a href="./aulas/aula07/ex005.html">Aula 07 - Ex005 - Operadores - Parte 01</a>
</p>
<p>
<a href="./aulas/aula08/ex006.html">Aula 08 - Ex006 - Operadores - Parte 02</a>
</p>
<p>
<a href="./aulas/aula09/ex007.html">Aula 09 - Ex007 - Introdução ao DOM - Parte 01</a>
</p>
<p>
<a href="./aulas/aula10/ex008.html">Aula 10 - Ex008 - Eventos no DOM - Parte 02</a>
</p>
<p>
<a href="./aulas/aula11/ex009.html">Aula 11 - Ex009 - Condições - Parte 01</a>
</p>
<p>
<a href="./aulas/aula12/ex010.html">Aula 12 - Ex010 - Condições - Parte 02</a>
</p>
<p>
<a href="./aulas/aula13/ex011.html">Aula 13 - Ex011 - Repetições - Parte 01</a>
</p>
<h2>Exercícios em JavaScript</h2>
<p>
<a href="./aulas/ex001/">Aula Prática 001</a>
</p>
<p>
<a href="./aulas/ex002/">Aula Prática 002</a>
</p>
<h2>Desafios em JavaScript</h2>
<p><a href="">Aguardando Novos Desafios</a></p>
</main>
<div class="foot">
<hr />
<footer>
<p>
Estudos em HTML5, CSS3 E JAVASCRIPT por
<a href="https://marceloicampos.com/about" target="_blank">Marcelo Ildefonso Campos</a>
</p>
</footer>
</div>
</body>
</html>