Skip to content
Snippets Groups Projects
Commit 254533e6 authored by Maggie Kocorowski's avatar Maggie Kocorowski
Browse files

CSS styling

parent 6c024e7d
No related branches found
No related tags found
No related merge requests found
/* styles.css */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
main {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 20px;
}
h1, h2 {
color: #333;
}
footer {
text-align: center;
background-color: #333;
color: #fff;
padding: 10px 0;
}
\ No newline at end of file
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Page Title</title> <title>Your Page Title</title>
<link rel="stylesheet" href="main.css">
<!-- Add any additional metadata, stylesheets, or scripts here --> <!-- Add any additional metadata, stylesheets, or scripts here -->
</head> </head>
<body> <body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment