-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
115 lines (68 loc) · 3.12 KB
/
index.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
114
115
<?php include 'includes/connection.php';?>
<?php include 'includes/header.php';?>
<?php include 'includes/navbar.php';?>
<br><br>
<link rel="stylesheet" type="text/css" href="styles.css" media="all" />
<link rel="stylesheet" type="text/css" href="demo.css" media="all" />
<!-- jQuery -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- FlexSlider -->
<script type="text/javascript" src="js/jquery.flexslider-min.js"></script>
<script type="text/javascript" charset="utf-8">
var $ = jQuery.noConflict();
$(window).load(function() {
$('.flexslider').flexslider({
animation: "fade"
});
$(function() {
$('.show_menu').click(function(){
$('.menu').fadeIn();
$('.show_menu').fadeOut();
$('.hide_menu').fadeIn();
});
$('.hide_menu').click(function(){
$('.menu').fadeOut();
$('.show_menu').fadeIn();
$('.hide_menu').fadeOut();
});
});
});
</script>
<div class="slider_container">
<div class="flexslider">
<ul class="slides">
<li>
<a href="#"><img src="images/slider/slider1.jpg" alt="" title=""/></a>
<!-- <div class="flex-caption">
<div class="caption_title_line"><h2>Easy Notes Management</h2><p>Now easily manage all kind of notes by uploading them here.</p></div>
</div> -->
</li>
<li>
<a href="#"><img src="images/slider/slider2.jpg" alt="" title=""/></a>
<!-- <div class="flex-caption">
<div class="caption_title_line"><h2>Upload Various Files</h2><p>User can upload various types of files like PDF, PPT, DOC etc..</p></div>
</div> -->
</li>
<li>
<a href="#"><img src="images/slider/slider3.jpg" alt="" title=""/></a>
<!-- <div class="flex-caption">
<div class="caption_title_line"><h2>Controled By Admin</h2><p>Everying is managed and controled by administrator</p></div>
</div> -->
</li>
</ul>
</div>
<div>
<p style="color:white"> Share Note is a web based notes sharing and management system which helps students and teachers to share their notes online effectively. <br>
It reduces the wasting of time in manually distributing notes to each individual.
It greatly overcomes the lack of availability and converts the manual old school paperwork to a fully automated and managed online system.
Share Note allows it's users to securely register and log in to their individual accounts and create, read , update, delete notes according to their needs.
It provides notes to everyone in a very secure manner. Multiple users can work in this system at the same time under centralized supervision by administrator.
It is a very useful notes management system for Colleges, Schools and other Institutes to manage and share their notes in an secure, efficient and effective manner. </p>
<hr>
</div>
</div>
</div>
</div>
</body>
</html>
<?php include 'includes/footer.php';?>