Untitled
unknown
plain_text
2 years ago
599 B
9
Indexable
/* Reset some default styles */
body, h1, h2, p, ul, li {
margin: 0;
padding: 0;
}
/* Basic styling */
body {
font-family: Arial, sans-serif;
}
header, nav, main, footer {
padding: 20px;
}
header {
background-color: #f0f0f0;
text-align: center;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
gap: 20px;
}
nav a {
text-decoration: none;
color: #333;
font-weight: bold;
}
main section {
margin-top: 20px;
}
footer {
text-align: center;
background-color: #f0f0f0;
font-size: 14px;
margin-top: 20px;
}
Editor is loading...