LEARN HTML
Think of the <html> tag as the wrapper on your burger.
Every website has a <head> tag.
Nothing in these tags can be seen on the webpage.
There is a <title> tag in the <head> tag.
This is what you see in your browser tab.
Think of the <title> tag as the top bun of your hamburger.
After that, you need a <body> tag.
Think of everything inside as the meat of the burger.
Then, there is the CSS (Cascading Style Sheets) file.
This is my CSS file for this page: <link href="/style.css" rel="stylesheet" type="text/css" media="all">
CSS sets the color, font, text decoration, link decoration, and background color or image of your website.
Think of the CSS file as the seasoning on your hamburger.
Next, there are headings.
Type <h1> for this heading
Type <h2> for this heading
Type <h3> for this heading
Type <h4> for this heading
Type <h5> for this heading
Type <h6> for this heading
You can have multiple headings of the same size on one webpage.
Think of the heading as the mustard on your hamburger.
After headings, there are paragraphs.
Type <p> for a paragraph.
Think of paragraphs as the ketchup of your hamburger.
Then there are images.
You can make an image by typing <img src="image.file-type">.
Think of the images as the cheese on your hamburger.