-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
107 lines (91 loc) · 3.67 KB
/
Copy pathsuccess.html
File metadata and controls
107 lines (91 loc) · 3.67 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
105
106
107
<!doctype html>
<html lang="pt-br">
<head>
<!-- Fontes do Google -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Fonte do Google - Poppins -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Lary a pioral" />
<meta
name="description"
content="Portfólio da Lary,
desenvolvedora Full Stack especializado em criar experiências
digitais incríveis. Conheça meus projetos e entre em contato."
/>
<meta name="robots" content="index, follow" />
<link rel="icon" type="image/svg+xml" href="./assets/icons/icon.png" />
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- SWIPER CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">
<!-- Devicon CSS -->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
<!-- Google Fonts -->
<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=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Phosphor Icons -->
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<title>Larissa Mendonça - Desenvolvedora Full Stack</title>
</head>
<body>
<div id="mouse-glow"></div>
<header>
<div class="menu-content">
<!--CABEÇALHO DA PAGINA -->
<a href="index.html" id="titulo" aria-label="Página inicial">
<span class="logo-name"><Outwake</span><span class="logo-tag"><span class="logo-emoji">👾</span>/></span>
</a>
<!-- Mobile Menu Button -->
<button class="mobile-menu-btn" id="mobile-btn" aria-label="Open Menu">
<i class="ph ph-list"></i>
</button>
<!-- Right Menu Container (Nav + Theme) -->
<div class="right-menu" id="right-menu">
<nav>
<ul class="menu-list">
<li><a href="index.html">Inicio</a></li>
<li><a href="index.html#about">Sobre</a></li>
<li><a href="index.html#projects">Projetos</a></li>
<li><a href="index.html#stacks">Stacks</a></li>
<li><a href="index.html#contact">Contatos</a></li>
</ul>
</nav>
<button class="theme-btn" id="toggle-theme" aria-label="Toggle Theme">
<i class="ph ph-moon"></i>
</button>
</div>
</div>
</header>
<!-- Corpo Principal da Pagina Sucesso-->
<main>
<section class="success-container">
<article class="success-content">
<figure class="success-icon">
<img
src="./assets/img/success.svg"
alt="Enviado com Sucesso"
class="float-animation"
/>
</figure>
<h1>E-mail enviado com sucesso!</h1>
<h2>
Obrigado pelo seu contato <br />
Sua mensagem foi recebida e será retornada em breve.
</h2>
</article>
<a class="botao" href="index.html">Voltar para o Início</a>
</section>
</main>
<footer>
<p>Desenvolvido por Lary, a Pioral ❤. Todos os direitos reservados.</p>
</footer>
<!-- Script JavaScript principal-->
<script src="./assets/js/script.js"></script>
</body>
</html>