Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
BRUN0R2 authored Dec 18, 2024
1 parent 5e44de4 commit e2a80ec
Showing 1 changed file with 58 additions and 9 deletions.
67 changes: 58 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,58 @@
<!doctype html>
<html>
<head>
<title>My fast download!</title>
</head>
<body>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
</body>
</html>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fast Download</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
}
header {
background-color: #3498db;
color: white;
padding: 20px 0;
text-align: center;
}
section {
padding: 20px;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
button {
background-color: #3498db;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 16px;
margin-top: 20px;
}
button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<header>
<h1>Fast Download</h1>
<p>Baixe seus arquivos rapidamente com nossa plataforma!</p>
</header>
<section>
<div class="container">
<h2>Por que escolher o Fast Download?</h2>
<p>Nosso serviço de download rápido permite que você baixe arquivos em velocidades incríveis, sem complicações. Seguro, eficiente e fácil de usar.</p>
<button>Comece Agora!</button>
</div>
</section>
</body>
</html>

0 comments on commit e2a80ec

Please sign in to comment.