[code] implemented more CSS code for project in styles.css, namely body, h1-h3 and styling for the placeholder text on the inputs, have also added background colour and font family parameters for project, added further code to home.html as well.

This commit is contained in:
2026-04-21 23:39:28 +01:00
parent f65b5eb19c
commit 2cb7d1b6ca
2 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
body {
font-family: Arial, Helvetica, sans-serif;
color: black;
background-color: white;
}
p {
font-size: 0.5rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1rem;
}
input[type=text] {
font-family: Arial, Helvetica, sans-serif;
}