-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathabout.php
More file actions
42 lines (42 loc) · 1.08 KB
/
about.php
File metadata and controls
42 lines (42 loc) · 1.08 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>À propos</title>
<style>
/* ...copier le style de index.php... */
body {
background: #f4f4f4;
font-family: Arial, sans-serif;
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}
.container {
background: #fff;
padding: 40px 60px;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
text-align: center;
}
h1 {
color: #3498db;
margin: 0;
font-size: 2.5em;
letter-spacing: 2px;
}
p {
color: #333;
margin-top: 20px;
font-size: 1.2em;
}
</style>
</head>
<body>
<div class="container">
<h1>À propos</h1>
<p>Ce site est un exemple simple en PHP pour afficher "Hello World!" avec une page d'accueil stylisée.</p>
</div>
</body>
</html>