This repository was archived by the owner on Feb 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_header.php
More file actions
46 lines (45 loc) · 2.19 KB
/
_header.php
File metadata and controls
46 lines (45 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>First php</title>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link href="/css/material-design-iconic-font.min.css" rel="stylesheet" media="all">
<link href="/css/font-awesome.min.css" rel="stylesheet" media="all">
<link href="https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<link href="/css/select2.min.css" rel="stylesheet" media="all">
<link href="/css/daterangepicker.css" rel="stylesheet" media="all">
<link href="css/main.css" rel="stylesheet" media="all">
</head>
<body>
<div class="bg-dark collapse" id="navbarHeader" style="">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 py-4">
<h4 class="text-white">About project</h4>
<p class="text-muted">This firs site on PHP!</p>
</div>
<div class="col-sm-4 offset-md-1 py-4">
<h4 class="text-white">PAGES</h4>
<ul class="list-unstyled">
<li><a href="login.php" class="text-white">Login</a></li>
<li><a href="registration.php" class="text-white">Registration</a></li>
<li><a href="UserProfile.php" class="text-white">User Profile</a></li>
<li><a href="animalsList.php" class="text-white">Animals</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="navbar navbar-dark bg-dark box-shadow">
<div class="container d-flex justify-content-between">
<a href="/" class="navbar-brand d-flex align-items-center">
<strong>INDEXXX</strong>
</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarHeader" aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>