-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (115 loc) · 4.14 KB
/
index.html
File metadata and controls
119 lines (115 loc) · 4.14 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
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Saiba mais sobre o FlipPDF, uma ferramenta gratuita para converter JPG, PNG para PDF e PDF para JPG online.">
<meta name="keywords" content="sobre o FlipPDF, conversor de PDF online, JPG para PDF grátis, PDF para JPG">
<meta name="author" content="MFelipeG">
<meta name="robots" content="index, follow">
<title>FlipPDF - Converta Arquivos Online</title>
<link rel="manifest" href="/manifest.json">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f4f8;
min-height: 100vh;
color: #333;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
nav {
width: 100%;
max-width: 1200px;
text-align: right;
padding: 10px 0;
}
nav a {
margin-left: 15px;
color: #3498db;
text-decoration: none;
font-size: 16px;
}
.container {
background-color: #fff;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 600px;
width: 100%;
margin-top: 20px;
}
h1 {
color: #2c3e50;
margin-bottom: 20px;
font-size: 28px;
}
h2 {
color: #2c3e50;
font-size: 20px;
margin-top: 20px;
margin-bottom: 10px;
}
p {
font-size: 16px;
color: #7f8c8d;
margin-bottom: 15px;
line-height: 1.5;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.cta-button {
display: inline-block;
background-color: #2ecc71;
color: white;
padding: 12px 25px;
border-radius: 8px;
text-decoration: none;
margin-top: 20px;
font-size: 16px;
}
.cta-button:hover {
background-color: #27ae60;
}
</style>
</head>
<body>
<nav>
<a href="converter.html">Converter</a>
</nav>
<div class="container">
<h1>Sobre o FlipPDF</h1>
<h2>O que é o FlipPDF?</h2>
<p>O FlipPDF é uma ferramenta online gratuita criada para simplificar a conversão de arquivos. Com ele, você pode transformar imagens JPG e PNG em PDFs ou extrair imagens de PDFs em poucos cliques, de forma rápida e segura.</p>
<h2>Por que escolher o FlipPDF?</h2>
<p>Nosso objetivo é oferecer uma solução prática e acessível para todos. O FlipPDF é 100% gratuito, não exige cadastro e permite personalizar o tamanho do PDF (A4, Carta ou A3) e o nome do arquivo. Converta seus arquivos em segundos, sem complicações!</p>
<h2>Quem somos?</h2>
<p>O FlipPDF foi criado por MFelipeG, um desenvolvedor apaixonado por criar ferramentas úteis e acessíveis. Queremos ajudar você a resolver suas necessidades de conversão de arquivos de forma simples e eficiente.</p>
<h2>Entre em contato</h2>
<p>Tem dúvidas ou sugestões? Fale conosco pelo e-mail <a href="mailto:contato@flippdf.com">contato@flippdf.com</a> e ajude a melhorar o FlipPDF!</p>
<a href="converter.html" class="cta-button">Experimente o FlipPDF Agora!</a>
</div>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then(reg => console.log('Service Worker registrado!', reg))
.catch(err => console.log('Erro ao registrar Service Worker:', err));
});
}
</script>
</body>
</html>