-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (32 loc) · 970 Bytes
/
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
<?php
require('includes/config.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Typing Test</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style> body { background-color: #343a40; color: #fff;
padding-top: 70px;}
.container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
</style>
</head>
<body>
<?php include 'includes/navbar.php';?>
<div class="container">
<div class="welcome-text text-center">
<h1>Welcome to Typing Test Site</h1>
<p>Test your typing speed.</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>