Spaces:
Running
Running
Create Index.html
#356
by
HoundeglassoD
- opened
- Index.html +27 -0
Index.html
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="fr">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>Mon site</title>
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
background: #f4f4f4;
|
11 |
+
text-align: center;
|
12 |
+
padding: 50px;
|
13 |
+
}
|
14 |
+
h1 {
|
15 |
+
color: #333;
|
16 |
+
}
|
17 |
+
p {
|
18 |
+
font-size: 18px;
|
19 |
+
color: #555;
|
20 |
+
}
|
21 |
+
</style>
|
22 |
+
</head>
|
23 |
+
<body>
|
24 |
+
<h1>Bienvenue sur mon site 🚀</h1>
|
25 |
+
<p>Ce site a été déployé avec Hugging Face Spaces.</p>
|
26 |
+
</body>
|
27 |
+
</html>
|