-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcabecalho.php
31 lines (31 loc) · 1.28 KB
/
cabecalho.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><?php print $cabecalho_title; ?></title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/estilos.css">
<?php print @$cabecalho_css; ?>
<link rel="stylesheet" href="css/mobile.css" media="(max-width: 939px)">
<link href="https://fonts.googleapis.com/css?family=Bad+Script|PT+Sans|Source+Code+Pro" rel="stylesheet">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="bower_components/html5shiv/dist/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header class="container">
<h1><a href="index.php"><img src="img/logo.png" alt="Mirror Fashion"></a></h1>
<p class="sacola">
Nenhum item na sacola de compras
</p>
<nav class="menu-opcoes">
<ul>
<li><a href="#">Sua Conta</a></li>
<li><a href="#">Lista de Desejos</a></li>
<li><a href="#">Cartão Fidelidade</a></li>
<li><a href="sobre.php">Sobre</a></li>
<li><a href="#">Ajuda</a></li>
</ul>
</nav>
</header>