-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
147 lines (141 loc) · 6.5 KB
/
index.html
File metadata and controls
147 lines (141 loc) · 6.5 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Psychotherapie im Westen
</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="navbar">
<nav>
<a href="#willkommen" class="active">Wilkommen</a>
<a href="#arzt">Arzt</a>
<a href="#behandlungen">Behandlungen</a>
<a href="#adresse">Adresse</a>
<a href="#kontakt">Kontakt</a>
<a href="#gdpr-notiz">GDPR</a>
</nav>
</div>
<div id="wrapper">
<header>
<div id="logo">
<p>to add: LOGO</p>
</div>
<div>
<h2>
Psycho<span class="responsive">-</span><br class="responsive">therapie im Westen Klinik
</h2>
<p>Welcome to the newest and most dedicated psychotherapy clinic in Aachen.</p>
</div>
</header>
<!--Consider: Write the content from 1st person, so that it seems like Ami is talking to the patients.-->
<section id="willkommen">
<article>
<h2>Willkommen</h2>
<p>Lorem ipsum etc wir sind sehr glucklich dass du bist zu. An introduction to the clinic is what we
have for you.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed
cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum.
Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget
nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
Curabitur sodales ligula in libero. </p>
</article>
</section>
<section id="arzt">
<article>
<h2>Treffen Sie Ihren Arzt!</h2>
<p>Das ist meine Tante, Ana Maria Tudor. Sie sprichst mehr besser Deutsch als ich.</p>
<p>HERE: A picture of Ami in a nice blue border. Until I get a picture of her, here is one of me:</p>
<img src="https://github.com/seco560/west-therapy-test/blob/master/images/me_placeholder.jpg?raw=true">
</article>
</section>
<section id="behandlungen">
<article>
<h2>A Selection of Treatments at the Clinic</h2>
<p>Below you can read some information on treatment types: (everything currently a placeholder)</p>
<ol>
<li>
<p>Treatment Type 1</p><img src="https://github.com/seco560/west-therapy-test/blob/master/images/canapea.jpg?raw=true">
<ul>
<li>Details 1</li>
<li>Details 2</li>
<li>Details 3</li>
</ul>
</li>
<li>
<p>Treatment Type 2</p><img src="https://github.com/seco560/west-therapy-test/blob/master/images/jung.jpg?raw=true">
<ul>
<li>Details 1</li>
<li>Details 2</li>
<li>Details 3</li>
</ul>
</li>
<li>
<p>Treatment Type 3</p><img src="https://github.com/seco560/west-therapy-test/blob/master/images/stetoscop.jpg?raw=true">
<ul>
<li>Details 1</li>
<li>Details 2</li>
<li>Details 3</li>
</ul>
</li>
</ol>
</article>
</section>
<section id="adresse">
<article>
<h2>Adresse</h2>
<p>For now, a little box with the address and a link that opens in Maps.</p>
<p>Here is the helpful <a href="">link</a> to the location. Bes to embed it in an image.</p>
</article>
</section>
<section id="kontakt">
<article>
<h2>Kontakt</h2>
<p>If you would like to get in touch with our clinic we will require some basic information from you.
</p>
<form action="mailto:secovlad@gmail.com" method="POST" enctype="multipart/form-data"
name="Kontakt Form">
<div class="row">
<label for="name"><strong>Name:</strong> </label>
<input type="text" name="name" placeholder="Dein Name">
</div>
<div class="row">
<label for="email"><strong>Email:</strong> </label>
<input type="email" name="email" placeholder="Dein Email">
</div>
<div class="row">
<label for="handy"><strong>Handy Number: </strong></label>
<input type="text" name="handy" placeholder="Dein Number">
</div>
<div class="row">
<label for="insurance"><strong>Insurance Typ:</strong></label>
<div class="row">
<label for="national">National<input type="radio" name="insurance" value="National"
class="radiobtn"></label>
<label for="private">Privat<input type="radio" name="insurance" value="Private"
class="radiobtn"></label>
</div>
<div class="row">
<button type="submit"><strong>Kontakt
Dr. Ana
Maria</strong></button>
</div>
</form>
</article>
</section>
<section id="gdpr-notiz">
<article>
<h2>GDPR Notice</h2>
<p>We are GDPR compliant, only collecting data that we need and deleting it after a while or when it is
no longer needed.</p>
</article>
</section>
<footer id="footer">
© Psychoterapie im Westen Klinik 2021, Aachen, Deutschland | Website by Seco Vlad
</footer>
</div>
</body>
</html>