-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (37 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<title>Presentations</title>
<link rel="icon" type="image/x-icon" href="./.github/images/favicon.ico">
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">Presentations</h1>
<p class="lead">My one talk... so far 😉</p>
<div class="container text-center">
<div class="card-group">
<div class="card shadow-lg" style="width: 18rem;">
<img src="./0x41con_2023/HTML/assets/global/ldm.png" class="card-img-top" alt="">
<div class="card-body">
<h5 class="card-title">Anatomy of Lockdown Mode</h5>
<p class="card-text"><a href="https://0x41con.org/">0x41con</a> '23 in Barcelona</p>
<a href="./0x41con_2023/HTML/index.html" class="btn btn-primary btn-lg">View Prezo</a>
</div>
<div class="card-footer">
<small class="text-body-secondary">June 30, 2023</small>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
</body>
</html>