HTML Reading Assignment

  1. What is HTML?
    HTML stands for HyperText Markup Language. HTML is the language of the web and is used program websites.
  1. What is HTML used for?
    HTML is the language for building websites.

  2. Why are we learning HTML?
    We are learning HTML because HTML is the basis for Web3 technology that will integrate with Blockchain technologies.

  3. What is an HTML tag?
    An HTML tag describes content or code that is on a website.

  4. What is the structure of a HTML tag?
    An HTML tag will include, sometimes an opening tag and and a closing tag. However, some HTML tags will not have a closing tag such as the img tag.

  5. What is an attribute?
    An attribute is included in order to give additional information about a given tag.

  6. What is the anatomy of an HTML page?

The anatomy of an HTML page is the following:

          <body>

         </body>
  1. hyper text markup language
  2. html is used for defining the structure of your content.
  3. it means you can create your own website, for free in the way you want it
  4. An html tag shows it is html and defines things in the text.
  5. it opens with and ends with
  6. attributes contains extra information that you do not want to be in the actual content
1 Like

1 Hypertext markup language
2 It’s used to structure a web page and its content.
3 Because it’s necessary to know the language of a web page in order to create one.
4 It shows that the web page is written in HTML, and appears at the beginning and the end of the web page.
5 It consists of a series of elements, with opening and closing tags, and the content in the middle.
6 It contains the information about the element that you don’t want to appear in the actual content.
7 It consists of

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
    <img src="" alt="My test image">
  </body>
</html>
  1. HTML - hyper text markup language
  2. To structure a webpage and the content on it
  3. To learn how to create a front end ( interface) that interacts with blockchain
  4. It helps to define an element
  5. Opening tag <> closing tag </>
  6. Attributes are an additional content in element that available for developers only
  7. It contains doctype, html element, head element, title and body tag
1 Like
  1. What is HTML?
    HTML ( hyper text markup language) is the code that is used to structure a web page and its content.

  2. What is HTML used for?
    To structure a webpage and it’s content.

  3. Why are we learning HTML?
    Because HTML is a basis programming language which is already used in significant other topics. Besides that it has a link to CSS and javascript.

It is the fundament to learn how to create a front end to interact with the blockchain.

  1. What is an HTML tag?
    It opens and closes a content. Basically these are the buildingblocks. It defines what the element is.

  2. What is the structure of an HTML tag?
    A serie of elements, with an opening tag and a closing tag and in between you have te content (and attributes)

  3. What is an attribute?
    Extra information about the element that you don’t want to appear in the actual content.

  4. What is the anatomy of an HTML document?
    The anatomy consist of a doctype, html element, head element, a elemnt that sets the character your document should use, title element and the body element.

1 Like
  1. What is HTML?
    ->Hypertext Markup Language

  2. What is HTML used for?
    ->It is a code comprising of elements used to wrap text and make it appear or behave in a certain way.

  3. Why are we learning HTML?

->So that we can create the structure of websites.

  1. What is an HTML tag?

->The tag is a statement of when the element begins and ends.

  1. What is the structure of an HTML tag?

->A tag consists of open and closed brackets, with the name of the element inside.

  1. What is an attribute?

->Attributes give further properties to an element.

  1. What is the anatomy of an HTML document?
1 Like

1.Hypertext markup language
2.HTML is used to structure a web page and contents
3.We are learning HTML so that we can create our own websites in our own unique way that will attract visitation to our page.
4 The structure used for creating our opening and closing our content
5.The structure is embedded in the opening and closing tags that creates the element
6.Attribute contains information that will not be displayed on the content but is there for future use cases.
7. The anatomy is the structure of the html page that need to be addressed for the page to work.

1 Like

