-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (95 loc) · 4.33 KB
/
index.html
File metadata and controls
121 lines (95 loc) · 4.33 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>DevMedia - Cursos de Front End Web</title>
</head>
<body>
<header>
<hgroup>
<h1>Cursos</h1>
<h2>Front End Web</h2>
</hgroup>
<p>Confira nesta página os cursos mais recentes sobre Front End Web.</p>
<nav>
<ul>
<li><a href="http://www.devmedia.com.br/cursos/java">Home</a></li>
<li><a href="http://www.devmedia.com.br/cursos/java">Cursos de Java</a></li>
<li><a href="http://www.devmedia.com.br/cursos/net">Cursos de .Net</a></li>
<li><a href="http://www.devmedia.com.br/cursos/delphi">Cursos de Delphi</a></li>
<li><a href="http://www.devmedia.com.br/cursos/php">Cursos de PHP</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Primeiros passos</h2>
<p>Os cursos de primeiros passos apresentam os conceitos iniciais dentro de uma tecnologia.</p>
<article>
<h3>
<a href="http://www.devmedia.com.br/cursos/frontendweb/o-que-e-html">O que é HTML</a>
</h3>
<figure>
<img src="imagens/1.jpg" alt="O que é HTML">
<figcaption>
Figura 1 - <strong>O que é HTML</strong>
</figcaption>
</figure>
<p>Neste curso conheceremos a HTML.</p>
</article>
<article>
<h3>
<a href="http://www.devmedia.com.br/cursos/frontendweb/primeira-pagina-em-html">Primeira página
em HTML</a>
</h3>
<figure>
<img src="imagens/2.jpg" alt="Primeira página em HTML">
<figcaption>
Figura 2 - <strong>Primeira página em HTML</strong>
</figcaption>
</figure>
<p>Neste curso criaremos uma página utilizando a linguagem HTML.</p>
</article>
</section>
<section>
<h2>Avançando no HTML</h2>
<p>Os cursos avançando apresentam temas mais específicos dentro de uma tecnologia.</p>
<article>
<h3>
<a href="http://www.devmedia.com.br/cursos/frontendweb/conhecendo-as-tags-semanticas-do-html">Conhecendo
as tags semânticas do HTML</a>
</h3>
<figure>
<img src="imagens/3.jpg" alt="Conhecendo as tags semânticas do HTML">
<figcaption>
Figura 3 - <strong>Conhecendo as tags semânticas do HTML</strong>
</figcaption>
</figure>
<p>Neste curso apresentaremos as tags semânticas introduzidas no HTML5.</p>
</article>
<article>
<h3>
<a href="http://www.devmedia.com.br/cursos/frontendweb/introducao-a-acessibilidade-com-html5">Introdução
a acessibilidade com HTML5</a>
</h3>
<figure>
<img src="imagens/4.jpg" alt="Introdução a acessibilidade com HTML5">
<figcaption>
Figura 4 - <strong>Introdução a acessibilidade com HTML5</strong>
</figcaption>
</figure>
<p>Neste curso conheceremos os atributos introduzidos no HTML5 para acessibilidade na web.</p>
</article>
</section>
</main>
<footer>
<nav>
<ul>
<li><a href="http://www.devmedia.com.br/devcasts">DevCasts</a></li>
<li><a href="http://www.devmedia.com.br/artigos">Artigos</a></li>
</ul>
</nav>
<p>© www.devmedia.com.br</p>
</footer>
</body>
</html>