-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.45 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 1.45 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="favicon.svg" type="image/x-icon" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<title>Notes by @siby</title>
</head>
<body class="d-flex flex-column min-vh-100">
<div class="container py-3 py-md-5 d-flex flex-column flex-grow-1">
<div class="mb-4 mb-md-5">
<section class="row">
<div class="col-12 col-md">
<h1>notes-by-siby</h1>
<p>
This project is no longer maintained. You can find the files at
<a href="https://sachintha.net/the-cs-class">sachintha.net</a>.
</p>
</div>
</section>
</div>
<section class="mt-auto border-top pt-3 mb-4 mb-md-0">
<div class="row text-secondary">
<small class="col-12 col-sm">© 2025 Sachintha Senanayake</small>
<div
class="col-12 col-sm-auto d-flex justify-content-start justify-content-sm-end"
>
<small>All rights reserved</small>
</div>
</div>
</section>
</div>
</body>
</html>