JY CHEN - Ask Anything, Learn Everything. Logo

In Computers and Technology / High School | 2025-07-03

Design the web page

Harmony Library

a) Bulleted list item set as blue
b) Numbered list item set as orange
c) Headings text style set as Arial

Asked by starboy3850

Answer (1)

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 */ }

;

Answered by JessicaJessy | 2025-07-06