iona_portfolio

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 53c57d0cc3b7dc756387e5b7c7b928e6d06be313
parent 98ad35c58358b01500c1593520c06a8e7b715c02
Author: Jo Young <>
Date:   Mon, 16 Feb 2026 13:16:53 +0000

Made html match required markup validity

Diffstat:
Mindex.html | 13++++++-------
Mscript.js | 2+-
2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/index.html b/index.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html lang=en> <head> <link rel=icon href=favicon.ico> <link rel=stylesheet href="stylesheet.css"> @@ -12,7 +12,6 @@ <header> <h2 style="text-align: center"> Iona - <hr hidden> <a href="https://www.instagram.com/ionartdn"> <img style="float:right" src="data:image/avif;base64,M4_AVIF_INSTAGRAM_BASE64" alt=instagram> </a> @@ -67,7 +66,7 @@ <p class=hidden><b>Fancy person</b><br>*/*/26</p> </a> <a onclick="artView(event)" class=art-image> - <img class=view-small src=img/people4.avif all="Dancing person"> + <img class=view-small src=img/people4.avif alt="Dancing person"> <p class=hidden><b>Dancing person</b><br>*/*/26</p> </a> </div> @@ -75,19 +74,19 @@ <div class=tabcontent id=sketches> <div class=art-grid> <a onclick="artView(event)" class=art-image> - <img class=view-small src=img/sketches1.avif> + <img class=view-small src=img/sketches1.avif alt="Bear doing washing"> <p class=hidden><b>Bear doing washing</b><br>*/*/26</p> </a> <a onclick="artView(event)" class=art-image> - <img class=view-small src=img/sketches2.avif> + <img class=view-small src=img/sketches2.avif alt="Bear questioning the meaning of life"> <p class=hidden><b>Bear questioning the meaning of life</b><br>*/*/26</p> </a> <a onclick="artView(event)" class=art-image> - <img class=view-small src=img/sketches3.avif> + <img class=view-small src=img/sketches3.avif alt="Bear doing a magic trick"> <p class=hidden><b>Bear doing a magic trick</b><br>*/*/26</p> </a> <a onclick="artView(event)" class=art-image> - <img class=view-small src=img/sketches4.avif> + <img class=view-small src=img/sketches4.avif alt="Bear looking somewhat upset about swiming"> <p class=hidden><b>Bear looking somewhat upset about swiming</b><br>*/*/26</p> </a> </div> diff --git a/script.js b/script.js @@ -16,7 +16,7 @@ function artReturn(evt) { var images = evt.currentTarget.parentElement.children; for (var i=0;i<images.length;i++) { if (images[i] != evt.currentTarget) { - images[i].className = "view-small"; + images[i].className = "art-image"; /*console.log(images[i].src);*/ } }