-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (84 loc) · 3.84 KB
/
index.html
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
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<title>Minha primeira página</title>
<meta charset="utf-8">
<link href="CSS/style_2.css" rel="stylesheet">
</head>
<body>
<!--ISSO É UM COMENTÁRIO-->
<a href="#sorvete_de_manga"> Sorvete</a>
<h1 id="titulo">Título 1</h1>
<h2>Sub-título</h2>
<div id="paragrafos">
<p id="paragrafo1">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p class="texto_verde"> Esse é um <strong>texto em negrito</strong></p>
<!-- A tag <strong> significa que essa parte do texto em negrito é mais importante enquanto a Tag <b> não,a Tag <b> só deixa em negrito e não significa nada. -->
<p class="texto_verde"> Esse é um <em>texto em itálico</em></p>
<p class="texto_verde"> Esse é um <mark>texto com marcação</mark></p>
<!-- A Tag <mark> serve para marcar o texto.-->
<p> Esse é um texto <small>com a tag small</small></p>
<!-- A Tag <small> diminui o tamanho do texto.-->
<div class="subDiv">
<p> Esse é um <del>texto que foi removido</del> e substituido por esse.</p>
<!-- A Tag <del> serve para riscar o texto no meio como se p/ remover ele. Do mesmo modo funciona a tag <s>, mas assim como a tag <b> ela não tem semântica e a <del> sim-->
<p> Esse é um <ins>texto que foi inserido.</ins></p>
<!-- O texto fica marcado com uma linha em baixo-->
<p> Esse é um <sub>texto subscritp.</sub></p>
<!-- o texto fica pequeno e mais baixo É mais usado em artigo ciêntifico-->
</div>
</div>
<p> Esse é um <sup>texto superscript. </sup>Exemplo: x<sup>2</sup> = 10</p>
<!-- Ao contrário do <sub> o <sup> fica acima.-->
<a href="sobre.html">sobre Programador Br</a>
<!-- a tag <a> é umas das tags que precisa usar um atributo especial p/ direcionar p/ onde a gente quer ir, nesse caso foi usado o href.-->
<br>
<br>
<br>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQJO7F1aghAdYgO2t_-H18nnedCybbNxjYrDQ&usqp=CAU" alt="Sorvete de chocolate" width=250>
<!-- alt ajuda o google a ler a imagem -->
<br>
<br>
<br>
<a href="https://www.nutren.com.br/protein/receitas/sorvete-de-manga-e-nutren-protein">
<img id="sorvete_de_manga" src="imagens/sorvete_manga.jpg" alt="Sorvete de manga" height=150>
</a>
<h2> Lista de compras </h2>
<ul>
<li>Arroz</li>
<li>Feijão</li>
<li>Refrigerante</li>
</ul>
<h2>Ranking dos melhores vendedores</h2>
<ol> <!-- isso é uma lista ORDENADA-->
<li>Marcela</li>
<li>João</li>
<li>Marcos</li>
</ol>
<table>
<tr> <!-- A Tag <tr> cria linhas na tabela-->
<th>Nome</th> <!-- <th> cria o cabeçalho da tabela-->
<th>Telefone</th>
<th>Email</th>
</tr>
<tr><!-- A Tag <tr> cria linhas na tabela-->
<td>Igor</td>
<td>9999999</td>
<td>contato@programador.com</td>
</tr>
<tr><!-- A Tag <tr> cria linhas na tabela-->
<td>Joana</td>
<td>9888888</td>
<td>joana@programador.com</td>
</tr>
</table>
<div id="base"></div>
<div id="container">
<div id="conteúdo">
Texto qualquer
</div>
</div>
Outro texto
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
</html>