-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
28 lines (26 loc) · 1.36 KB
/
about.html
File metadata and controls
28 lines (26 loc) · 1.36 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Trivia</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
</head>
<body class="d-flex flex-column h-100">
<div class="jumbotron bg-dark">
<div class="container py-2 text-center text-white rounded">
<h2>ABOUT</h2>
</div>
</div>
<div class="container w-50 my-3 p-3" style="text-align: justify;">
Trivia is a type of game in which players (who can play individually or in a team) are asked questions about different topics and they have to get as many correct answers as possible. Each correct answer will award you 1 point, each wrong answer will take 1 point away. The next is automatically loaded, after choosing an option, so choose wisely. If you don't want to answer a question, skip it. If you get an error, just skip the question or reload the page.<br>
Don't forget to change the settings!
</div>
<footer class="footer fixed-bottom mt-auto py-3 bg-light">
<div class="container text-center">
<span class="text-muted">Made with Bootstrap and 💖 • © 2021</span>
</div>
</footer>
</body>
</html>