forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdate Index.html
More file actions
38 lines (36 loc) · 740 Bytes
/
Update Index.html
File metadata and controls
38 lines (36 loc) · 740 Bytes
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
```html
<!DOCTYPE html>
<html lang="sw">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Erick Brand - Coming Soon</title>
<style>
body {
background-color: #0033cc;
color: #ffcc00;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
flex-direction: column;
}
h1 {
font-size: 4em;
margin: 0;
}
p {
font-size: 1.5em;
margin-top: 10px;
}
</style>
</head>
<body>
<h1>Coming Soon!</h1>
<p>Erick Brand - Huduma za Ubunifu wa Graphics zipo njiani.</p>
</body>
</html>
```