-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
35 lines (24 loc) · 946 Bytes
/
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
33
34
35
<?php session_start(); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Silverado Cinema</title>
<style>
details{ font-family: 'Oswald'}
</style>
<link rel="stylesheet" href="static/css/style.css" />
<link href='https://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</head>
<body>
<header class="header">
<a href="index.php">
<div><img border="0" alt="home" src="static/img/logo.PNG" width=500 height=150/></div>
</a>
</header>
<nav class="nav">
<a>Home</a> | <a href="sessions.php">Out Now</a> | <a href="contact.php">Contact Us</a> | <a href="cart.php">Shopping Cart</a>
</nav>
<main class="main">