Okay, so the other day I was trying to figure out something totally random – how to make a webpage that would show a picture of a dog, but not just any dog, Ichiro Suzuki’s dog! You know, the baseball legend? Yeah, his dog. Don’t ask me why, I just get these weird ideas sometimes.

My (Slightly Goofy) Process
First, I fired up my trusty old text editor. Nothing fancy, just the basic one that comes with my computer. I’m no coding whiz, so I keep things simple.
Next, I started with the basic HTML structure. You know, the <html>
, <head>
, and <body>
tags. I even remembered the <!DOCTYPE html>
thingy at the top. Felt pretty proud of myself for that, not gonna lie.
<html>
<head>
Then add a title using the<title>
,I put “Ichiro’s Dog”.<body>
Then came the hard part…finding a picture! I googled “Ichiro Suzuki dog” and scrolled through a bunch of images. Finally, I found one that looked decent. I right-clicked and saved. save the image to my computer, making sure I knew where it was saved (Downloads folder, naturally).
Now, back to the code. Inside the <body>
tags, I added an image tag: <img src=" " alt="Ichiro's Dog">
. I put in “Ichiro’s Dog” to help people know what is it if the image doesn’t load.
I filled in the src
part with the name of the image file I saved, like “*” (or whatever you named it). And, you know what? I actually got it to work! A picture of Ichiro’s dog, right there on my webpage.
It’s a basic page,I mean it is really only an image.
So yeah, that’s how I spent an afternoon. Building a webpage dedicated to Ichiro Suzuki’s dog. It’s not going to win any awards, but hey, I learned something, and that’s what counts, right?
