Last active
April 6, 2025 20:14
-
-
Save handrikmagalhaes/594dd30e956e2ceb1d922490af6a4368 to your computer and use it in GitHub Desktop.
Clínica Veterinária
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" lang="pt-BR"> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:[email protected]&display=swap" rel="stylesheet"> | |
<title>Document</title> | |
</head> | |
<body> | |
<div class="header"> | |
<div class="logo"> | |
<img src="logo.png" height="100px"> | |
</div> | |
<h2 id="titulo">MaxVet - Clínica Veterinária</h2> | |
<div class="nav"> | |
<a href="#" class="menu">Início</a> | |
<a href="#" class="menu">Pacientes</a> | |
<a href="#" class="menu">Clientes</a> | |
</div> | |
</div> | |
<main class="container"> | |
</main> | |
</body> | |
</html> |
This file contains hidden or 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
.header{ | |
display: flex; | |
vertical-align: middle; | |
background-color: lightblue; | |
border-radius: 10px; | |
} | |
.logo{ | |
padding-top: 15px; | |
display: flex; | |
margin-right:15px; | |
} | |
#titulo{ | |
margin-left: 40px; | |
font-family: "Dancing Script", cursive; | |
color: mediumblue; | |
font-size: 55px; | |
} | |
.nav{ | |
display: flex; | |
padding-top: 20px; | |
margin-right: 70px; | |
display:flex; | |
float:right; | |
background-color: lightgray; | |
width:100%; | |
} | |
.menu{ | |
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; | |
font-size: medium; | |
text-decoration: none; | |
margin-left: 15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment