-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_cards.html
58 lines (52 loc) · 1.83 KB
/
my_cards.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
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>my_cards</title>
<link rel="stylesheet" href="my_cards_styles.css">
</head>
<body>
<!-- Header -->
<header class="app-bar">
<div class="logo">
<a href="index.html">
<img src="icons_image/logo.png" alt="Business Logo" class="logo-image">
</a>
</div>
<nav class="nav-links">
<a href="index.html">Home</a>
<a href="my_cards.html">My Card</a>
<a href="custom_card.html">Create Card</a>
<a href="scan_cards.html">Scan page</a>
</nav>
</header>
<main>
<h1>My Saved Cards</h1>
<div class="cards-container">
<!-- Cards will be dynamically loaded here -->
</div>
</main>
<footer>
<h2>Contact Us</h2>
<div class="contact-info">
<p>
<a href="tel:+72368600" style="color: inherit; text-decoration: none;">
<i class="fas fa-phone"></i> Phone:72368600
</a>
</p>
<p>
<a href="mailto:pybitacademy@gmail.com" style="color: inherit; text-decoration: none;">
<i class="fas fa-envelope"></i> Email:walaa.om@gmail.com
</a>
</p>
<p>
<a href="https://www.instagram.com/walaaa.om" target="_blank" style="color: inherit; text-decoration: none;">
<i class="fab fa-instagram"></i> Instagram: @walaa.om
</a>
</p>
</div>
</footer>
<script src="my_cards_script.js"></script> <!-- JavaScript for My Cards page -->
</body>
</html>