-
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
1 parent
87ccbc7
commit 4ecc3c7
Showing
2 changed files
with
49 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,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Barbearia Alura</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
|
||
<body> | ||
<img id="banner" src="banner.jpg"> | ||
|
||
<h1>Sobre a Barbearia Alura</h1> | ||
|
||
<p>Localizada no coração da cidade a <strong>Barbearia Alura</strong> traz para o mercado | ||
o que há de melhor para o seu cabelo e barba. Fundada em 2019, a Barbearia Alura já é | ||
destaque na cidade e conquista novos clientes a cada dia.</p> | ||
|
||
<p id="missao"><em>Nossa missão é: <strong>"Proporcionar auto-estima e qualidade de vida | ||
aos clientes"</strong>.</em></p> | ||
|
||
<p>Oferecemos profissionais experientes e antenados às mudanças no mundo da moda. | ||
O atendimento possui padrão de excelência e agilidade, garantindo qualidade e satisfação | ||
dos nossos clientes.</p> | ||
</body> | ||
|
||
</html> |
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,23 @@ | ||
body { | ||
background: #CCCCCC; | ||
} | ||
|
||
#banner { | ||
width: 100%; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
} | ||
|
||
p { | ||
text-align: center; | ||
} | ||
|
||
#missao { | ||
font-size: 20px; | ||
} | ||
|
||
em strong { | ||
color: #FF0000; | ||
} |