-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
21 lines (19 loc) · 928 Bytes
/
header.php
File metadata and controls
21 lines (19 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"> <!-- Sets the character encoding to UTF-8 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Makes the page responsive on mobile devices -->
<title>Some Teams</title> <!-- The title shown in the browser tab -->
<link rel="stylesheet" href="style.css"> <!-- Links to your CSS file for styling -->
</head>
<body>
<header>
<nav>
<!-- Navigation links to the static pages -->
<a href="index.php">Home</a> <!-- Link to the Home page (team cards) -->
|
<a href="about.php">About Me</a> <!-- Link to the About page (your info) -->
<!-- Note: No link for the dynamic Team page because each team is accessed via the home page -->
</nav>
</header>
<main> <!-- Start of the main content section; will be closed at the bottom of each page -->