-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (39 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Explore various JavaScript projects.">
<meta name="keywords" content="Coding, Web Development, Projects, JavaScript Projects">
<link rel="icon" href="logo.png" type="image/png" />
<link rel="shortcut icon" href="logo.png" type="image/x-icon" />
<meta name="author" content="Hardik Srivastava">
<title>Mini Projects</title>
<!-- Link to FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Web D - Mini Projects</h1>
<p>All my Mini Projects created using HTML, CSS and Javascript are listed here with their live preview</p>
</header>
<main class="container">
<section class="cards">
<!-- The dynamically generated cards will be injected here by script.js -->
</section>
</main>
<footer class="footer">
<div class="social">
<a href="https://www.linkedin.com/in/hardiksrivastavaa/"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/hardiksrivastavaa"><i class="fab fa-github"></i></a>
<a href="https://X.com/hardikfgp"><i class="fab fa-twitter"></i></a>
<a href="https://instagram.com/hardiksrivastavaaa"><i class="fab fa-instagram"></i></a>
</div>
<p>© 2024 Hardik Srivastava. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>