1.Hypertext Markup Language
2. HTML is used to display Text or images in a browser. Also Hyperlinks can be created or video shown.
3. Because without HTML we can not structure or (I think) even display anything outside of our Visual Code Studio software environment. With HTML we can create Paragraphs and much more.
4.It is for creating an element. So the Browser knows what to show and also in which way it has to show the content.
5. The structure is open Tag and close Tag…In between is the content…and everything is called an ā€œelementā€
6. If we want to specify something in the content you can specify it with an attribute because you can create a class and then the class gets a value. The advantage is that it can not be seen on the browser page.
7.HTML, Head and Body…e.g. In the Head elements you write the page titles or general information about the page and in the body element you can write whatever the text is about you want to write (the content of the site with all information). Dont forget to close the tag

1 Like
  1. Code that is used to structure a web page and contents
    2 )used to structure the elements that defines the web page
  2. To learn how to code using HTML
  3. Command code to open/close a content line (paragraph/body/etc)
  4. to make content appear or act a certain way
  5. Extra information about the element that will not appear in the content
  6. Doc Type
    HTML Tag
    Head
    Body
1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of a content.

  2. What is HTML used for?
    It is used to structure a web page and it content.

  3. Why are we learning HTML?
    To be able to build and create content on the web page.

  4. What is an HTML tag?
    This is markup language use to indicate the beginning and the end of an HTML element.

  5. What is the structure of an HTML tag?

"< >" Symbol represents a tag, they usually consist of the opening tag and closing tag.
  1. What is an attribute?
    An attribute is more information for the HTML element.

  2. What is the anatomy of an HTML document?
    This is the basic form of the all HTML elements that are combine to form an entire web page.

1 Like
  1. What is HTML?

HTML is a markup language and is short for HyperText Markup Language

  1. What is HTML used for?

It is the code used to structure a web page and its content

  1. Why are we learning HTML?

HTML is one of the most common building blocks of the WWW and is used in any kind of web application

  1. What is an HTML tag?

In HTML, a tag is used for creating an HTML element

  1. What is the structure of an HTML tag?

The are three different kind of tags

  1. Opening tag: The opening tag consists of the name of the element (e.g. p), surrounded by an opening and closing angle bracket. Example: <p>

  2. Closing tag: The closing tag consists of the name of the element (e.g. p), preceded by a forward slash (/) and surrounded again by an opening and closing angle bracket. Example: </p>

  3. Empty tag: Empty tags are structured the same way as opening tags. Opening tags however always have a corresponding closing tag, whereas empty tags do not (and should not) have closing tags. Empty tags are used only for certain HTML elements, such as images (<img>) or line breaks (<br>).

  1. What is an attribute?

Attributes contain extra information about the element, which are not meant to appear in the actual content of the related HTML element (e.g. id or class attributes).

  1. What is the anatomy of an HTML document?
  1. doctype. It is a required preamble which ensures the HTML document behaves correctly. It is mostly considered a relic from the older days of the Internet

  2. html element. It is also known as the root element of an HTML document and basically wraps around all the following content

  3. head element. The head element acts as a container for all of the things one does not want to include on the HTML page that isn’t the content one is showing to the page’s viewers. This might include links to Cascading Style Sheets (CSS) or additional meta-information (e.g. keywords) for search engines parse and learn about a page’s content

  4. meta charset=ā€œUTF-8ā€. This element sets the character set the document should use to UTF-8, which includes most characters from the vast majority of written languages (including emojis :upside_down_face:)

  5. the title element. This sets the title of a page, which is the title that appears in the browser tab the page is loaded in.

  6. the body element. This contains all the content that one wants to show to web users when they visit a page, whether that’s text, images, videos, games, playable audio tracks, etc. pp

1 Like
  1. Mark up language for websites
  2. It is used for displaying websites.
  3. To properly display content on our websites.
  4. HTML tag defines what type of content is inside of it.
  5. Opening content closing
  6. Each tag can have attributes so we can refence it later or it tells the tag where to find something like a link or a picture it can have id, classname, src…
    7.HTML document should have html tag head tag and body tag
1 Like

HTML is an acronym that stands for HyperText Markup Language.

It is a coding language that is used to tell a web server how to render content to the internet.

