My First HTML & CSS Web Page learning

Hi, I'm Gayathri, a computer science student who's passionate about learning web development. This is my very first HTML & CSS project, and I'm happy to share it here with the Dev community. Introduction Learn how to use HTML and CSS to make webpages. HTML is the markup language that you surround content with, to tell browsers about headings, lists, tables, and more. CSS is the stylesheet language that you style the page with, to tell browsers to change the color, font, layout, and more. Tags html, css, beginners, webdev, firstproject. Ways to Apply CSS 1. Inline CSS: Directly within the HTML element using the style attribute. 2. Internal CSS: Within a tag in the section. 3. External CSS: The external CSS is the CSS linked to an HTML file using the tag. .header ul li a:hover { color: lightgray; text-decoration: underline; }

Jun 13, 2025 - 04:20
 0
My First HTML & CSS Web Page learning
  Hi, I'm Gayathri, a computer science student who's passionate about learning web development. This is my very first HTML & CSS project, and I'm happy to share it here with the Dev community. 

Introduction
Learn how to use HTML and CSS to make webpages. HTML is the markup language that you surround content with, to tell browsers about headings, lists, tables, and more. CSS is the stylesheet language that you style the page with, to tell browsers to change the color, font, layout, and more.
Tags
html, css, beginners, webdev, firstproject.

Ways to Apply CSS
1. Inline CSS: Directly within the HTML element using the style attribute.
2. Internal CSS: Within a tag in the section.
3. External CSS: The external CSS is the CSS linked to an HTML file using the tag.
.header ul li a:hover {
color: lightgray;
text-decoration: underline;
}