-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.php
154 lines (144 loc) · 3.92 KB
/
homepage.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<html>
<head>
<title>LearNandPractise</title>
<style type="text/css">
*{
background-color: blue;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
background-color: black;
}
header{
color:white;
}
#square {
width: 100px;
height: 100px;
background: #EDEDEC;
}
#01{
margin:auto;
}
.container-fluid {
background-color:#222222;
color:#FFFFEF;
}
.sidenav{
background-color:#EDEDEC;
color:#FFFFEF;
}
</style>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<header>
<center>
<br><br>
<div id=01>
<img src="https://goo.gl/eMWgaa">
<h2>LearNandPractise<?php echo "hiiiiiii"; ?>
</h2>
<hr width=18%>
<h4>All in 1 education site</h4>
</div>
</center>
</header>
<nav class="navbar navbar-inverse ">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">LearNandPractise</a>
</div>
<div class="center-block">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Exam TimeTable</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="change_passwordform.php">Change Password</a></li>
<li><a href="remove.php">Remove Account</a></li>
<li><a href="sessionend.php">Sign Out</a></li>
</ul>
</div>
<form class="navbar-form navbar-right">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</form>
</div>
</nav>
</div>
</div>
</form>
</nav>
<!--33333333333333333333333333-->
<div class="w3-row">
<div class="w3-col m2 w3-dark-gray w3-center">
<button class="w3-button w3-ripple w3-block w3-black" id="display">Chapters</button>
<button class="w3-button w3-ripple w3-block w3-black">Subjects</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b1">1.
Mathematics</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b2">2.English
</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b3">3.Science
</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b4">4.History
</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b5">5.Geography</button>
<br>
<div class="w3-col m8 w3-black w3-block w3-center">
<center>
<table cellspacing="50px">
<tr>
<td>
<div id=square></div>
</td>
<td>
<div id=square></div>
</td>
<td>
<div id=square></div>
</td>
</tr>
</table>
</center>
</div>
<div class="w3-col m2 w3-dark-gray w3-center">
<button class="w3-button w3-ripple w3-block w3-black">Subjects</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b1">1.
Mathematics</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b2">2.English
</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b3">3.Science
</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b4">4.History
</button>
<br>
<button class="w3-button w3-ripple w3-block w3-pale-yellow" id="b5">5.Geography</button>
<br>
</div>
<br>
<footer class="container-fluid text-center">
<h3>© 2023 by Aliraza Lakhani and Siddharth Mishra</h3>
<br>
</footer>
</body>
</html>