-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcatalog.html
More file actions
25 lines (24 loc) · 763 Bytes
/
catalog.html
File metadata and controls
25 lines (24 loc) · 763 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Console's Mini Projects</title>
<!-- css library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<p><i class="fa-solid fa-home"></i></p>
<h1>My Mini-Projects</h1>
</header>
<div class="container" id="project-container">
<!-- Projects list will dynamically loaded here 😘-->
</div>
<footer>
<p>Made with ❤️ by Abdulconsole</p>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>