It is important to know HTML so we can create web site content on a fundamental level

An HTML tage is what defines the boundaries of an element. It is comprised of an opening tag, a closing tag and the content contained within the tag.

An attribute is the part of the tag that defines the style or distinct features of the content.

The dissected HTML document includes the root element, <html></html>, the header element, <head></head>, and the body element, <body></body>. Some ancillary pieces include the doctype element, <!DOCTYPE html>, and title element, <title></title>.

1 Like
  1. HTML HyperTextMarkupLanguage, that defines the structure of your content.
  2. It is used to add structure or the bones to the site in development.
  3. We are learning HTML so we can assemble the essential elements of a web page.
  4. A HTML tag is an initiator and ending of an element.
  5. Angle bracket html angle bracket , angle bracket forward slash html angle bracket
  6. An attribute is extra information about an element but does not appear in the content.
  7. Doctype, html, head, meta charset, title, and body.
1 Like
  1. HyperText Markup Language

  2. HTML builds the structure and content of your webpage

  3. Its the foundation to do anything else web application related.

  4. A tag is like the flag of what thing is suppose to be used

<p>Here's some content</p>
  • <p> (opening tag)
  • element (name of the thing - p)
  • content (content/text)
  • </p> (closing tag)
  1. An attribute adds specific details about an element that you doesn’t appear in the content but determines something about the element.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
    <img src="images/firefox-icon.png" alt="My test image">
  </body>
</html>```
1 Like
  1. What is HTML?
    Hyper Text Markup Language

  2. What is HTML used for?
    Html is used to structure your content on a webpage.

  3. Why are we learning HTML?
    So we can structure our webpages and make changes to its appearance.

  4. What is an HTML tag?
    Its used to specify element for the content ie. paragraph, heading, etc.

  5. What is the structure of an HTML tag?
    Opening tag
    Body/content
    Closing tag

  6. What is an attribute?
    Attribute gives additional value to the html element that doesnt appear on the webpage, but gives it a non-unique identifier that can be targeted to make changes in their appearance for example.

  7. What is the anatomy of an HTML document?
    Type ! in visual studio code

1 Like
  1. What is HTML?
    HTML is the code that is used to structure a web page and its content.

  2. What is HTML used for?
    HTML is a markup language that defines the structure of your content.

  3. Why are we learning HTML?
    HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

  4. What is an HTML tag?
    An HTML tag is what is used to begin and end any element that defines what the element is.

  5. What is the structure of an HTML tag?
    An HTML tag is made up of an opening tag <tag> and a closing tag </tag> with the element or content between the tags.

  6. What is an attribute?
    Attributes contain extra information that is placed in the opening tags to further describe and design the element by assigning a css class.

  7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html></html>
<head></head>
<meta charset="utf-8">
<title></title>
<body></body>
1 Like
  1. What is HTML?
    HTML is the code that is used to structure a web page and its content.

  2. What is HTML used for?
    HTML is a markup language that defines the structure of your content.

  3. Why are we learning HTML?
    HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

  4. What is an HTML tag?
    An HTML tag is what is used to begin and end any element that defines what the element is.

  5. What is the structure of an HTML tag?
    An HTML tag is made up of an opening tag <tag> and a closing tag </tag> with the element or content between the tags.

  6. What is an attribute?
    Attributes contain extra information that is placed in the opening tags to further describe and design the element by assigning a css class.

  7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html></html>
<head></head>
<meta charset="utf-8">
<title></title>
<body></body>
1 Like

Hi , My answer

  1. Hyper Text Markup Language
  2. The code that is use or define the structure a web page
    3.So that our web page we build will have proper structure and easy to navigate the code
  3. Tag is used for creating element

5.

Hello, Moralis

.

- opening tag ,"Hello,Moralis" -content ,

- closing tag. All together are call Element.

6.Attribute contain extra information about element that we don’t want it to appear in the actual content /page

  1. Basic consists
    <1DOCTYPE html>,
, , , ,
1 Like