-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
46 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projeto basico sobre HTML</title>
</head>
<body>
<header>
<img src="HTML-sample.png" alt="Ilustração do HTML">
<h1>O que é HTML?</h1>
</header>
<section>
<header>
<h2>Post</h2>
</header>
<article>
<header>
<img src="HTML-logo.png" alt="Icone do HTML">
<h3>O que é HTML?</h3>
</header>
<p>
HTML é a sigla para <a href="https://www.hostinger.com.br/tutoriais/o-que-e-html-conceitos-basicos" target="_blank">HyperText Markup Language</a>, que em português significa Linguagem de Marcação de Hipertexto. É uma linguagem de computador que define a estrutura e o significado do conteúdo de uma página web.
</p>
</article>
</section>
<footer>
<ul>
<li>
<a href="mailto:tomgbi2021@gmail.com">tomgbi2021@gmail.com</a>
</li>
<li>
<a href="https://www.linkedin.com/in/glediston-ferreira-367348265" target="_blank">linkedIn</a>
</li>
<li>
<a href="https://github.com/" target="_blank">GitHub</a>
</li>
</ul>
</footer>
</body>
</html>