-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
56 lines (41 loc) · 1.8 KB
/
contacto.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
<!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 rel="shortcut icon" href="Matio_logo.png" type="image/x-icon">
<title>AOFlix- Contacto</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="estilo.css">
<style>
body{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: none;
}
</style>
</head>
<body>
<div class="principal">
<h1><span style="color: #da3333;text-shadow: 0 0 10px #ece9ea;">Aoflix - Uma plataforma de Streaming</h1>
<p style="font-size: 15px;font-weight: 600;">
Para adicionar o seu filme na plataforma entre em contacto com nosco pelo <span style="color: #fff;">Whatsapp: +244-923-970-811 ou Email: [email protected]</span></p>
<button class="btn btn-default" style="width: 300px;height: 40px;border-radius: 30px;background: none;
backdrop-filter: blur(4px);border: 1px solid #fff;color: #fff;cursor: pointer;" onclick="next()">Voltar</button>
</div>
</div>
</div>
<script>
function next() {
window.location.href = 'index.php';
}
</script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>