-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdiario.html
More file actions
80 lines (72 loc) · 2.71 KB
/
diario.html
File metadata and controls
80 lines (72 loc) · 2.71 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="assets/image/logokeytogo.png" type="image/x-icon" />
<link rel="stylesheet" href="style/style.css" />
<title>Key To Go</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet" />
</head>
<body>
<div class="keytogo-container">
<header>
<div class="logo">KEY TO GO</div>
<div class="menu-toggle" onclick="toggleMenu()">☰</div>
<nav id="nav-menu">
<a href="index.html" target="_self" rel="external">Home</a>
<a href="sobre.html" target="_self" rel="external">Sobre</a>
<a href="portfolio.html" target="_self" rel="external">Portfólio</a>
<a href="contato.html" target="_self" rel="external">Contato</a>
<a href="diario.html" target="_self" rel="external">Diário</a>
</nav>
</header>
<div class="hero-wrapper">
<section class="hero">
<div class="hero-text">
<h1 class="textdiario">
Fique por dentro das últimas novidades
<h1 class="textdiario">
Nos sigam em nossas redes Sociais
</h1>
</div>
<div class="hero-image">
<img src="assets/image/img-hero-diario.png" alt="Descrição da imagem" />
</div>
</section>
</div>
<section class="diario_instagram">
<!-- Elfsight Instagram Feed | Untitled Instagram Feed -->
<script src="https://static.elfsight.com/platform/platform.js" async></script>
<div class="elfsight-app-72cb995c-8262-4388-9502-bd2ed954f6cc" data-elfsight-app-lazy></div>
</section>
<footer>
<div class="footer-section">
<h3>Informações</h3>
<p>Endereço</p>
<p>☎: +55 (41) 9 9666-9588</p>
<p>📧: contato@keytogo.com.br</p>
</div>
<div class="footer-section">
<h3>Links úteis</h3>
<p>Política de Privacidade</p>
<p>Termos de Uso</p>
<p>Suporte</p>
</div>
<div class="footer-section">
<h3>Redes Sociais</h3>
<p>Facebook</p>
<a href="https://www.instagram.com/key_to_go_gestao_de_obra_/" taget="_blank">
<p>Instagram</p>
</a>
<p>LinkedIn</p>
</div>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>