-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTags.html
More file actions
29 lines (25 loc) · 1.26 KB
/
Copy pathTags.html
File metadata and controls
29 lines (25 loc) · 1.26 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
<!DOCTYPE html>
<html>
<title>Site para demonstração de Tags</title>
<meta charset="utf-8">
<head>
</head>
<body>
<h1>Demonstração de Tags</h1>
<div>"h1" faz divisões de conteúdo, "p" cria parágrafos, "strong" deixa o texto em <strong>negrito</strong>.</div>
<p>"title" e "meta charset" são exemplos de metadados </p>
<h2>Agora algumas imagens</h2>
<img src="https://tudosobrehospedagemdesites.com.br/site/wp-content/uploads/2021/04/o-que-e-html-topo-728x273.png" alt="programando" width="500" height="200">
<p></p>
<img src="https://media.geeksforgeeks.org/wp-content/cdn-uploads/20220714111443/HTML-Introduction.jpg" alt="programando html" width="500" height="200">
<h2>Para formulários:</h2>
<p>"form action" cria formulários, vide o exemplo abaixo:</p>
<form action="form.php">
<label style="text-align:left;" for = "tag">Qual a tag que voce mais utiliza no html?</label><br>
<input type = "text" id="tag" name="tag"><br> <!-- forms -->
<label style="text-align:left;" for = "linguagem">Qual a linguagem mais útil no seu dia a dia?</label><br>
<input type = "linguagem" id="linguagem" name="linguagem"><br> <!-- forms -->
<input type = "submit" value= "Enviar">
</form>
</body>
</html>