-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (48 loc) · 1.94 KB
/
index.html
File metadata and controls
63 lines (48 loc) · 1.94 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>World Wide Web - Página Principal</title>
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="./src/css/reset.css">
</head>
<body>
<header>
<h1>World Wide Web!</h1>
<nav>
<ul>
<li><a href="./src/index-historia.html" class="a-volta">História</a></li>
</ul>
</nav>
</header>
<main>
<section class="introducao">
<h1>Introdução</h1>
<p>World Wide Web, o famoso WWW, é um sistema de documentos dispostos na Internet que
permitem o acesso às
informações apresentadas no formato de hipertexto. Para ter acesso a tais informações pode-se usar um
programa de computador chamado navegador. </p>
</section>
<figure>
<img src="./src/images/imagem-principal.png" alt="Imagem principal"
title="Boneco pintando a as letras WWW de azul" class="imagem">
</figure>
<article class="sobre-hipertexto">
<h2>O que é hipertexto?</h2>
<p>Os hipertextos são textos exibidos em formato digital, os quais podem conter informações em formato de
imagens, sons, vídeos, etc.</p>
</article>
</main>
<br>
<br>
<footer>
<a href="https://www.instagram.com/elton_batista19" target="_blank"><img
src="./src/images/social-media/instagram.svg"></a>
<a href="https://www.linkedin.com/in/fransuelton/" target="_blank"><img
src="./src/images/social-media/linkedin.svg"></a>
<a href="https://github.com/Fransuelton" target="_blank"><img src="./src/images/social-media/github.svg"></a>
</footer>
</body>
</html>