Getting the website live on day 1.

Getting the website live on day 1.

Title: Let's Build a Webpage: Easy HTML Steps with Vercel Magic


Introduction: Starting Something Fun

Today, I started making my own webpage with easy HTML. It's like playing with digital building blocks! And guess what? There's a special tool called Vercel that makes sharing my creation super cool!

HTML Tag: The Building Command

HTML is like a set of commands called tags. Think of <html> as the command to start building, and </html> as saying, "I'm done!"

Head and Body: Brain and Body Parts

Inside <html>, we have a brain (head) and a body. The head holds important info, and the body has everything people see.

Title Tag: Giving It a Name

In the head, there's a tag called <title>. It's like giving my webpage a name. Whatever I put between <title> and </title> shows up in the browser.

Heading Tags: Big and Small Titles

In the body, I use heading tags (<h1>, <h2>, ..., <h6>). They're like titles of different sizes. <h1> is big, <h6> is small.

Paragraph Tag: Telling a Story

To write, I use the paragraph tag <p>. Anything between <p> and </p> becomes a paragraph. It's like telling my webpage a story.

List Tags: Organizing Stuff

There are two types of lists: ordered (<ol>) and unordered (<ul>). Inside them, I use <li> for each item. It's like making a to-do list for my webpage.

Link Tag: Creating Secret Paths

To make links, I use the anchor tag <a>. Inside it, I put the web address (href) and the text to click on. It's like creating secret paths to other web places.

Image Tag: Adding Cool Pictures

For pictures, I use the image tag <img>. Inside it, I put the image source (src) and a description. It's like hanging a cool picture on my webpage.

Vercel Magic: Sharing the Fun

Now, here's the exciting part! Vercel is like magic. It helps me share my webpage with everyone on the internet. I can show off what I've made, and it's super easy to use!

Closing Thoughts: A Simple Adventure

Learning HTML is like having a simple adventure in web building. With Vercel, I can share my creation and let everyone see what I've made. It's like magic for the digital world!

My first website