forked from sarila/supportMySchool-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
50 lines (45 loc) · 1.71 KB
/
Copy pathheader.php
File metadata and controls
50 lines (45 loc) · 1.71 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="css/styles.css">
<title>SMS | Budget Transparency in Education</title>
</head>
<body>
<div class="container">
<!-- header start -->
<div class="header_container">
<nav class="navbar">
<div class="navbar-brand">
<a href="./">
<img src="./images//logo.png" alt="sms_logo">
</a>
</div>
<div class="" id="navbarNav">
<ul class="navbar-nav" id="dropdown">
<div class="close_icon_container">
<i class="fas fa-times close_icon" id="close_menu_icon" style="font-size: 25px;"></i>
</div>
<li class="nav-item active">
<a class="nav-link" href="./">home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="budget.php">Budget</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.php">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.php">About</a>
</li>
</ul>
<div class="close_btns">
<i class="fas fa-bars" id="show_menu_icon" style="font-size: 25px;"></i>
</div>
</div>
</nav>
</div>