-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoggedInHeader.php
More file actions
28 lines (26 loc) · 916 Bytes
/
LoggedInHeader.php
File metadata and controls
28 lines (26 loc) · 916 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
<html>
<head>
<link rel="icon" href="images/favicon.ico" type="image/ico">
<title>Talk2Me</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<header id="header">
<a href="index.php" class="image-link"><img src="images/logo.png" width="100" height="100"></a>
<nav id="nav">
<ul>
<!--<li>-->
<!--<a href="#" class="icon solid fa-angle-down">Browse</a>
<ul>-->
<li><a href="index.php">Home</a></li>
<li><a href="AboutUs.php">About Us</a></li>
<li><a href="contact.php">Contact Us</a></li>
<li><a href="Login.php">Celebrities Page</a></li>
<li><a href='logout.php'>Click here to log out</a></li>
</ul>
</nav>
</header>
</body>
</html>