Skip to content

Instantly share code, notes, and snippets.

@tech-chieftain
Created May 6, 2024 09:06
Show Gist options
  • Select an option

  • Save tech-chieftain/ad242dfb550dc65aa6522f20b2470146 to your computer and use it in GitHub Desktop.

Select an option

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.
@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