Reflection on Learning HTML Basics
As I look back on learning HTML, I realize how much I've learned about building webpages. HTML is the foundation of every website, and understanding its basic structure has been really important. I started by learning about the basic tags, like <html> , <head> , and <body> . These tags form the structure of a webpage, with <html> being the root, <head> for information like the title, and <body> for the content you see on the page. I also learned about semantic HTML, which means using the right tags for the right content. For example, <h1> for headings, <p> for paragraphs, and <a> for links. Another key lesson was working with attributes. For example, using href to link to another page or src to add an image. These attributes help control how things look and work on the page. Overall, learning HTML has given me a strong foundation in web development. I’m excited to build on this knowledge and start learning CSS and JavaSc...