forked from alexandresaints/landing-page-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (58 loc) · 2.24 KB
/
index.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
<!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 href="/styles/style.css" rel="stylesheet">
<link href="/styles/fonts.css" rel="stylesheet">
<link href="/styles/media.css" rel="stylesheet">
<title>CloudFit - Consultoria em Cloud Computing ...</title>
</head>
<body>
<header>
<div id="title">
<h1>CloudFit</h1>
<h1>Solutions</h1>
</div>
<ul>
<a href="#"><li>Início</li></a>
<a href="#"><li>Serviços</li></a>
<a href="#"><li>Sobre</li></a>
<a href="#"><li>Contato</li></a>
</ul>
</header>
<main>
<aside>
<h2><span>Inscreva-se agora</span></h2>
<h2>para uma proposta</h2>
<h2>de consultoria</h2>
<p>
Fazemos o planejamento e execução da sua jornada para a nuvem, projetos de transformação de arquiteturas tornando-as escalável, resiliente e enxuta utilizando as melhores práticas do CAF e WAF. Consultoria para revisão para os serviços de FinOps e readequação de ambientes.
</p>
<form>
<input type="text" placeholder="Nome">
<input type="email" placeholder="E-mail">
<input type="description" placeholder="Descreva a sua necessidade">
<input type="submit" value="Enviar >">
<?php
if(isset($POST['submit']){
$to = '[email protected]';
$subject = 'Website Change Reqest';
$headers = "From: [email protected]\r\n";
$headers .= "Reply-To: [email protected]\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$message = 'Test Email';
$message .= '<h1>Hello, World!</h1>';
mail($to, $subject, $message, $headers);
}
?>
</form>
</aside>
<article>
<img src="./components/images/77d0a7c454e658833800528e748edbe9.png" alt="Cloud Manager">
</article>
</main>
</body>
</html>