-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathhome.php
113 lines (102 loc) · 4.08 KB
/
home.php
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<title>Admin Panel - Front Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<?php echo
?>
<style type="text/css">
p{
font-size: 20px;
text-align: center;
}
h1{
text-align: center;
margin: 30px 0px;
}
h2{
font-size: 36px;
margin: 30px 0px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-md bg-light navbar-light">
<a class="navbar-brand" href="#">Website Logo</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
</ul>
</div>
</nav>
<br>
<div class="container">
<h1>About Admin Panel</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In massa urna, fermentum nec lobortis condimentum, tincidunt at est. Nullam egestas ex orci, vitae vestibulum mauris rhoncus sed. Morbi eget euismod eros. Fusce et ligula eget libero mattis vestibulum. Phasellus ac nibh nec ante imperdiet ultricies non vitae purus. Pellentesque malesuada, turpis non finibus dignissim, tortor lectus egestas turpis, nec ultricies leo orci ac purus. Proin sodales mauris at faucibus porttitor. Cras in risus quis nunc bibendum convallis vitae in odio. Fusce sed dui neque. Duis in pretium mauris, ut dictum sapien. Cras ut diam eget diam pulvinar placerat. Nullam eget pellentesque ipsum. Curabitur justo augue, fringilla eu viverra eget, aliquam in erat. Nullam eleifend hendrerit massa quis hendrerit.</p>
<div class="row">
<div class="col">
<h2 class="text-center">Admin Features</h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="feature-box">
<h3>Easy to Integrate</h3>
<p>In this example, the navigation bar is hidden on small screens and replaced by a button in the top right corner (try to re-size this window).</p>
<p>Only when the button is clicked,</p>
</div>
</div>
<div class="col">
<div class="feature-box">
<h3>Ajax Based Settings</h3>
<p>In this example, the navigation bar is hidden on small screens and replaced by a button in the top right corner (try to re-size this window).</p>
</div>
</div>
<div class="col">
<div class="feature-box">
<h3>User-friendly UI</h3>
<p>In this example, the navigation bar is hidden on small screens and replaced by a button in the top right corner (try to re-size this window).</p>
</div>
</div>
<div class="col">
<div class="feature-box">
<h3>Absolute Free to Sourec Code</h3>
<p>In this example, the navigation bar is hidden on small screens and replaced by a button in the top right corner (try to re-size this window).</p>
</div>
</div>
</div>
</div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Active</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
</nav>
</body>
</html>