-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (23 loc) · 1.03 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Programming Syntax Flashcards</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body class="text-bg-dark">
<div class="d-flex flex-column min-vh-100 min-vw-100">
<div class="d-flex flex-grow-1 justify-content-center align-items-center">
<div class="d-grid gap-2 col-12 mx-auto">
<a class="btn btn-outline-light ms-3 me-3" href="./c/" role="button">C</a>
<a class="btn btn-outline-light ms-3 me-3" href="./python/" role="button">Python</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js"
integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy"
crossorigin="anonymous"></script>
</body>
</html>