-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit d7fbc89
Showing
1 changed file
with
92 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Serviços de Design Gráfico</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"> | ||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> | ||
<style> | ||
body { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
header { | ||
background-color: #007bff; | ||
color: white; | ||
text-align: center; | ||
padding: 50px 0; | ||
} | ||
|
||
header img { | ||
margin-top: 20px; | ||
} | ||
|
||
section { | ||
padding: 60px 0; | ||
} | ||
|
||
.bg-light { | ||
background-color: #f8f9fa !important; | ||
} | ||
|
||
.bg-secondary { | ||
background-color: #6c757d !important; | ||
color: white; | ||
} | ||
|
||
footer { | ||
background-color: #343a40; | ||
color: white; | ||
text-align: center; | ||
padding: 20px 0; | ||
} | ||
|
||
section h2 { | ||
margin-bottom: 30px; | ||
} | ||
|
||
section ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
section ul li { | ||
margin: 10px 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Serviços de Design Gráfico</h1> | ||
<img src="https://as2.ftcdn.net/v2/jpg/04/60/63/45/1000_F_460634521_wRNAEZe29OTq8INpivFXhKTZv61xMqMG.jpg" alt="Imagem relacionada a design" class="img-fluid"> | ||
</header> | ||
|
||
<section class="bg-light text-dark"> | ||
<div class="container"> | ||
<h2 class="text-center">Sobre Nós</h2> | ||
<p class="text-center">Oferecemos serviços de design gráfico de alta qualidade para atender todas as suas necessidades visuais.</p> | ||
</div> | ||
</section> | ||
|
||
<section class="bg-secondary"> | ||
<div class="container"> | ||
<h2 class="text-center">Nossos Serviços</h2> | ||
<ul> | ||
<li>Criação de Logotipos</li> | ||
<li>Design de Cartões de Visita</li> | ||
<li>Materiais para Redes Sociais</li> | ||
<li>Design de Embalagens</li> | ||
</ul> | ||
</div> | ||
</section> | ||
|
||
<footer> | ||
<p>© 2024 Serviços de Design Gráfico. Todos os direitos reservados.</p> | ||
</footer> | ||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |