-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
105 lines (94 loc) · 3.59 KB
/
Copy pathcontact.html
File metadata and controls
105 lines (94 loc) · 3.59 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Sarah Amaro Psychologue Clinicienne</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header-container">
<div class="header-left">
<img src="logo.png" alt="Sarah Amaro Psychologue Clinicienne">
</div>
<nav>
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="pourquoi.html">Pourquoi consulter</a></li>
<li><a href="formation.html">Formation</a></li>
<li><a href="tarifs.html">Tarifs</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="contact-page">
<h2 class="subtitle">Contact</h2>
<p>Vous pouvez me contacter pour prendre rendez-vous ou pour toute question.</p>
<div class="cabinet-header"> <!-- Nouveau bloc -->
<h3 class="cabinet-nom">Amaro Sarah - Psychologue Clinicienne</h3>
<span class="cabinet-rpps">N° RPPS : 10008549429</span>
</div>
<h3>Adresse du cabinet</h3>
<p>
73 Rue Courloison<br>
77160 Provins
</p>
<h3>Horaires</h3>
<ul class="horaires-list">
<li>
<strong>Mercredi</strong> <span class="semaine">(semaine paire)</span>
<br>10h00 - 14h00 / 16h00 - 20h00
</li>
<li>
<strong>Jeudi</strong>
<br>10h00 - 14h00 / 16h00 - 20h00
</li>
<li>
<strong>Vendredi</strong>
<br>10h00 - 14h00 / 16h00 - 20h00
</li>
<li>
<strong>Samedi</strong> <span class="semaine">(semaine paire)</span>
<br>10h00 - 13h00 / 14h00 - 18h00
</li>
</ul>
<h3>Téléphone</h3>
<p><a href="tel:+33623197968">06.23.19.79.68</a></p>
<h3>Prise de rendez-vous en ligne</h3>
<a href="https://www.doctolib.fr/psychologue/provins/sarah-amaro?pid=practice-724041&phs=true&page=1&index=2"
target="_blank"
rel="noopener noreferrer"
class="doctolibButton">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect>
<line x1="16" y1="2" x2="16" y2="6"></line>
<line x1="8" y1="2" x2="8" y2="6"></line>
<line x1="3" y1="10" x2="21" y2="10"></line>
</svg>
Réserver sur Doctolib
</a>
</section>
</main>
<!-- BOUTON MAIL FIXE BAS DROITE -->
<button id="contactButton" onclick="window.location.href='mailto:amaro-psychologue@outlook.fr'">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
Envoyer un message
</button>
<footer>
<p>
Amaro Sarah © 2025 - Tous droits réservés
<a href="mentions-legales.html">Mentions légales</a> |
<a href="confidentialite.html">Politique de confidentialité</a>
</p>
</footer>
</body>
</html>