-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
58 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |