Skip to content

Commit 5b69dec

Browse files
authored
Add basic styles for body, header, section, and footer
1 parent 2da96a1 commit 5b69dec

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

one-page-website/style.css

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
.txt
1+
body {
2+
font-family: Arial, sans-serif;
3+
margin: 0;
4+
padding: 0;
5+
}
6+
7+
header {
8+
background-color: black;
9+
color: white;
10+
text-align: center;
11+
padding: 20px;
12+
}
13+
14+
section {
15+
padding: 30px;
16+
}
17+
18+
footer {
19+
background-color: #f2f2f2;
20+
text-align: center;
21+
padding: 10px;
22+
}

0 commit comments

Comments
 (0)