From 6d60420c6ba2190097ea875b8b191a526372616e Mon Sep 17 00:00:00 2001 From: csm-18 <112937168+csm-18@users.noreply.github.com> Date: Fri, 17 Jan 2025 11:38:09 +0530 Subject: [PATCH] fix typo in html-foundations/links-and-images.md height and width are attributes of img element (not tags on img element) --- foundations/html_css/html-foundations/links-and-images.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundations/html_css/html-foundations/links-and-images.md b/foundations/html_css/html-foundations/links-and-images.md index d96bf3ed970..6a478f24c82 100644 --- a/foundations/html_css/html-foundations/links-and-images.md +++ b/foundations/html_css/html-foundations/links-and-images.md @@ -280,7 +280,7 @@ attributes in image tags helps the browser layout the page without causing the p It is a good habit to always specify these attributes on every image, even when the image is the correct size or you are using CSS to modify it. -Here is our Odin Project logo example with height and width tags included: +Here is our Odin Project logo example with height and width attributes included:

@@ -292,7 +292,7 @@ Here is our Odin Project logo example with height and width tags included: -Go ahead and update the `odin-links-and-images` project with width and height tags on the dog image. +Go ahead and update the `odin-links-and-images` project with width and height attributes on the dog image. ### Assignment