Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.42 KB

File metadata and controls

27 lines (21 loc) · 1.42 KB

Week 1

Day 1 (HTML Basics):

  • Create a simple HTML page with a heading, a paragraph of text, and an image. Include appropriate HTML tags.

Day 2 (HTML Lists and Forms):

  • Build a list of your top 5 favorite books or movies using an ordered list.
  • Create an HTML form that includes fields for a user's name, email address, and a submit button.

Day 3 (HTML Tables and Images):

  • Construct a basic HTML table to display a list of products with columns for product name, price, and description.
  • Insert an image into the table you created and set the table's border attribute to control cell spacing.

Day 4 (HTML Links and Navigation):

  • Develop a navigation menu for a website using an unordered list.
  • Create links within the navigation menu that link to different sections of the same page.

Day 5 (CSS Basics and Styles):

  • Style the HTML page from Day 1 by changing the background color, font size, and text color using CSS.
  • Apply different font styles to the headings, paragraphs, and list items on your page.

Day 6 (CSS Layout and Positioning):

  • Use CSS to center-align the image within its container.
  • Create a CSS class that adds a border around an element and apply it to your form fields.

Day 7 (CSS Effects and Hover States):

  • Build a button that changes color when you hover over it using CSS.
  • Add hover effects to the navigation menu links from Day 4. Change the link color or background color on hover.