Skip to content

Instantly share code, notes, and snippets.

@tech-chieftain
Created May 6, 2024 09:06
Show Gist options
  • Save tech-chieftain/ad242dfb550dc65aa6522f20b2470146 to your computer and use it in GitHub Desktop.
Save tech-chieftain/ad242dfb550dc65aa6522f20b2470146 to your computer and use it in GitHub Desktop.

HTML Discussion Questions

For each discussion question, please write the answer in your own words. You may also optionally comment your answers in the comment section below (if you have a GitHub account).

  • What does HTML stand for?
  • What is the purpose of HTML?
  • What is an HTML tag?
  • What does <div>, <p>, <h1>, and <a> stand for?
  • What is semantic HTML?
  • Why is semantic HTML important?
  • Identify and fix the bug in the following code
<h1>Welcome to my website<h1>
  • Identify and fix the bug in the following code
<p>This is a paragraph with a <strong> bold word.
@PamelaGwala
Copy link

-Hyper Text Mark-up Language
-We use HTML to structure the webpage
-a piece of markup language used to indicate the start and end of a page of an HTML element in an HTML document.
-

is division,

is paragraph,

is heading and is a hyperlink.
-a markup language that uses standardized names for elements to describe the content of web pages.
-It uses standardized names for elements and makes the code more understandable for developers,it can be understood by most by a greater variaty of devices as well as improve search engine optimization.

Welcome to my website

This is a paragraph with a bold word

@NokulungaM
Copy link

NokulungaM commented May 6, 2024

Nokulunga Msabala
Sakhile Motha

  1. Hyper Text Mark Up Language
  2. Create web pages
  3. Root element , container for root of the HTML code/ document
  4. (dividing sections), (Paragraph), (Main Heading), ( Defines the links)
  5. The use of HTML tags that convey the meaning
  6. Makes the HTML more readable by better defining the different sections and layout of web pages

Closing tag has no "/" before the h
No paragraph closing tag and strong closing tag after the word bold

@Geraldmutsw
Copy link

Geraldmutsw commented May 6, 2024

  1. Hyper Text Mark-up Language

  2. We use HTML to structure the webpage

  3. A piece of markup language used to indicate the start and end of a page of an HTML element in an HTML document.

  4. <div> is division,<p> is paragraph,<h1> is heading and <a> is a hyperlink.

  5. A markup language that uses standardized names for elements to describe the content of web pages.

  6. It uses standardized names for elements and makes the code more understandable for developers,it can be understood by most by a greater variaty of devices as well as improve search engine optimization.

<h1>Welcome to my website</h1>
<p>This is a paragraph with a <strong>bold </strong> word</p>

@Nhlanhla-advocate
Copy link

Nhlanhla-advocate commented May 6, 2024

  1. Hypertext Markup Language
  2. To create the structure of the web page
  3. It's a container for other HTML elements
  4. divides content in different sections.

    paragraph,

    headline and Web link

  5. Semantic HTML is a way of writing HTML that emphasizes the meaning of the content rather than its presentation.
  6. Accessibility and order
  7. Welcome to my website

  8. This is a paragraph with a bold word

@sthabiso-iv
Copy link

  • HTML stands for Hypertext Markup Language
  • Provides structure to webpages
  • They define the type of element within the HTML document
    • <div>: Division
    • <p>: Paragraph
    • <h1>: Most Important Heading
    • <a>: Anchor
  • Syntax definer for contained content
  • It helps browsers be able to classify and structure content appropriately
  • Corrected code:
    <h1>Welcome to my website</h1>
  • Corrected code:
    <p>This is a paragraph with a <strong>bold</strong> word.</p>

@KhileM
Copy link

KhileM commented May 6, 2024

  1. HyperText Markup Language
  2. Structure web pages by defining headings, paragraphs, and other content.
    Navigate the internet by creating links and organizing information.
  3. An HTML tag is a fundamental component of HTML (Hypertext Markup Language), the standard language for creating web pages and web applications. HTML tags are used to define the structure and content of a web page
  4. used to create a division or section in a web page

refers to the paragraph

main heading refers to the links to a https site 5. Use of html tag to convey meaning. 6. Semantic HTML is important because it improves accessibility, enhances code readability and maintainability. 7.

Welcome to my website

8.

This is a paragraph with a bold word.

@kokician
Copy link

kokician commented May 6, 2024

  1. Hypertext Markup Language
  2. HTML, or Hypertext Markup Language, is the standard markup language for creating web pages and web applications. Its primary purpose is to structure content on the web by defining the structure and layout of a webpage. Here are some key purposes and functionalities of HTLM
  3. An HTML tag is a piece of markup language used to indicate the beginning and end of an HTML element in an HTML document
  4. -
    : divisions or sections within a web page,

    define paragraphs of text on a web page,

    first header, , anchor

  5. Semantic refers to the use of HTML elements to convey meaning about the content they enclose, beyond just specifying how the content should be displayed
  6. Semantic HTML encourages the use of elements that accurately represent the purpose or meaning of the content they contain
  7. Welcome to my website

  8. This is a paragraph with a bold word .

@Hophneylen
Copy link

  • HTML stands for Hypertext Markup Language
  • Provides structure to webpages
  • They define the type of element within the HTML document
    • <div>: Division
    • <p>: Paragraph
    • <h1>: Most Important Heading
    • <a>: Anchor
  • Syntax definer for contained content
  • It helps browsers be able to classify and structure content appropriately
  • Corrected code:
    <h1>Welcome to my website</h1>
  • Corrected code:
    <p>This is a paragraph with a <strong>bold</strong> word.</p>

