HTML Reading Assignment

1.HTML is HyperText Markup Language and is the code used to structure the content of a web page.
2. HTML is used to structure a web page and its content.
3. We are learning HTML because it is the foundation for designing web pages and allowing us to structure our content.
4. An HTML tag is used for creating HTML elements.
5. The structure of an HTML tag is an opening tag, content, and a closing tag. Opening tags are wrapped in opening and closing angle brackets. Closing tags are the same as opening tags except they include a forward slash before the element name.
6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
7. The general anatomy of an HTML document general consists of: A doc-type element, the html element, the head element, meta elements, a title element, and a body element.

1 Like

Welcome to the discussion about the first assignment.

  1. What is HTML?
    A: HyperText Markup Language
  2. What is HTML used for?
    A: It’s the protocol used to write all websites and display the text and content on the internet. It also helps to create a structure for how the website is displayed.
  3. Why are we learning HTML?
    A: To gain an understanding of how websites are coded and thus allowing us to build our owns websites whilst understand exactly what it entails and how the code works and operates.
  4. What is an HTML tag?
    A: The HTML tags is used to differentiate different attributes, structures to certain elements of text or imagery.
  5. What is the structure of an HTML tag?
    A: Open and then to Close
  6. What is an attribute?
    A: Special characteristics or features of the element, such as making the text bold or changing its colour etc.
  7. What is the anatomy of an HTML document?
    A: < !DOCTYPE html> < html> < head> < meta charset=“utf-8”> < title> < /head> < body> "Insert text & Imagery here" < /body > < /html>
1 Like

1.HTML is a markup language that structures a website.
2. Structuring a website, is like the skeleton of the body.
3.To develop websites.
4.A tag shows the beginning/ending of a
HTML element.
5.opening brackets, name of tag,closing bracket. if the tag is aclosing tag we add a forward slash before the name of the tag
6.Extra info about the element.
7.

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  
</body>
</html>
1 Like
  1. HTML stands for Hyper Text Markup Language and is code that is used to structure webpages and the content.
  2. HTML is used to define the structure of your content by using a series of elements to enclose or wrap different parts of the contents to make them appear or act in certain ways.
  3. We are learning HTML because it will help us get an understanding of coding basics and more that can help us develop websites and be a foundation for learning different coding languages in the future.
  4. A HTML tag is used to show the beginning and ending of an element and are basically the contents of and instructions of the element.
    5.The structure of a HTML tag is the opening tag(consists of the name of the element), followed by the content, and then a closing tag(same as opening tag but contains forward slash before name).
  5. An attribute is extra information about the element that you dont want to appear in the content.
  6. The anatomy of a HTML document consists of doc-type, html element, head element, meta charset=“utf-8” (character set) element, meta name=“viewport” content=“width=device-width” viewport element, title element, and body element.
1 Like
  1. What is HTML?
    HTML stands for Hyper, Text, Markup, Language.

  2. What is HTML used for?
    HTML is used to structure web pages and their content.

  3. Why are we learning HTML?
    HTML so we can build web pages correctly.

  4. What is an HTML tag?
    An HTML tag is a piece of markup language used to indicate the beginning and end of an HTML element.

  5. What is the structure of an HTML tag?
    The basic structure of an HTML tag is content

  6. What is an attribute?
    Attribute contain extra information that you do not want to appear in the content.

  7. What is the anatomy of an HTML document?
    doctype> - sets rules for the HTML page to follow
    html> - wraps the contents on the page
    head> - contains page info that is not content. (keywords, page description, css, character set, etc…)
    body> - contains the contents of the page ( text, images, video, etc…)
    meta charset=“utf-8”> - character set of the document, to handle textual content
    title> - sets the title of the page, which appears in the browser tab

1 Like

1: HTML(Hyper Text Markup Language) is a text based programing language,
2: HTML is used to make the structure of websites.
3:We are learning HTML to Become a milionere! but also to have a strong fundation to learn more complex coding .
4: A tag is used to mark start and endings in a HTML dokument making it readeble for the browser.
5: the structure is usaly an opening tag < and a closing tag>
6: an attribute is a section in the comand line where extra information about an element you dont want to appear in the actual content
7: The anatomy of an HTML document is made up of the basic framework for making a website/orl, it needs editing to become something.

