-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcabecalhoCliente.php
23 lines (21 loc) · 1.07 KB
/
cabecalhoCliente.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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="./homeCliente.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 d-flex" style="gap:20px; background-color:green;">
<a href="./meus_dados.php" class=" text-white text-decoration-none">Meus dados</a>
<a href="./meus_servicos.php" class=" text-white text-decoration-none">Meus serviços</a>
<a href="./logout.php" class=" text-white text-decoration-none">Logout</a>
</div>
</div>
</nav>