diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-04-05 15:37:11 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-04-05 15:37:11 +0530 |
| commit | 46d89228ed7a577628dc8c37c2e72161e39ec0a4 (patch) | |
| tree | 8a6a688ee6a8edda064a1d526de237fa48ddc969 /php/01-common-theme/common/header.php | |
| parent | 5b6b5b62a0dfd4525db9a97a52634d1f8bb8e19c (diff) | |
Diffstat (limited to 'php/01-common-theme/common/header.php')
| -rw-r--r-- | php/01-common-theme/common/header.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/php/01-common-theme/common/header.php b/php/01-common-theme/common/header.php new file mode 100644 index 0000000..83d762f --- /dev/null +++ b/php/01-common-theme/common/header.php @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>Welcome! | CEIT Open Course Content</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link type="text/css" rel="stylesheet" media="all" href="/common/style.css" /> + </head> + <body> + <header class="main-head"> + <a href="/">CEIT Open Course Content</a> + </header> + <nav class="main-nav"> + <ul> + <li><a href="/">Home</a></li> + <li><a href="/contact.php">Contact</a></li> + </ul> + </nav> + |
