-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
87 lines (85 loc) · 4.01 KB
/
contact.html
File metadata and controls
87 lines (85 loc) · 4.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Page</title>
<link rel="stylesheet" href="./style.css">
<script src="https://smtpjs.com/v3/smtp.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<header>
<div class="name__logo--container">
<img src="./images/PLLogo.png" alt="Company Logo" class="logo">
<h1 class="company__name"> P & L Tutors</h1>
</div>
<nav>
<ul class="nav__links">
<li><a class="nav__opt" href="./index.html">Home</a></li>
<li><a class="nav__opt" href="./services.html">Services</a></li>
<li><a class="nav__opt" href="./about.html">About Us</a></li>
</ul>
</nav>
<button class="nav__button" onclick="window.location.href='./contact.html';">Contact Us</button>
</header>
<!-- Contact Form -->
<div class="contact__heading">
<h1 class="contact__header">Contact Us!</h1>
<h3 class="contact__subheader">Have a question or want to use our services? Fill out the form below and we will get back to you!</h3>
</div>
<div class="contact__form">
<div class="contact__item1 contact__item">
<label for="fname">*First Name: </label>
<input type="text" id="fname" placeholder="John" name="fname" required>
</div>
<div class="contact__item2 contact__item">
<label for="lname">*Last Name: </label>
<input type="text" id="lname" placeholder="Doe" name="lname" required>
</div>
<div class="contact__item3 contact__item">
<label for="email">*Email: </label>
<input type= "email" id="email" placeholder="johndoe123@gmail.com" name="email" required>
</div>
<div class="contact__item4 contact__item">
<label for="phone"> Phone: </label>
<input type="tel" id="phone" placeholder="(123) 456 - 7890" name="phone">
</div>
<div class="contact__item5 contact__item">
<label for="message">*Message: </label>
<textarea name="message" id="message" cols="30" rows="10" required></textarea>
</div>
<div class="contact__item6 contact__item">
<button class="reset__btn" onclick="reset__info()">Reset</button>
</div>
<div class="contact__item7 contact__item">
<button class="submit__btn" onclick="gather__info()">Submit</button>
</div>
<p class="extra__info">* Indicates a required field</p>
</div>
<!-- Footer Section -->
<footer>
<div class="footer__container">
<div class="footer__logo--container">
<img src="./images/PLLogo.png" alt="P and L Logo" class="footer__logo">
<h1 class="footer__logo--text">P & L Tutors</h1>
</div>
<p class="footer__text">P & L Tutors is a tutoring company for students of all abilities from grades K-12. All services are taught by experienced tutors with a passion for helping today's youth!</p>
<ul class="footer__col">
<li class="footer__head"><strong>Learn More</strong></li>
<li><a href="./services.html" class="footer__opt">Our Services</a></li>
<li><a href="./about.html" class="footer__opt">Our Story</a></li>
</ul>
<ul class="footer__col">
<li class="footer__head"><strong>Get in Touch</strong></li>
<li><a href="./contact.html" class="footer__opt">Contact Us</a></li>
</ul>
<ul class="footer__col">
<li class="footer__head"><strong>More to Come!</strong></li>
<li><a href="./index.html" class="footer__opt">Return to the Top</a></li>
</ul>
</div>
</footer>
<script src="./main.js"></script>
</body>
</html>