-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d5f06b
commit ff1d738
Showing
3 changed files
with
128 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'> | ||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> | ||
<link rel="shortcut icon" href="img/logo.webp" type="image/x-icon"> | ||
<title>Skyjumper Trampoline Park Booking</title> | ||
</head> | ||
|
@@ -449,12 +450,14 @@ <h2>FOR BIRTHDAY & | |
<div class="form-img-holder"> | ||
<div class="form"> | ||
<h2><a href="tel:8882288001">+91-888 2288 001</a></h2> | ||
<form> | ||
<input type="text" name="name" id="name" placeholder="NAME"> | ||
<input type="tel" name="phone" id="phone" placeholder="PHONE"> | ||
<input type="email" name="email" id="email" placeholder="EMAIL"> | ||
<textarea name="message" id="message" placeholder="ADD MESSAGE HERE"></textarea> | ||
<button type="submit">Submit</button> | ||
<form action="" method="post" name="enq-form" id="enq-form"> | ||
<input type="text" name="Full Name" id="name" placeholder="NAME" required pattern="[A-Za-z ]+" | ||
title="Only letters and spaces are allowed"> | ||
<input type="tel" name="Phone No" id="phone" placeholder="+91 XXXXXXXXXXX" | ||
required pattern="\+[0-9]+"> | ||
<input type="email" name="Email" id="email" placeholder="EMAIL" required> | ||
<textarea name="Message" id="message" placeholder="ADD MESSAGE HERE" required></textarea> | ||
<button type="submit" id="submitBtn">Submit</button> | ||
</form> | ||
</div> | ||
<div class="img-holder"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters