To design the webpage 'Harmony Library' with the specified styles, you need to use HTML for structure and CSS for styling. Here's how you can do it step-by-step:
HTML Structure
Start by creating the basic structure of your webpage using HTML. This includes the headings, bulleted, and numbered lists.
Harmony Library
Harmony Library
Library Services
Borrowing Books
Reading Rooms
Online Catalog
Register for a Library Card
Follow Library Rules
Participate in Events
CSS Styling
Next, create a CSS file named styles.css to apply colors and fonts to your webpage.
body { font-family: Arial, sans-serif; /* Sets the default font style to Arial */ }
ul li { color: blue; /* Sets bullet list items to blue */ }
ol li { color: orange; /* Sets numbered list items to orange */ }
h1, h2 { font-family: Arial, sans-serif; /* Ensures headings also use Arial font */ }
;