-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (42 loc) · 1013 Bytes
/
index.html
File metadata and controls
53 lines (42 loc) · 1013 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<style>
* {
font-family: 'Quicksand', sans-serif;
margin: 0;
padding: 0;
}
body {
display: grid;
place-content: center;
text-align: center;
background-color: red;
}
h1 {
margin: 2em 0;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #dadada;
padding: 2em;
}
</style>
</head>
<body>
<h1>
Hello GitHub
</h1>
<footer>
GitHub Workshop
</footer>
</body>
</html>