Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Commit a7c72c9

Browse files
committed
init
0 parents  commit a7c72c9

File tree

3 files changed

+69
-0
lines changed

3 files changed

+69
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Boardify Pages
2+
This is a branch dedicated to the project github pages

index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Boardify</title>
8+
<link rel="stylesheet" href="styles.css">
9+
</head>
10+
11+
<body>
12+
<div class="site-wrapper">
13+
<header>
14+
<h1>Welcome to Boardify</h1>
15+
</header>
16+
<main>
17+
<p>This is a simple GitHub webpage for the Boardify project.</p>
18+
</main>
19+
<footer>
20+
<p>&copy; 2023 Boardify. All rights reserved.</p>
21+
</footer>
22+
</div>
23+
</body>
24+
25+
</html>

styles.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
:root {
2+
--footer-bg-color: #333;
3+
--header-bg-color: #333;
4+
--main-bg-color: #f4f4f4;
5+
}
6+
7+
body {
8+
font-family: Arial, sans-serif;
9+
text-align: center;
10+
margin: 0;
11+
padding: 0;
12+
background-color: #333;
13+
}
14+
15+
.site-wrapper {
16+
display: flex;
17+
flex-direction: column;
18+
min-height: 100vh
19+
}
20+
21+
header {
22+
background-color: var(--header-bg-color);
23+
color: white;
24+
top: 0 position: static;
25+
padding: 1rem 0;
26+
}
27+
28+
main {
29+
padding: 2rem;
30+
display: flex;
31+
flex-direction: column;
32+
background-color: var(--main-bg-color);
33+
flex: 1;
34+
}
35+
36+
footer {
37+
background-color: var(--footer-bg-color);
38+
color: white;
39+
padding: 1rem 0;
40+
bottom: 0;
41+
width: 100%;
42+
}

0 commit comments

Comments
 (0)