-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (27 loc) · 1.09 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<title>◧ Animal Matching - Home</title>
<link rel="stylesheet" href="assets/style.css" />
</head>
<body>
<div class="container">
<div class="row justify-content-center align-self-center mt-2 pt-5 pb-5">
<h1>
<p class="text-center">◧ ANIMAL MATCHING</p>
</h1>
</div>
<div class="row justify-content-around p-2">
<div class="col-md-4 col-xs-12">
<a href="play.html" class="btn btn-dark btn-lg btn-block"><strong>Play</strong></a>
<a href="leaderboard.html" class="btn btn-dark btn-lg btn-block"><strong>Leaderboard</strong></a>
<a href="guid.html" class="btn btn-dark btn-lg btn-block"><strong>Guid</strong></a>
</div>
</div>
</div>
</body>
</html>