-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (47 loc) · 2.39 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
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<!-- php -S localhost:8080 -t . -->
<head>
<script src="js/include.js"></script>
<div include-html="components/header.html"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous" defer></script>
</head>
<body class="d-flex flex-column min-vh-100">
<header>
<div class="text-center">
<img src="images/banner.png" class="img-fluid" alt="Responsive image">
</div>
</header>
<div style="margin: 50px;" class="text-center">
<div class="containter">
<div class="row d-flex justify-content-center">
<div class="card bg-light" style="width: 18rem; height: 15rem; display: inline-block;">
<div class="card-body card-body d-flex flex-column h-100">
<h5 class="card-title">Resources</h5>
<p class="card-text">On this page you will find every resource i have gathered that is Tarifit/Tamaziɣt related.</p>
<a href="resources.html" class="btn btn-primary mt-auto">Resources</a>
</div>
</div>
<div class="card bg-light" style="width: 18rem; height: 15rem; display: inline-block;">
<div class="card-body d-flex flex-column h-100">
<h5 class="card-title">Placeholder</h5>
<p class="card-text">This is some placeholder text that i dont care about.</p>
<a href="#" class="btn btn-primary mt-auto">Placeholder</a>
</div>
</div>
<div class="card bg-light" style="width: 18rem; height: 15rem; display: inline-block;">
<div class="card-body d-flex flex-column h-100">
<h5 class="card-title">Contact</h5>
<p class="card-text">Feel free to contact me, share resources with me or correct any mistakes that i have made.</p>
<a href="contact.html" class="btn btn-primary mt-auto">Contact</a>
</div>
</div>
</div>
</div>
</div>
<div include-html="components/footer.html" class="mt-auto"></div>
</body>
<script defer>
includeHTML();
</script>
</html>