-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
27 lines (24 loc) · 864 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Serenity Travel: <?php echo $pageTitle; ?></title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap" rel="stylesheet">
<link href="styles.css" type="text/css" rel="stylesheet">
<style>
#hero {
background-image: url("images/<?php echo $heroImage ?>");
}
</style>
</head>
<body class="<?php echo $pageClass; ?>">
<div id="container">
<header>
<a href="index.php"><img src="images/logo.png" alt="Serenity Travel" class="logo"></a>
<?php
include('sociallinks.php');
include('navigation.php');
?>
</header>