-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 856 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Congratulations!</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
text-align: center;
margin: 0;
padding: 0;
}
header {
background-color: #3498db;
color: #fff;
padding: 20px;
}
h1 {
font-size: 24px;
}
.container {
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>Congratulations!</h1>
</header>
<div class="container">
<p>You have successfully performed all the tasks and configuration required for this project.</p>
</div>
</body>
</html>