blob: 8b99c59ff22d36a88446ef6a98456d277112c40b (
plain) (
blame)
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
|
<!doctype html>
<html>
<head>
<title>Pause</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
body {
padding-left: 5px;
padding-right: 5px;
text-align: center;
margin: auto;
font: 20px Helvetica, sans-serif;
color: #333;
}
h1 {
margin: 0px;
font-size: 40px;
}
article {
display: block;
max-width: 650px;
margin: 0 auto;
padding-top: 30px;
}
article + article {
border-top: 1px solid lightgrey;
}
article div {
text-align: justify;
}
a {
color: #dc8100;
text-decoration: none;
}
a:hover {
color: #333;
}
</style>
</head>
<body>
<article>
<h1>Site web en pause !</h1>
<div>
<p>Le site et les cours de photographie sont actuellement en pause.</p>
</div>
</article>
</body>
</html>
|