1 Like
  1. HTML stands for Hypertext Markup Language and is a coding language

  2. It is used to display information on websites

  3. Because HTML is the language of the web

  4. An HTML tag makes the browser recognize what type of content on the website.

  5. A tag starts with an opening <tag, has some attribute inside, and finishes with a closing forward slash tag />

  6. Attributes are additional information about the content

  7. < !DOCTYPE html> < html> < head> < meta charset=“utf-8”> < title> < /head> < body> “Insert text & Imagery here” < /body > < /html>

1 Like
  1. What is HTML?
    HyperText Markup Language

  2. What is HTML used for?
    Allows browsers to understand the stucture of your content.

  3. Why are we learning HTML?
    To create web pages.

  4. What is an HTML tag?
    Identifier of a certain type of content, allowing it to be displayed in a certain way.

  5. What is the structure of an HTML tag?
    Element is the entire thing, with an opening tag, content and closing tag inside.

  6. What is an attribute?
    Hidden notes that you only want the editor of the code to see, not the public

  7. What is the anatomy of an HTML document?

<html>
   <head>... </head>
   <body>...</body>
 </html>
1 Like

**What is HTML? What is HTML used for?
Hypertext Markup Language is the code used to structure and build a webpage. It consists of elements, tags that enclose or wrap the content to make it appear a certain way, so that the browser displays a webpage as designed.
**Why are we learning HTML?
To be able to build our own websites as well as be able to read the HTML language and understand it on our own and to be able to work with it.
**What is an HTML tag?
A set of characters comprising a formatted command for a webpage.
**What is the structure of an HTML tag?
A tag consists of the name of the element wrapped in opening and closing angle brackets e.g. <ol> . There is an opening and closing tag.
**What is an attribute?
An attribute contains additional information about the element and modifies or provides functonality to certain types of elements.
**What is the anatomy of an HTML document?
HTML document consists of a number of standard individual elements that provide and define its structure e.g. the head and the body as its two main parts.

<html>
  <head>
    <title>This is my title!</title>
  </head>
  <body>...</body>
</html>
1 Like
  1. What is HTML?

A: HTML stands for Hypertext Markup Language.

  1. What is HTML used for?

A: HTML is used for structuring the content of a page, consisting of elements that are made to act or present themselves in a certain way with tags, attributes, etc.

Examples: Italicised text, text size, font, colour, paragraphs, headings, subheadings etc

  1. Why are we learning HTML?

A: We are learning HTML in order to build a foundation for web development, that way we can navigate through multiple languages & protocols diligently and create web applications on our own.

Every webpage we visit is coded with HTML, it is the backbone of any webpage. When it comes to releasing/showcasing information, research, a project etc you must use HTML for the frontend before adding CSS, JS etc.

  1. What is an HTML tag?

A: An HTML tag informs the browser that it is an HTML document, and a webpage. It also defines how the page is going to be displayed.

  1. What is the structure of an HTML tag?

A: The structure of an HTML tag is comprised of an opening bracket “<” and a closing bracket “>” , however, a closing tag is always built with a forward slash prior to the closing bracket, like so, “

”.

An example of a paragraph element would be,

My cat is very grumpy

  1. What is an attribute?

A: Attributes contain extra information about an element that you don’t want to appear in the actual content. An attribute usually comes in name/value pairs, like so, name=”value”.

They are always specified in the opening tag.

  1. What is the anatomy of an HTML document?

A: The anatomy of an HTML document consists of:

!DOCTYPE - Doctype is a required preamble, this defines what standard of HTML the CPU must execute the instructions in. This is also for the developer.
head - This element contains the information about the format of the content, from language, to character set, all the CSS (Cascade Styling Sheets) used to style the page etc. This is the first element of an HTML page.
body - The body section of an HTML document contains all the information, text, paragraphs, images, videos etc that you would like to display on your page.

1 Like

What is HTML?
HTML is the language with which we can create, form, and style the content of a webpage.

What is HTML used for?
The above answer answers this question also

Why are we learning HTML?
Knowing HTML is knowing the basics of how a simple webpage works

What is an HTML tag?
An HTML tag determines the type of the element. Each element must contain an opening and a closing tag

What is the structure of an HTML tag?
HTML tag must be inside the signs of: < > . For example

What is an attribute ?
Attributes are the ‘helpers’ with which we can add value to the elements

What is the anatomy of an HTML document?

<!DOCTYPE html>
<html lang="en-US">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>     </title>
  </head>
  <body>
    
  </body>
