-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·35 lines (34 loc) · 1.24 KB
/
header.php
File metadata and controls
executable file
·35 lines (34 loc) · 1.24 KB
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
32
33
34
35
<!DOCTYPE html>
<html lang="pt">
<head>
<title><?php print $header_title;?></title>
<link rel="stylesheet" href="./CSS/reset.css">
<?php @print $header_css; ?>
<link rel="stylesheet" href="./CSS/general.css">
<link rel="stylesheet" href="./CSS/mobile.css" media="(max-width:939px)"/>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">
<script src="js/multi_step_form.js" type="text/javascript"></script>
</head>
<body>
<header>
<div id="logo">
<img src="./img/logobold.png" width="100" height="50" alt=""/>
</div>
<nav id="menu">
<ul>
<li><a href="<?php echo $nav1link;?>"><?php print $nav1;?></a></li>
<li><a href="<?php echo $nav2link;?>"><?php print $nav2;?></a></li>
<li><a href="<?php echo $nav3link;?>"><?php print $nav3;?></a></li>
</ul>
</nav>
</header>