-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
110 lines (97 loc) · 4.34 KB
/
contato.html
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
108
109
110
<!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">
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<!--FONTS GOOGLE-->
<style>
@import url('https://fonts.googleapis.com/css2?family=Geo&family=Poppins&family=Wire+One&display=swap');
</style>
<!-- jquery -->
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<!-- greensock -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js"></script>
<link rel="stylesheet" href="./assets/css/contato.css">
<script src="https://kit.fontawesome.com/970266a465.js" crossorigin="anonymous"></script>
<title>Meu Blog | Home</title>
</head>
<body>
<div class="overlay">
<h1>CONTATO</h1>
</div>
<header class="header">
<nav class="nav">
<ul>
<a href="index.html" class="nav-item"><li><span style="color:#ffd545;">🡸</span> HOME </li></a>
<a href="projetos.html" class="nav-item"><li>PROJETOS <span>🡺</span></li></a>
<a href="quem-eu-sou.html" class="nav-item"><li>QUEM EU SOU <span>🡺</span></li></a>
</ul>
</nav>
<h1>ENTRE EM CONTATO</h1>
</header>
<div class="social-media">
<ul>
<li><a href="https://www.linkedin.com/in/breno-lopes-do-carmo/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/o_breno_lopes/" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/zTrolly" target="_blank" ><i class="fa fa-github" aria-hidden="true"></i></a></li>
</ul>
</div>
<section class="form-contato">
<form action="https://api.staticforms.xyz/submit" method="post">
<input type="text" name="name" required placeholder="Seu Nome">
<input type="text" name="email" required placeholder="Seu Email" />
<textarea name="message" required></textarea>
<input type="hidden" name="accessKey" value="7b86b289-1653-4e1c-a625-a3b7137d71ef">
<input type="hidden" name="redirectTo" value="https://ztrolly.github.io/BLOG3/contato.html">
<input type="submit" value="Enviar" class="form-buttom" />
</form>
</section>
<p class="footer" style="text-align: center; color: #fff; opacity: 75%;">Assim que o formulário for enviado a página sera recarregada, não se preocupe não aconteceu erro algum!</p>
<script type="text/javascript">
TweenMax.to(".overlay h1", 2, {
opacity: 0,
y: -60,
ease: Expo.easeInOut
})
TweenMax.to(".overlay", 2, {
delay: 1,
top: "-100%",
ease: Expo.easeInOut
})
TweenMax.from(".logo", 1, {
delay: 2.4,
opacity: 0,
y: 20,
ease: Expo.easeInOut
})
TweenMax.staggerFrom(".nav ul li", 1, {
delay: 2.4, opacity: 0, y: 20, ease: Expo.easeInOut
}, 0.2)
TweenMax.staggerFrom(".social-media ul li", 1, {
delay: 2.4, opacity: 0, y: 20, ease: Expo.easeInOut
}, 0.2)
TweenMax.from(".header h1", 2, {
delay: 3.2,
opacity: 0,
y: 20,
ease: Expo.easeInOut
})
TweenMax.from(".form-contato", 2, {
delay: 3.6,
opacity: 0,
y: 20,
ease: Expo.easeInOut
})
TweenMax.from(".footer", 2, {
delay: 3.6,
opacity: 0,
y: 20,
ease: Expo.easeInOut
})
</script>
</body>
</html>