-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.html
139 lines (117 loc) · 4.02 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!doctype html>
<html lang="pt-br">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/compiler/bootstrap.css">
<link rel="stylesheet" href="node_modules/bootstrap/compiler/">
<div class="container">
<a href="/index.html">
<img src="/img/img1.jpg" class="img-fluid d-block">
</a>
</div>
<div class="container" align="center">
<a href="/index.html">
<img src="/img/img2.jpg" class="img-fluid d-block" width="700" height="4">
<h5 class="text-dark ">Ações sustentáveis para um mundo em transformação </h5>
</a>
</div>
<style>
body {
font-family: Arial, Helvetica, sans-serif
}
.content {
display: flex;
justify-content: center
}
.contato {
width: 100%;
max-width: 500px
}
.form {
display: flex;
flex-direction: column
}
.field {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #DDD;
border-radius: 5px;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px
}
textarea {
height: 150px;
}
</style>
</head>
<body>
<!-- nav bar -->
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark " style="background-color: #48D1CC; ">
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarSite">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSite">
<ul class="navbar-nav mr-auto">
<li class="navbar-item">
<a href="/index.html" class="nav-link text-white">Nosso Fazer</a>
</li>
<li class="navbar-item">
<a href="/equipe.html" class="nav-link text-white">Equipe</a>
</li>
<li class="navbar-item">
<a href="/experiencias.html" class="nav-link text-white">Experiências Realizadas</a>
</li>
<li class="navbar-item">
<a href="/contato.html" class="nav-link text-dark">Contato</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<form class="form-inline">
<input type="search" class="form-control mr-2" placeholder="buscar">
<button class="btn btn-secondary" type="submit">ok</button>
</form>
</ul>
</div>
</nav>
</div>
<div class="container">
<div class="row mb-5">
<div class="col-12 text-center mt-3">
<h1 class="display-4" style="color:#33cccc;"><strong>Contato</strong></h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Vitae, impedit alias dolorem totam blanditiis
explicabo quibusdam
consequatur praesentium consequuntur a aperiam voluptas accusamus libero earum asperiores dolore nulla quod
sunt?</p>
</div>
</div>
<section class="content">
<div class="contato">
<form class="form" method="POST" action="./email.php">
<input class="field" name="name" placeholder="Nome">
<input class="field" name="email" placeholder="E-Mail">
<textarea class="field" name="mensagem" placeholder="Digite a mensagem aqui"></textarea>
<input class="field" type="submit" value="enviar">
</form>
</div>
</section>
</div>
</div>
<!-- Footer -->
<div class="container">
<footer class="py-3" style="background-color: #48D1CC; ">
<div class="container">
<p class="m-0 text-center text-white">Copyright © Your Website 2017</p>
</div>
</footer>
</div>
<!-- sass --watch node_modules/bootstrap/scss:node_modules/bootstrap/compiler -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
</body>
</html>