forked from MarleneLins/portfolio-digital-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (91 loc) · 5.22 KB
/
index.html
File metadata and controls
104 lines (91 loc) · 5.22 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
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
<DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Portfolio website</title>
</head>
<body>
<!---Cabeçalho-Main-->
<div class="background">
<nav>
<h2> PORTFÓLIO </h2 >
<ul class="cabeçalho-link">
<li><a href="index.html">Inicio</a></li>
<li><a href="sobremim.html">Sobre mim</a></li>
<li><a href="meutrabalho.html">Meu trabalho</a></li>
<li><a href="contato.html">Contato</a></li>
</ul><!--cabeçalho-link-->
<a href="#" class="btn">Inscreva-se</a>
</nav>
<div class="Main">
<h4>Ola, meu nome é</h4>
<h1>Marlene <span>Salete Koch Lins</span></h1>
<h3>Professora de Pensamento Computacional</h3>
<div class="Container-btn">
<form>
<input type="email" nome="email" id="mail" placeholder="Envie seu Email">
<input type="submit" name="submit" value="Começar">
</form>
</div><!--Container-btn-->
</div><!--Main-->
</div><!--background-->
<!--Começo-da-seção-sobre-->
<section class="background-color-Sobre">
<div class="main-sobre">
<img src="foto4.png">
<div class="Text-sobre">
<h2>Sobre Mim</h2>
<h5><apan>Profa. Pensamento Computacional</span></h5>
<p>Sou Professora de pensamento computacional. O meu objetivo com o componente curricular é incentivar e orientar os estudantes com projetos e idéias de construção de páginas de internet, usando HTML e CSS, considerando que esse conhecimento pode auxiliá-los nos dias atuais e para suas profissões no futuro.</p>
<button type =" button " > Vamos conversar </button > <!--Button-->
</div><!--Text-sobre-->
</div><!--main-sobre-->
</section><!--background-color-Sobre-->
<!--Começo-da-seção-nossos-serviços-->
<div class="Container-serviços">
<div class="title">
<h2>Meu Trabalho</h2>
</div><!--title-->
<div class="Caixa">
<div class="Card">
<i class="fas fa-bars"></i>
<h5>Professora de Pensamento Computacional</h5>
<div class="Paragrafo-button">
<p> Orienta construção de sites básicos com dois principais objetivos: primeiramente, ele precisa funcionar em todos os dispositivos. Segundo, precisa ser o mais autoesplicativo possível </p>
<button type="button">Ler Mais</button><!--button-->
</div><!--Paragrafo-button-->
</div><!--Card-->
<div class="Card">
<i class="fas fa-user"></i>
<h5>Professora de Biologia</h5>
<div class="Paragrafo-button">
<p>Ministra as aulas de Biologia, aplica avaliações, desenvolve trabalhos em aula e esclarece dúvidas.</p>
<button type="button">Ler Mais</button><!--button-->
</div><!--Paragrafo-button-->
</div><!--Card-->
</div><!--Caixa-->
</div><!--Conatiner-serviços-->
<!--Contatos-->
<div class="me-contate">
<p>Venham! Vamos aprender juntos?</p>
<button type="button">Enviar mensagem</button><!--button-->
</div><!--me-contate-->
<!--Rodapé--->
<footer>
<h6>Marlene Salete Koch Lins</h6>
<p>Para mais HTML E CSS, tutorias - por favor clique no link abaixo para ter acesso aos conteúdos</p>
<div class="Redes-sociais">
<a href ="https://www.facebook.com/" > <i class =" fab fa-facebook-f " ></i > </a >
<a href ="https://www.instagram.com/marlskl/" > <i class =" fab fa-instagram " ></i > </a >
<a href ="https://github.com/MarleneLins" > <i class =" fab fa-github " ></i > </a >
</div><!--Redes-sociais-->
<p class="end">CopyRight By Marlene Salete Koch Lins</p>
</footer>
</body>
</html>