@LethuM2197
Copy link

-Hyper Text Mark-up Language
-We use HTML to structure the webpage
-a piece of markup language used to indicate the start and end of a page of an HTML element in an HTML document.
-

is division,

is paragraph,

is heading and is a hyperlink.
-a markup language that uses standardized names for elements to describe the content of web pages.
-It uses standardized names for elements and makes the code more understandable for developers,it can be understood by most by a greater variaty of devices as well as improve search engine optimization.

Welcome to my website

This is a paragraph with a bold word

@ndlovusimphiwe68
Copy link

  1. HyperText markup language
  2. used to structure a web page and it's contents
  3. used to open webpage
  4. - division,

    paragraph,

    heading, - link

  5. They define the meaning to both the developer and the browser
  6. They make it easier to code
  7. does not have a close tag

    (

    welcome to my website

  8. tag missing, also missing. (

    This is a paragraph with a bold )

@Yenkosii
Copy link

Yenkosii commented May 6, 2024

  • HTML stands for Hypertext markup language

  • HTML is used for structuring a webpage.

  • An HTML tag is a container that contains certain information about a webpage.

  • <div> divider

  • <p> paragraph

  • <h1> heading

  • <a> reference

  • Semantic HTML defines the meaning of a piece of code.

  • It makes it easier to read the code and provides a consistent structure.

  • The closing tag doesn't have a forward slash.

<h1>Welcome to my website</h1>

  1. Both elements are missing closing tags.

<p>This is a paragraph with a <strong> bold word.</strong> </p>

@hunny-bee
Copy link

hunny-bee commented May 6, 2024

Thabiso
Samuel
Bonolo

  1. HTML - Hyper Text Markup Language
  2. It is the building blocks of a website/ To build web pages/
  3. Used to indicate where or how the content on the webpage should be
  4. division

    paragraph

    Heading

    anchor tag, it is used for links
  5. Adds more meaning to tags
  6. It increases accessibility for people who cannot use the webpage normally and also helps developers to be able to read the code seamlessly
  7. Welcome to my website

    This is a paragraph with a bold word.

@Letagoeve
Copy link

  1. HyperText markup Langauge
  2. to structure a web page and it's contents
  3. HTML tag is used to open the web page
  4. div-division, p-paragraph,H1-Heading 1,a-link
  5. they define the meaning to both the developer and the browser
  6. they make coding easy
  7. h1 doesn't have the close tab

Welcome to my website

8.p and strong doesn't have close tab

This is a paragraph with a bold word

9.

@Pumlanikewana
Copy link

Pumlanikewana commented May 6, 2024

  1. Hyper Text Markup language.
  2. to create a structure of a webpage.
  3. is a container for all other HTML elements.
  4. : Divides the content in different sections

    : creates a paragraph of text

    : used for headlines : used to refer to a link

  5. It's a way of writing HTML that emphasis the meaning of the content rather than its presentation.
  6. It is important for accessibility and order
  7. Welcome to my website

  8. This is a paragraph with a bold word.

@ImisebenziEmihle
Copy link

ImisebenziEmihle commented May 6, 2024

Room 2

  1. Hyper Text Markup Language
  2. To structure and properly layout a webpage
  3. An HTML tag is special text enclosed within <> bracket and defines the elements in the html document
  4. : defines a divide in content, and separates them into different sections in the body

    : defines the paragraph section in the body

    : defines the headline before each paragraph : defines a hyperlink to another webpage

5 & 6. Semantic HTML are meaningful/informative tags used in html. Provide meaning and context to the webpages.
7.

Welcome to my website


8.

This is a paragraph with a bold word

@Mukoni-Nemauluma
Copy link

  1. HyperText Markup language
  2. To create the structure of a webpage
  3. a container for html elements
  4. = section divider

    = paragraphs,

    = main heading, anchor link

  5. semantics describes the meaning of the content, rather than presentation
  6. for order and accessibility
  7. Welcome to my website

  8. This is a paragraph with a bold word

@katmafalela
Copy link

  • Hyper Text Markup Language
  • Instruct the browser on how display web pages and how to create them
  • It is the beginning of a HTML page
  • is division,

    paragraph,

    header, and anchor

  • A semantic is a tag that conveys a meaning
  • They are important because they explain what the code is supposed to do
  • Welcome to my website
  • This is a paragraph with a bold word

@LindokuhleSkosana
Copy link

1.hyper text mark-up language
2.it structures the content of the page
3.its a peace of markup language that is used to indicate the beginning and the end of the html element in a html document
4.

-division

-paragraph

-main heading -link 5. it uses html tags to define the meaning within them 6.it helps search engines ,screen users, and other user devices understand the context of a web page's content

Welcome to my website

This is a paragraph with a bold word

.

@PhamelaMhlaba
Copy link

  1. Hyper Text Markup Language.
  2. Gives webpage the structure using different HTML elements .
  3. An HTML tag consist of an opening and closing tag. It defines the format of the webpage by using different elements which serve a different purpose.
  4. (divider),

    (paragraph),

    (Heading), (anchor).

  5. Semantic HTML uses elements that groups data in different sections.
  6. It makes it more readable and accessible so that it is easy for search engine optimization.
  7. -

    Welcome to my website

    : There is no closing tag.
    -

    This is a paragraph with a bold world.

    : There was no closing tag for strong and paragraph element.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment