forked from CodeBrew28/now-github-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.08 KB
/
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
37
38
39
40
41
42
<!doctype html>
<html>
<head>
<meta charset='utf-8' />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<style>
body {
display: flex;
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
main {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
margin-top: 20px;
}
h1, h2 {
font-weight: 500;
font-size: 32px;
}
h2 {
font-weight: 300;
font-size: 16px;
}
</style>
</head>
<body>
<img src="first-gh-deployment.svg" alt="First GitHub Deployment" title="First GitHub Deployment" height="50" width="184" />
<main>
<h1>Congratulations!</h1>
<h2>You just made your first GitHub deployment.</h2>
</main>
</body>
</html>