This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
70 lines (62 loc) · 2.29 KB
/
html.html
File metadata and controls
70 lines (62 loc) · 2.29 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WebDev</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<header id="topo">
<a href="html.html" title="HTML - HyperText Markup Language" class="logo"><b>H</b>yper<b>T</b>ext <b>M</b>arkup <b>L</b>anguage</a>
</header>
<nav>
<ul>
<li><a href="internet.html" title="Internet">Internet</a></li>
<li><a href="#html" title="Estrutura de um domumento HTML">HTML</a></li>
<li><a href="#tag" title="Estrutura de uma tag HTML">TAGs</a></li>
<li><a href="#css" title="Estrutura de uma regra CSS">CSS</a></li>
<li><a href="tags.html" title="Principais Tags HTML">Lista de Tags</a></li>
</ul>
</nav>
<article>
<hr>
<h1 id="html">HTML - HyperText Markup Language</h1>
<hr>
<h2>Estrutura de um domumento HTML</h2>
<img src="imagens/html-tree.png" alt="Estrutura de um documento HTML" title="Foto extraida de http://dabrook.org/resources/posters/" class="esquerda">
<pre>
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<header>
</header>
<section>
</section>
<footer>
</footer>
</body>
</html>
</pre>
<p>
As <code>tags</code> HTML não são Case-Sensitive, ou seja, não fazem distinção entre MAIUSCULA e minuscula.
</p>
<hr class="quebra">
<a href="#topo">Subir</a>
<h2 id="tag">Estrutura de uma Tag HTML</h2>
<img src="imagens/anatomia-tag.png" title="Foto extraida de http://dabrook.org/resources/posters/" class="poster">
<hr class="quebra">
<a href="#topo">Subir</a>
<h2 id="css">Estrutura de uma regra CSS</h2>
<img src="imagens/anatomia-regra-css.png" alt="" title="Foto extraida de http://dabrook.org/resources/posters/" class="poster">
</article>
<footer>
<section class="licenca">
<a rel="license" href="http://creativecommons.org/licenses/by-nc/3.0/deed.pt"><img alt="Licença Creative Commons" style="border-width:0" src="http://i.creativecommons.org/l/by-nc/3.0/88x31.png" /></a><br />Este trabalho foi licenciado com uma Licença <a rel="license" href="http://creativecommons.org/licenses/by-nc/3.0/deed.pt">Creative Commons - Atribuição-NãoComercial 3.0 Não Adaptada</a>.
</section>
</footer>
</body>
</html>