-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
32 lines (27 loc) · 1.38 KB
/
header.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
32
<!DOCTYPE html>
<html>
<head>
<title>Counters Exercise</title>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link type="text/css" media="screen,projection" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
<nav class="orange lighten-1" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="index.php" class="brand-logo">Counters Exercise</a>
<ul class="right hide-on-med-and-down">
<li><a href="p0.php">Page 0</a></li>
<li><a href="p1.php">Page 1</a></li>
<li><a href="p2.php">Page 2</a></li>
<li><a target="_blank" href="https://github.com/tommivitali/Contatori">Source code</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="p0.php">Page 0</a></li>
<li><a href="p1.php">Page 1</a></li>
<li><a href="p2.php">Page 2</a></li>
<li><a target="_blank" href="https://github.com/tommivitali/Contatori">Source code</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">Menu</i></a>
</div>
</nav>