Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!--Contact page for Subcool-->
- <html lang="en-US">
- <head>
- <meta charset="utf-8">
- <title>Contact</title>
- <link href="../css/style.css" rel="stylesheet" type="text/css">
- <link rel="icon" type="image/png" sizes="32x32" href="../pics/favicon-32x32.png">
- </head>
- <body class="box">
- <!--Header-->
- <div id="header">
- <header>
- <!--Navigation bar-->
- <div>
- <nav>
- <ul>
- <li><a href="../index.html">Home</a></li>
- <li><a href="Services.html">Services</a></li>
- <li><a href="Gallery.html">Gallery</a></li>
- <li><a href="Contact.html">Contact</a></li>
- <li><div id="login"><a href="login.html">Login</a></div></li>
- <li><div id="signup"><a href="signup.html">Sign Up</a></div></li>
- </ul>
- </nav>
- </div>
- </header>
- </div> <!--End of header-->
- <!--Banner-->
- <div class="banner"><img src="../pics/subcool_ac.jpg" alt="A longer version of Subcool AC Services' logo." width="1070" height="350"></div>
- <!--form to make appointments-->
- <div class="container">
- <h1>Contact Us</h1>
- <div id="appoint">
- <p>Book your appointment now!</p>
- <form action="response.html" class="appointment">
- <fieldset><legend>Personal Information:</legend>
- <p>First Name</p>
- <input type="text" name="fname" required>
- <br>
- <p>Last Name</p>
- <input type="text" name="fname" required>
- <br>
- <p>Phone Number</p>
- <input type="tel" name="phone" required>
- <br>
- <p>Email</p>
- <input type="email" name="email" required>
- </fieldset>
- <br>
- <fieldset><legend>Service Information:</legend>
- <p>Service Needed:</p>
- <input type="checkbox" name="service" id="install" value="install">
- <label for="install">Installation</label>
- <br>
- <input type="checkbox" name="service" id="repair" value="repair">
- <label for="repair">Repair</label>
- <br>
- <input type="checkbox" name="service" id="supply" value="supply">
- <label for="supply">Supply</label>
- <br>
- <input type="checkbox" name="service" id="troubleshoot" value="troubleshoot">
- <label for="troubleshoot">Troubleshooting</label>
- <br>
- <p>Brief description of the issue:</p>
- <textarea name="desc" rows="5" cols="30"></textarea>
- <br>
- <p>Date:</p>
- <input type="date" name="appt" required>
- <br>
- <p>Time:</p>
- <input type="time" name="times" required>
- </fieldset>
- <br>
- <input type="submit" value="SUBMIT">
- </form>
- </div>
- <div id="contact">
- <p>You can also contact us at:</p>
- <ul>
- <li>Tel: +1 (868) 315-0339</li>
- <li>Email: skramdeo@hotmail.com</li>
- </ul>
- </div>
- </div>
- <!--Footer-->
- <div id="footer">
- <footer>
- <p><a href="sitemap.html">Site Map</a></p>
- <p>© 2022 Subcool AC Services</p>
- </footer>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement