Basic HTML Definitions and Syntax Guide, Exams of Advanced Education

A concise overview of basic html concepts, syntax, and tags. It covers essential elements such as html structure, formatting, hyperlinks, css integration, images, tables, and scripting. The guide includes clear definitions and examples, making it a useful resource for beginners learning html. It explains the purpose and usage of various html tags, including <doctype>, <html>, <head>, <title>, <body>, headings, paragraphs, and more. Additionally, it touches on html formatting, hyperlinks, css styling, image embedding, table creation, color definitions, and client-side scripting with javascript.

Typology: Exams

2022/2023

Available from 09/12/2025

studyclass
studyclass 🇺🇸

1

(1)

28K documents

1 / 3

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Basic HTML correctly answered latest
2023
Editor - correct answer The program that allows you to edit and modify HTML code.
ex: notepad, wordpad
Syntax - correct answer Code syntax is the correct way that the code should be written.
HTML - correct answer Short for HyperText Markup Language, the authoring language
used to create documents on the World Wide Web. HTML defines the structure and
layout of a Web document by using a variety of tags and attributes.
/ - correct answer A slash is used to close a HTML tage
ex:<html> </html>
<DOCTYPE> - correct answer A tag that lets a browser know what type and which
version of HTML and XHTML is being used. Should be the first tag of the HTML page.
ex: <DOCTYPE html>
<html> - correct answer Second tag of the page, defines the start of the webpage
<head> - correct answer The <head> tag goes right after the <html> tag, the <head>
tag works with the toolbar and will not be displayed in the browser. the <head> tag
contains the <title> tag and can be used to store variables in JavaScript and PHP that
will be used later in the webpage.
<title> - correct answer The <title> tag is used to define what is displayed in the tab
when the webpage is opened.
ex:<title>Webpage 1</title>
<body> - correct answer The <body> tag opens us the body of the webpage, this is the
part that the browser displays and the user can see.
<h1> - correct answer The <h1> tag defines a heading. The size of the heading
depends on the number that is put in to the tag. The numbers that can be put into this
tag range from 1- 6, 1 being the biggest.
ex:
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<h4>This is a heading</h4>
<h5>This is a heading</h5>
pf3

Partial preview of the text

Download Basic HTML Definitions and Syntax Guide and more Exams Advanced Education in PDF only on Docsity!

Basic HTML correctly answered latest

Editor - correct answer The program that allows you to edit and modify HTML code. ex: notepad, wordpad Syntax - correct answer Code syntax is the correct way that the code should be written. HTML - correct answer Short for HyperText Markup Language, the authoring language used to create documents on the World Wide Web. HTML defines the structure and layout of a Web document by using a variety of tags and attributes. / - correct answer A slash is used to close a HTML tage ex:

  • correct answer A tag that lets a browser know what type and which version of HTML and XHTML is being used. Should be the first tag of the HTML page. ex:
  • correct answer Second tag of the page, defines the start of the webpage
  • correct answer The tag goes right after the tag, the tag works with the toolbar and will not be displayed in the browser. the tag contains the tag and can be used to store variables in JavaScript and PHP that will be used later in the webpage. <title> - correct answer The <title> tag is used to define what is displayed in the tab when the webpage is opened. ex:<title>Webpage 1
  • correct answer The tag opens us the body of the webpage, this is the part that the browser displays and the user can see.
  • correct answer The tag defines a heading. The size of the heading depends on the number that is put in to the tag. The numbers that can be put into this tag range from 1- 6, 1 being the biggest. ex: This is a heading This is a heading This is a heading This is a heading This is a heading

This is a heading

- correct answer The

tag defines the start of a paragraph. ex:

This is a paragraph.

HTML Formatting - correct answer HTML formatting is how the creator formats the text of the webpage. The tag for bold text is and the tag for italic is (there are more formatting tags, these are just the two most common). ex:

This is bold.

This is in italics

- correct answer The HTML tag defines a hyperlink. A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document. When you move the cursor over a link in a Web page, the arrow will turn into a little hand. The most important attribute of the element is the href attribute, which indicates the link's destination. By default, links will appear as follows in all browsers: An unvisited link is underlined and blue A visited link is underlined and purple An active link is underlined and red ex: Go to webpage 2 CSS - correct answer CSS (Cascading Style Sheets) is used to style HTML elements., Cascading style sheets are used to format the layout of Web pages. They can be used to define web page elements such as text styles and tables. - correct answer In HTML, images are defined with the tag. The src element inside of the tag defines the picture to display. ex:
  • correct answer Tables are defined with the tag.