-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
about.php
64 lines (49 loc) · 2.07 KB
/
about.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
<?php include 'includes/header.php';?>
<!-- Navigation Bar -->
<?php include 'includes/navbar.php';?>
<!-- Navigation Bar -->
<div class="container">
<div class="row">
<!-- Page Content -->
<div class="col-md-8">
<h1 class="page-header">About | Us </h1>
Hi there!
<br>
This application is a NEWS PUBLISHING SYSTEM which allows users to post and manage various kinds of news content.<br>
Or you can say a simple CMS.
<br><br><br>
Full Project: <a href="https://www.github.com/anirbandutta9/NEWS-BUZZ" > NEWS_BUZZ </a>
<br><br><br><br>
Main Features:
<br><br>
# Multiple user access: allows multiple type of users to login <br>
# Functional Admin panel: allows all admins to manage their content properly with admin panel <br>
# CRUD functionalities: allows all users to create,read,update and delete their content in a managed format <br>
# Profile update option: allows users to update their profile/account details <br>
# Secure registration and login option for users <br>
# Trending news updates: allows user to view all trending news around the world (using google news api) <br>
# Search news: option for search all content
<br><br><br>
Tools used:
<br><br>
#Front-End: HTML, CSS <br>
#Back-End: PHP <br>
#DataBase: MySQL <br>
<br><br><br>
Developed By: <br><br>
Name: Anirban Dutta <br>
Email: [email protected] <br>
Website: www.anirbandutta.xyz <br>
<br>
<br>
</div>
<div class="col-md-4">
<?php include 'includes/sidebar.php';
?><!-- Footer -->
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>