-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (39 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Easy Quiz</title>
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="shortcut icon" type="image/png" href="image/logo.png" />
<style type="text/css">
body {
width: 100%;
background: url(image/book.jpg) ;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
color:black;
}
.btn{
color:black;
border:5px solid;
}
h1{
color:black;
}
</style>
</head>
<body>
<center>
<div class="intro">
<h1> online quiz system </h1>
<a href="login.php" class="btn"> login </a>  
<a href="register.php" class="btn"> register </a>
<h2> Good Luck. </h2>
</div>
</center>
</body>
</html>