-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (70 loc) · 3.92 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clinic Funnels: Data Driven Marketing for Health Clinics</title>
<link rel="stylesheet" href="codeacademy/style.css" type="text/CSS">
</head>
<body>
<header>
<nav>
<ul class="navigation">
<li><a href="">Subscriptions</a></li>
<li><a href="">Online Courses</a></li>
<li><a href="">Free Courses</a></li>
<li><a href="">Resources</a></li>
<li><a href="">1-to-1 Consulting</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Grow your clinic faster.</h1>
<h2>High growth clinic owners have an increasing need to develop technical marketing skills in order to achieve measurable growth.</h2>
<div class="benefits">
<p >At Clinic Funnels, we provide:</p>
<ul>
<li>Marketing and Analytics training programs to healthcare business owners looking for <em>measurable</em> results</li>
<li>Managed, <em>"done for you"</em> online revenue optimization services to accelerate growth in your healthcare practice</li>
</ul>
</div>
<h2>What is your clinic's <strong>"Next Action"?</strong></h2>
<p>Complete the free healthcare business scorecard to determine your most profitable "Next Action" checklist</p>
<form action="" method="GET" id="signup">
<p>
<label for="first_name">First Name:</label>
<input type="text" name="first_name" >
</p>
<p>
<label for="last_name">Last Name:</label>
<input type="text" name="last_name">
</p>
<p>
<label for="email">Email:</label>
<input type="email" name="email">
</p>
<p>What healthcare industry are you in?
<br>
<label for="Physiotherapy">Physiotherapy</label>
<input id="Physiotherapy" type="radio" name="clinic_type" value="Physiotherapy"/>
<label for="Medical">Medical</label>
<input id="Medical" type="radio" name="clinic_type" value="Medical"/>
<label for="Occupational Therapy">Occupational Therapy</label>
<input id="Occupational Therapy" type="radio" name="clinic_type" value="Occupational Therapy"/>
<label for="Speech Pathology">Speech Pathology</label>
<input id="Speech Pathology" type="radio" name="clinic_type" value="Speech Pathology"/>
<label for="Chiropractic">Chiropractic</label>
<input id="Chiropractic" type="radio" name="clinic_type" value="Chiropractic"/>
<label for="Osteopathy">Osteopathy</label>
<input id="Osteopathy" type="radio" name="clinic_type" value="Osteopathy"/>
<label for="Psychology">Psychology</label>
<input id="Psychology" type="radio" name="clinic_type" value="Psychology"/>
<label for="Nutrition and Dietetics">Nutrition and Dietetics</label>
<input id="Nutrition and Dietetics" type="radio" name="clinic_type" value="Nutrition and Dietetics"/>
</p>
<input type="submit" value="Start Free Assessment">
</form>
</main>
</body>
</html>