What does h1 do?
Make a big text / heading
What is the purpose of the <a> tag in HTML?
is used to create hyperlinks to other web pages, files, or locations within the same page.
With what tag you start and end the webpage
<html></html>
What does HTML mean?
HTML stands for Hypertext Markup Language. It is the standard markup language used for creating web pages.
What does p tag do?
Create a new paragraph with text
What is the purpose of the <img> tag in HTML?
is used to display images on a web page.
With what tag you add to make a word bold and underline
<b><u>Word </u></b>
What is HTML elements?
are the individual components that make up a web page, such as headings, paragraphs, and images
What does br do?
What is the attribute used in the <img> tag?
src
With what tag you add bullets
<ul><li> bullet </li></ul>
What is HTML tags?
are used to mark the beginning and end of HTML elements
How to adjust image size?
width="400" height="200"
What is the attribute used in the <a> tag?
href
With what tag you add numbers
<ol><li> bullet </li></ol>
What is the purpose of the <body> tag in HTML?
is used to define the main content of the HTML document that is displayed in the browser.