-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 1.11 KB
/
index.html
File metadata and controls
25 lines (21 loc) · 1.11 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
<!DOCTYPE html>
<head>
<title>Welcome to Therahealth - Krish and Sahil.</title>
<script>
function findTherapist(){
var zipCode = document.getElementById("zipCode").value;
var zipCodeLink = "https://www.psychologytoday.com/us/therapists?search=" + zipCode;
document.write('<a href="' + zipCodeLink + '">Click to find therapists near you</a>');
window.location.href=zipCodeLink;
}
</script>
<head>
<body>
<body style="background-color:rgb(92,140,204);"></h1>
<h1 style="border:2px solid rgb(184,48,73);"><h1 style="color:rgb(184,48,73);">Click this link if you want to head straight to the therapy site.</h1>
<a href="https://www.psychologytoday.com/us/therapists"><h1 style="color:rgb(0, 255, 38);">Find a therapist here.</h1></a>
<h1 style="border:2px solid rgb(184,48,73);"><h1 style="color:rgb(184,48,73);"> <p>Or, take a super quick survey to find therapists near you.</p>
<input id="zipCode" placeholder="Enter your zipcode">
<br><br>
<button onclick="findTherapist()" id = "zipCodeButton"><h1 style="color:rgb(0, 255, 38);">Find some therapists near me!</h1></button>
</body>