-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
92 lines (80 loc) · 3.96 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Therapy With Diana</title>
<link href="css/styles.css" type="text/css" rel="stylesheet">
</head>
<body class="contact" id="wrapper">
<header>
<h1>Therapy With Diana</h1>
<nav id="primary">
<ul>
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="about.html" title="About">About </a></li>
<li><a href="contact.html" title="Contact">Contact</a></li>
<li><a href="schedule.html" title="Schedule">Scheduling</a></li>
</ul>
</nav><!--End primary-->
</header>
<main class="row">
<section id="text">
<h2>Contact Me</h2>
<p>When you need someone who you can depend on, do not hesitate, reach out to me and we can schedule your free phone consultation right away.</p>
<ul>
<li><a href="mailto:[email protected]" title="email me">[email protected]</a></li>
<li><a href="tel:801-694-0020" title="cell phone number">801-694-0020</a></li>
</ul>
<form id="myForm" method="post">
<fieldset>
<input label="name" type="text" name="name" placeholder="Name">
<input label="email" type="email" name="email" placeholder="Email">
<label>Tell me about yourself</label>
<textarea placeholder="Tell me about yourself" name="message">
</textarea>
<input label="submit" type="submit" value="Submit">
</fieldset>
</form>
<script src="form-handler.js" type="text/javascript"></script>
<!-- The aria-live region -->
<div aria-live="polite" aria-atomic="true">
<h2 class="no-underline" id="status"></h2>
<p id="confirmation"></p>
<p id="message"></p>
</div>
</section><!--End text-->
</main>
<aside>
<img src="images/phonecall.jpg" alt="A realistic image of a white person with short brown hair turned away from the camera wearing black rayban glasses. They are talking on a black smartphone.">
</aside>
<footer>
<section class="inner">
<h2>Connect with Diana</h2>
<nav class="contactme">
<div role="button" class="col4">
<a href="https://www.facebook.com/therapywithdiana" title="facebook"><img src="images/facebook.png" alt="facebook"></a>
</div><!--End Thirds-->
<div role="button" class="col4">
<a href="contact.html" title="contact"><img src="images/message.png" alt="message"></a>
<!--message by Muhammad Tajudin from the Noun Project-->
</div><!--End Thirds-->
<div role="button" class="col4">
<a href="https://www.psychologytoday.com/us/therapists/diana-miller-gig-harbor-wa/790082" title="psychology today"><img src="images/psytoday.png" alt="psychology today"></a>
</div><!--End Thirds-->
<div role="button" class="col4">
<a href="https://secure.helloalma.com/providers/diana-miller/" title="alma portal"><img src="images/Hello_Alma.png" alt="psychology today"></a>
</div><!--End Thirds-->
</nav><!--End ContactMe-->
</section><!--End Inner-->
<nav id="secondary">
<ul>
<li>Copyright © Therapy With Diana 2020</li>
<li>All Rights Reserved</li>
<li><a href="https://andrewpking.github.io/" title="Web Design by Drew">Web Design By Drew</a></li>
<li><a href="https://validator.w3.org/check?uri=referer" title="valid">Valid</a></li>
</ul>
</nav><!--End secondary-->
</footer>
</body>
</html>