-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (48 loc) · 2.33 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html class="w-100 h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
D-Lab Workshops
</title>
<link rel="icon" type="image/png" sizes="32x32" href="_pages/static/images/favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://bootswatch.com/4/litera/bootstrap.min.css">
<!-- Fontawesome JS -->
<script defer src="https://use.fontawesome.com/releases/v5.0.10/js/all.js" integrity="sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+" crossorigin="anonymous"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="_pages/static/stylesheets/style.css">
</head>
<body class="w-100 h-100">
<!-- Begin Content -->
<div class="container mt-5">
<!-- Add the logo here -->
<div class="text-center mb-4">
<img src="static/images/logo-2023.png" alt="D-Lab Logo" width="200px">
</div>
<h4 class="text-center mb-4">What do you want to learn?</h4>
<div class="row justify-content-center">
<div class="col-auto">
<a href="python.html" class="btn btn-primary mx-1">Python</a>
</div>
<div class="col-auto">
<a href="R.html" class="btn btn-warning mx-1">R</a>
</div>
<div class="col-auto">
<a href="other.html" class="btn btn-success mx-1">Other</a>
</div>
</div>
<div class="row justify-content-center mt-4">
<div class="col-auto">
<a href="library.html" class="btn btn-secondary mx-1">View All Workshops</a>
</div>
</div>
</div>
<!-- End Content -->
<!-- Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>