-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirsthtml.html
More file actions
executable file
·66 lines (66 loc) · 2.25 KB
/
firsthtml.html
File metadata and controls
executable file
·66 lines (66 loc) · 2.25 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
<!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>Portfólio</title>
<link rel="stylesheet" href="styles/firstcss.css" />
</head>
<body>
<header class="header">
<nav class="header__menu">
<a class="header__menu__link" href="firsthtml.html"> Home </a>
<a class="header__menu__link" href="about.html "> Sobre mim </a>
</nav>
</header>
<main class="presentation">
<section class="presentation__content">
<h1 class="presentation__content__head1">
Eleve seu negócio digital a outro nível
<strong class="featured-title">com um Front-end de qualidade!</strong>
</h1>
<p class="presentation__content__p">
Olá! Sou Joana Santos, desenvolvedora Front-end com especialidade em
React, HTML e CSS. Ajudo pequenos negócios e designers a colocarem em
prática boas ideias. Vamos conversar?
</p>
<div class="presentation__links">
<h2 class="contact__info">Acesse minhas redes</h2>
<a
class="presentation__links__anchor"
href="https://www.linkedin.com/in/thales-quadros-320413244/"
>
<img
class="assets"
src="images/linkedin.png"
alt="linkedin symbol"
/>
Linkedin
</a>
<a
class="presentation__links__anchor"
href="https://GitHub.com/thaleseqb"
>
<img class="assets" src="images/github.png" alt="github symbol" />
GitHub
</a>
<a class="presentation__links__anchor" href="">
<img class="assets" src="images/twitter.png" alt="twitter symbol" />
Twiter
</a>
</div>
</section>
<div>
<img
class="presentation__image"
src="images/studying.jpg"
alt="Estudar para crescimento pessoal"
/>
</div>
</main>
<footer class="footer">
<p>Desenvolvido por Alura.</p>
</footer>
</body>
</html>