</html>
  1. What is HTML?
    It’s HyperText Markup Language.
  2. What is HTML used for?
    It is used for designing and creating websites.
  3. Why are we learning HTML?
    Because it is a key aspect of communication via Web 2.0 Web3 in order to present technology or solutions. A universal language that is threaded to the blockchain as well.
  4. What is an HTML tag?
    An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.
  5. What is the structure of an HTML tag?
    It begins with an opening tab and closing tag at the end. All tags go in <>, such as the one for paragraph

    , and it must be closed at the end,

  6. What is an attribute?
    It provides additional information in the element, and always comes between " ".
  7. What is the anatomy of an HTML document?
    Doctype
    head
    body
  1. What is HTML?
    HTML(Hyper Text Markup Language)

  2. What is HTML used for?
    HTML is used as a code which we use for structuring websites.

  3. Why are we learning HTML?
    We are learning HTML because because we need to know it to understand the background of web2 and to do that we need to disect the code that it depends on.

  4. What is an HTML tag?
    it is a letter or a word( can be either opening or closing ) that defines the role of the tagged line.

  5. What is the structure of an HTML tag?
    opening tag(the opening bracket -> a letter or a word representing the tag -> closing bracket)
    closing tag(the opening bracket ->forward slash-> a letter or a word representing the tag -> closing bracket)

  6. What is an attribute?
    A combination of the name and the value of the tag.

  7. What is the anatomy of an HTML document?
    It consists of the head, and the body.

  1. HTML is the code language that is used to build web pages and it’s content
  2. It is used for the basic structure of a website
  3. So we can have a knowledge of how to build websites for our projects
  4. It defines the start and end of element and instructs what that element is
  5. the structure of an HTML tag would be as follows - open tag + content + closing tag = element
  6. An attribute is extra information that isn’t apparent within its content
  7. The anatomy of a HTML doc, usually comprises of a head and a body
  • What is HTML? Hyper Text Markup Language
  • What is HTML used for? to structure a web page
  • Why are we learning HTML? to create a website
  • What is an HTML tag? a tag defines how words and images appear on a web page
  • What is the structure of an HTML tag? element = opening tag, content, closing tag
  • What is an attribute? it contains information about an element that does not display in the content
  • What is the anatomy of an HTML document?

My First Reading Assignment:

1.Hyper Text Markup Language .
2.We use this language to structure the page.
3.To build your own website to be unique.
4.It showes the beginning and the end of an element.
5.The name of the tage, the left and right angle bracktes.
6.It’s anadditional information for the elements.
7.The body element , head element

  1. What is HTML? - is a markup language that defines the structure of your content.
  2. What is HTML used for? is the code that is used to structure a web page and its content.
  3. Why are we learning HTML? To build web pages
  4. What is an HTML tag?tag is used for creating a series of element.
  5. What is the structure of an HTML tag? Open tag, Closing tag
  6. What is an attribute? An attribute extends an HTML or XML element, changing its behavior or providing metadata. - An attribute always has the form name=“value” (the attribute’s identifier followed by its associated value).
  7. What is the anatomy of an HTML document? My test page My test image

Answers:
1.Hyper text mark up language, which
2.HTML is a code to structure a webpage and the content of the webpage.
3. Basic starting point for a journey to learn web3 developement.
4. A tag is basically the opening/ending point of a so called element (with content) in HTML
5. Structure of an HTML tag: Element = opening tag , content, closing tag. The structure of the only the tag is e.g. for an opening tag: <p> and for a closing tag: </p>
6.An attribute contains extra information (e.g. style information), but will not appear in the actual content.
7.Anatomy of an HTML tag: Element = opening tag , content, closing tag.

  1. HTML or Hyper Text Markup Language is programming language.
  2. HTML is used to define and manipulate the content displayed on a web page.
  3. We are learning HTML so we can build our interface, in the case of this course for a decentralized exchange.
  4. An HTML tag is used to create an element of our HTML document.
  5. The structure of an HTML tag is <>. Whatever type of element desired is placed between. The closing tag also includes a / before the desired type. For example a paragraph opening and closing tag are as follows

    .
  6. An attribute adds information about a certain element, but this information isn’t actually displayed.
  7. The anatomy of an HTML document is the doctype, the root element, the head element, the title, and the body.
  1. Hyper Text Markup Language
  2. HTML is used to structure web pages and the content contained on the page.
  3. It’s the code used for web and blockchain development.
  4. Tags are used to create elements which define how content acts or appears.
    Ex: paragraph, bullet point, list
  5.  <opening tag></closing tag>
    
  6. Attributes can contain metadata or change the way an element behaves.