Podcast
Questions and Answers
What does HTML stand for?
What does HTML stand for?
What does HTML enable the browser to do?
What does HTML enable the browser to do?
What are the two types of tags in HTML?
What are the two types of tags in HTML?
In a web page, which part contains the text and visible content?
In a web page, which part contains the text and visible content?
Signup and view all the answers
How is a web page divided according to the information provided?
How is a web page divided according to the information provided?
Signup and view all the answers
Study Notes
Introduction to HTML
- HTML stands for Hypertext Markup Language.
- HTML is the language of the web, describing the content in web pages.
HTML Basics
- HTML is made up of tags and elements.
- Tags are surrounded by angle brackets (<>), and the words inside are called elements.
- There are two types of tags: container tags and empty tags.
- Container tags come in pairs (opening and closing tags), while empty tags stand alone.
HTML Structure
- A web page is divided into two parts: the head and the body.
- The head section is not visible in the browser, while the body section is visible.
Creating an HTML Page
- To create an HTML page, you need to structure it with HTML tags.
- Save the file with an .html extension in the HTML folder.
HTML Tags
- Examples of HTML tags include
,
, and<br>
. - The `` tag sets the title of the web page, which appears in the browser's title bar.
- The `` tag contains the visible content of the web page.
- The
<br>
tag is an empty tag used to insert a line break.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Description
This quiz covers basic concepts of HTML for Year 7 students. Topics include understanding what HTML is, structuring static web pages using HTML, and creating a simple HTML static web page. It also focuses on developing initiative and making connections between different elements.