-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1017 Bytes
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 1017 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #ffcc00;
color: #000;
text-align: center;
padding: 50px;
}
.cta-button {
background-color: #008000;
color: #fff;
padding: 15px 25px;
font-size: 20px;
border: none;
cursor: pointer;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
</style>
</head>
<body>
<h1>Faça sua primeira venda em 24 horas ou devolveremos o seu dinheiro! +1000 reais!</h1>
<button class="cta-button" onclick="window.location.href='https://boadica.online/faca-sua-primeira-venda-em-24-horas/'">Clique Aqui para participar</button>
<script>
// Adicione seu JavaScript aqui
</script>
</body>
</html>