-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrello.html
58 lines (40 loc) · 1.49 KB
/
trello.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
55
56
<html lang="en">
<head>
<title>
DanceGifs - Roadmap
</title>
<link rel="icon" type="image/gif" href="./ressources/image/favicon/favicon.ico" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<style>
@font-face {
font-family: "SalsaFont";
src: url('./ressources/fonts/Salsa-Regular.ttf') format('truetype');
}
.salsafont {
font-family: "SalsaFont", sans-serif;
}
</style>
<script>
$(document).ready(function(){
$("#header").load("./header.html");
});
</script>
</head>
<body class="salsafont d-flex flex-column" >
<div id="header" class="mb-5"> </div>
<div>
<div class="card-deck pt-2 mt-3">
<div class="container-fluid">
<div class="row">
<div class="card mb-3 mx-5">
<div class="card-body ">
<h4 class="card-title ">My roadmap </h4>
</div>
<iframe class="card-img-bottom" src="https://trello.com/b/kCdnU261.html" width="650" height="750"></iframe>
</div>
</div>
</div>
</div>
</div>
</body>
</html>