-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
101 lines (98 loc) · 3.86 KB
/
contact.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./IMG/footer.jpg" type="image/x-icon">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&family=Lobster&family=Pacifico&family=Satisfy&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/Style.css">
<link rel="stylesheet" media="screen and (max-width:820px)" href="CSS/Tablet.css">
<link rel="stylesheet" media="screen and (max-width:768px)" href="CSS/mobile.css">
<link rel="stylesheet" href="CSS/sweetAlert.css">
<title>Ponula Cakes | Contact</title>
</head>
<body>
<!-- Nav bar -->
<nav id="main-nav">
<div class="container">
<h1 class="logo"><span class="text-primary">
<i class='bx bxs-cake'></i> Ponula</span> Cakes</h1>
<br>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a class="current" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<section id="contact-form" class="py-3">
<div class="container">
<div class="contact-head">
<p>Register</p>
<h1 class="l-heading">Get in Touch</h2>
</div>
<div class="card-3">
<div>
<img src="IMG/ponula man.jpg" alt="">
</div>
<form action="" class="handleSubmit">
<h3>Registration Form</h3>
<div class="form-group">
<label for="first-name">First Name</label>
<input type="text" name="firstName" id="first-name" autocomplete="given-name" required/>
</div>
<div class="form-group">
<label for="last-name">Last Name</label>
<input type="text" name="lastName" id="last-name" autocomplete="family-name" required/>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email" autocomplete="email" required/>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" autocomplete="tel" required/>
</div>
<button type="submit" class="btn-contact">Register</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer id="main-footer" class="py-2">
<div class="container footer-container">
<div>
<img src="IMG/footer.jpg" alt="Ponula">
</div>
<div class="lists">
<h3>Location</h3>
<p>45 David Ogundele STR, Ipaja 102213, Lagos, Nigeria.</p>
<div>
<p>For more enquires click on the next link to various sites <i class='bx bx-right-top-arrow-circle'></i></p>
</div>
</div>
<div class="lists">
<h3>Site Links</h3>
<ul class="list">
<li><a href="https://wa.me/message/3ZBHU7SMAQL7P1" target="_blank">Whatsapp</a></li>
<li><a href="https://www.instagram.com/ponnulacakesandbakes/" target="_blank">Instagram</a></li>
<li><a href="https://web.facebook.com/profile.php?id=100080912697225" target="_blank">facebook</a></li>
<li><a href="https://mail.google.com/mail/u/0/?tab=rm&ogbl#search/ponnulacakesandbakes%40gmail.com?compose=new">Email</a></li>
</ul>
</div>
<div class="join">
<h2>Join Our Class</h2>
<p>Why haven't you join our class ?</p>
<a href="contact.html" class="btn btn-secondary">Join Now</a>
</div>
<div>
<p>Copyright © 2023, All Rights Reserved</p>
</div>
</div>
</footer>
<script src="js/sweelAlert.js"></script>
<script src="js/main.js"></script>
</body>
</html>