diff --git a/3-terrarium/1-intro-to-html/README.md b/3-terrarium/1-intro-to-html/README.md index 8aab19d7..61ebfaf9 100644 --- a/3-terrarium/1-intro-to-html/README.md +++ b/3-terrarium/1-intro-to-html/README.md @@ -167,7 +167,7 @@ Add those plant images into two columns between the `` tags: With this markup, the plants now show up on the screen. It looks pretty bad, because they aren't yet styled using CSS, and we'll do that in the next lesson. -Each image has an alt tag that will appear even if you can't see or render an image. This is an important element to include for accessibility. Learn more about accessibility in future lessons; for now, remember that the alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader). +Each image has alt text that will appear even if you can't see or render an image. This is an important attribute to include for accessibility. Learn more about accessibility in future lessons; for now, remember that the alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader). ✅ Did you notice that each image has the same alt tag? Is this good practice? Why or why not? Can you improve this code? @@ -175,7 +175,7 @@ Each image has an alt tag that will appear even if you can't see or render an im ## Semantic markup -In general, it's preferable to use 'semantics' when writing HTML. What does that mean? It means that you use HTML tags the way they were designed: to represent its data; so an H1 tag should always be present on a page +In general, it's preferable to use meaningful 'semantics' when writing HTML. What does that mean? It means that you use HTML tags to represent the type of data or interaction they were designed for. For example, the main title text on a page should use an `

` tag. Add the following line right below your opening `` tag: @@ -183,9 +183,9 @@ Add the following line right below your opening `` tag:

My Terrarium

``` -Using semantic markup such as having headers be `

` and unordered lists be rendered as `