-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcabecalho.php
22 lines (20 loc) · 901 Bytes
/
cabecalho.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<nav class="py-4" style="background-color:#515E26;">
<div class="d-flex">
<a class="me-auto ms-5" href="#">
<img src="./Icons/icon-logo.png" alt="" width="100px" height="auto"
class="d-inline-block align-text-top">
</a>
<div class="mx-5 my-auto">
<a href="./home.php" class=" text-white text-decoration-none mx-4">Home</a>
<a href="./cardsServico.php" class="text-white text-decoration-none mx-4">Serviço</a>
<a href="./paginaContato.php" class=" text-white text-decoration-none mx-4">Contato</a>
</div>
<div class="me-5 my-auto">
<a href="./login-template.php" class=" text-white text-decoration-none">Login</a>
</div>
</div>
</nav>