-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstartup.php
39 lines (28 loc) · 1.14 KB
/
startup.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
<!DOCTYPE html>
<html>
<head>
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Raleway&display=swap');
body {
overflow: hidden;
margin: 0;
}
.flex-container {
display: flex;
}
</style>
</head>
<body style="background-image: url('green2.jpg');background-size:1380px 700px;background-repeat: no-repeat;">
<div style="justify-content:flex-end;margin:3%" class="flex-container">
<a href="login.php">
<a href="./login.php" style="background-color:#63bc9a;font-size:1rem;color:white;text-decoration: none;float:right;border: none; padding: 12px 28px; text-align: center;display: inline-block;border-radius: 4px;box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2)">
LOGIN
</a>
</a>
</div>
<div style=" justify-content: center;margin:10% 10% 0% 10%" class="flex-container">
<p style="text-align:center;color:white;font-family: arial;font-size: 400%;">QUESTION PAPER - OVER TO AIR</p>
</div>
<p style="text-align:center;color:white;font-family: 'Raleway', sans-serif;font-size: 200%;margin:-10px">A new way of conducting examinations!</p>
</body>
</html>