-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
23 lines (23 loc) · 1.03 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="description" content="Portfolio Aurélien VILMINOT | Popup de confirmation d'envoi d'un mail.">
<meta name="keywords" content="Portfolio, Aurélien, Vilminot, description, iut, informatique, dut, amu, code, html, css, informaticien">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Confirmation | Aurélien VILMINOT</title>
<link rel="stylesheet" href="css/popup.css">
<link rel="icon" type="image/png" href="media/favicon.png"/>
</head>
<body>
<section>
<div class="popup">
<h2>Votre message a bien été envoyé</h2>
<a class="close" href="index.html">×</a>
<div class="content">
Je vous répondrai dans les plus brefs délais. <br> Merci de cliquer sur la croix pour revenir sur le site.
</div>
</div>
</section>
</body>
</html>