-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (68 loc) · 1.54 KB
/
index.html
File metadata and controls
71 lines (68 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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;
display: flex;
align-items: center;
justify-items: center;
flex-direction: column;
}
h1,
h2 {
font-weight: 500;
font-size: 32px;
margin: 0.3rem;
}
h1 {
padding-top: 0.2rem;
padding-bottom: 0.2rem;
width: 90%;
}
h2 {
font-weight: 300;
font-size: 16px;
}
h1:hover {
cursor: pointer;
color: white;
background-color: gray;
border: none;
border-radius: 10rem;
}
</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>