-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomePage.php
32 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Test Page</title>
<link rel="stylesheet" href="css/template.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap" rel="stylesheet">
<?php
require('templates/header.inc.php');
?>
</head>
<body style="background-color: #080710">
<div class="background">
<div class="shape"></div>
<div class="shape"></div>
</div>
<form>
<h3>Welcome to our page</h3>
<p style="font-size: large">This page created for Teachers and Students</p>
<ul>
<li>Teachers can create courses, test and can see Statistics</li>
<li>Students can solve test in any Subject and can see Statistics about their performance</li>
</ul>
<p style="text-align: left">Please Log In or Sign Up to create a Test or to Test your Knowledge</p>
</form>
</body>
</html>