-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (51 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacktoberfest and GitHub</title>
<style>
body{
background-color: #193D5D;
color: #ffffff;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-content: space-between;
text-align: center;
font-family: "Inter Bold", "Helvetica", "Arial", san-serif;
}
.hero{
margin-top: 4rem;
}
.fest_img{
max-width: 80%;
height: auto;
}
.container{
display: flex;
flex: row;
justify-content: center;
margin-top: 2rem;
}
.community-content{
width: 80%;
height: 10rem;
background-color: #93C3DB;
}
</style>
</head>
<body>
<header class="hero">
<h1>Hello freeCodeCamp Jackson, MS</h1>
<p>Today we're learning git and GitHub</p>
<img src="./assets/HF-full-logo-b05d5eb32b3f3ecc9b2240526104cf4da3187b8b61963dd9042fdc2536e4a76c.svg" alt="hacktoberfest 2020 logo" class="fest_img">
</header>
<main class="container">
<section class="community-content">
Grid with content will go here
</section>
</main>
</body>
</html>