-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
32 lines (29 loc) · 1008 Bytes
/
header.php
File metadata and controls
32 lines (29 loc) · 1008 Bytes
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
<?php
require __DIR__ . '/data.php';
require __DIR__ . '/functions.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wonderful Coffee</title>
<link rel="stylesheet" href="css/globel.css">
<link rel="stylesheet" href="css/img.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/class.css">
<link rel="stylesheet" href="css/media.css">
<link rel="icon" type="image/png" sizes="16x16" href="images/faviconCoffee.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito">
</head>
<body>
<header>
<h1>Welcome to Wonderful Coffee</h1>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="ourCoffee.php">Our Coffee</a></li>
<li><a href="reviews.php">Our reviews</a></li>
</ul>
</nav>
</header>