-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (58 loc) · 2.25 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Stamp Card Business</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- App Bar / Navbar -->
<header class="app-bar">
<div class="logo">
<!-- Replace the src attribute with the correct path to your logo image -->
<img src="icons_image/logo.png" alt="Business Logo" class="logo-image">
</div>
<nav class="nav-links">
<a href="#sign-in">#</a>
<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>
<!-- Home Page Content -->
<div class="home-content">
<div class="image-container">
<!-- Replace the src attribute with the correct path to your uploaded image -->
<img src="image/homepage.png" alt="Loyalty Card Example">
</div>
<div class="text-container">
<h1>Grow your business with a modern approach to loyalty programs.</h1>
<p>Easily design and distribute digital loyalty cards that customers can add to their Google and Apple wallets.</p>
<a href="custom_card.html" class="cta-button">CREATE YOUR FIRST CARD</a>
</div>
</div>
<!-- Footer with contact info -->
<footer>
<h2>Contact Us</h2>
<div class="contact-info">
<p>
<a href="tel:+77546711" 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>
</body>
</html>