-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdump.html
More file actions
70 lines (60 loc) · 1.91 KB
/
dump.html
File metadata and controls
70 lines (60 loc) · 1.91 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!-- Project cards -->
<div class="container mt-4">
<div class="row">
<!-- Newcomer PDF Generator -->
<div class="col-sm-12 col-md-6 col-lg-4">
<a href="newcomerpdfgen/index.html" class="card custom-card-link">
<img src="../images/cube.png" class="card-img-top" alt="Project Image">
<div class="card-body">
<h5 class="card-title">Newcomer PDF Generator</h5>
<p class="card-text">Short description of the project...</p>
</div>
</a>
</div>
<!-- Project 2 -->
<div class="col-md-4">
<a href="project2/index.html" class="card text-white">
<img src="../images/turtle.png" class="card-img" alt="Project 2">
<div class="card-img-overlay d-flex align-items-end">
<h4 class="card-title">Project 2 Title</h4>
</div>
</a>
</div>
<!-- Project 3 -->
<div class="col-md-4">
<a href="project2/index.html" class="card text-white">
<img src="../images/turtle.png" class="card-img" alt="Project 2">
<div class="card-img-overlay d-flex align-items-end">
<h4 class="card-title">Project 2 Title</h4>
</div>
</a>
</div>
<!-- Project 4 -->
<div class="col-md-4">
<a href="project2/index.html" class="card text-white">
<img src="../images/turtle.png" class="card-img" alt="Project 2">
<div class="card-img-overlay d-flex align-items-end">
<h4 class="card-title">Project 2 Title</h4>
</div>
</a>
</div>
</div>
</div>
<style>
html, body {
height: 100%;
margin: 0;
}
body {
display: flex;
flex-direction: column;
}
.content-wrap {
flex: 1;
}
footer {
background-color: #e3f2fd;
padding: 20px;
width: 100%;
}
</style>