HTML Reading Assignment

Hello sir, i suppose you misspell that, maybe you just want to correct it to <!DOCTYPE>.

Also here you can have an example to understand better the HTML tag: HTML Tag Example.

If you have any doubt, please let us know so we can help you! :slight_smile:

Carlos Z.

4. What is an HTML tag?

Hello sir, the HTML tag can be define has the command or state you want to give to the content of the element.

6. What is an attribute?

Attributes, can be used to provide extra information of the element and later used to apply custom rules for the element.

Hope this gives you a clear view of the subject, keep learning!
If you have any doubt, please let us know so we can help you! :slight_smile:

Carlos Z.

1 Like
  1. HTML (Hypertext Markup Language) is the code that allows you to structure a web page and its content.

  2. HTML is used to create web pages and structure its content.

  3. We are learning HTML so that we can build the front end side of things.

  4. An HTML tag is a piece of code that tells the browser this website is built on HTML. It also defines how the content of an element is going to be portrayed. Example: paragraph, italics, etc.

  5. The structure of an HTML tag is “content”. The tag can also contain things like an attribute.

  6. An attribute is extra information in a tag that you do not want to appear in the actual content of the element.

  7. The anatomy of an HTML document is everyone that makes up the page. From the beginning and to the bottom of the page.

1 Like

What is HTML?
-HTML is an XML-based markup language developed to describe hypertext websites.
What is HTML used for?
-HTML is used to structure a webpage and its contents.
Why are we learning HTML?
-In order to create frontend for blockchain applications.
What is an HTML tag?
-An HTML tag is used to define content on the website.
What is the structure of an HTML tag?
-A sequence of letters (>=1) within tags (< and >), including the symbol / when it’s a closing tag. In between an opening and a closing tag is usually the content.
What is an attribute?
-An attribute contains extra information about an element that you don’t want to appear as content.
What is the anatomy of an HTML document?
-< !DOCTYPE html>
< html>
< head>
< meta charset=“UTF-8”>
< title>Test Page < /title>
< /head>
< body>
< p> Stuff < /p>
< /body>

1 Like

7. What is the anatomy of an HTML document?

Indeed sir, you can check this example i post days ago so you have a better understanding on the HTML anatomy: HTML Anatomy example.

Hope this gives you a clear view of the subject, keep learning!
If you have any doubt, please let us know so we can help you! :slight_smile:

Carlos Z.

Hello.
Sorry, I forgot to answer that question. An html tag is part of an html element; there are opening tags and closing tags (some tags, like ‘img’ don’t have closing tags). Tags wrap content like text in a way that instructs browsers on what to do with the content. Tags mark the text up, hence markup.

1 Like
  1. What is HTML?
  • HTML or Hyper Ledger Markup Language is the standard language used on a web page to input and display text/pictures and most other basic information.
  1. What is HTML used for?
  • As above HTML is the language code used for building and populating a website or web page with information by way of Text / Video / Pictures etc
  1. Why are we learning HTML?
  • As its not only the foundation of building and using basic code but a great place to start in order to comprehend how the language can be deployed in a real world use case. Any business needs a Front End web page in order to “show their wares” to potential clients or customers
  1. What is an HTML tag?
  • An opening or closing HTML tag is what we wrap the element in

  1. What is the structure of an HTML tag?
  • Thew four main parts of a HTML tag are 1.Opening tag 2. Content Tag 3. Closing tag 4. Element
    (eg

    My cat is very grumpy

    )
  1. What is an attribute?
  • Attributes contain extra information about the element that you don’t want to appear in the actual content by using
  • A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
  • The attribute name followed by an equal sign.
  • The attribute value wrapped by opening and closing quotation marks.
  1. What is the anatomy of an HTML document?
  • < !DOCTYPE = A set of Rules
    html>,= The main tags that wrap the entire page
    < head> acts as a container for all the stuff you want to include on the HTML page that isn’t the content you are showing to your page’s viewers.
    < body>,= contains all the content that you want to show to web users when they visit your page,
    < meta charset=“utf-8”>,= sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages.
    < title> = sets the title of your page
1 Like

Haha I did mistype, fixed it.

1 Like

I typed a full example using tags and everything, for some reason the site only shows … …
The question is fully understood and I also wrote it down physically in my notebook, but thanks for the concern. Actually wrote my first lines of code yesterday :slightly_smiling_face:

1 Like
  1. HTML is a markup language.

  2. Used to define the structure of content.

  3. So we have a basic understanding of how to make a web-page.

  4. Shows where an element begins and ends.

  5. The name of the element wrapped in opening and closing angle brackets

  6. Is extra information about the element that you don’t want to appear in the content.

  7. Combination of elements

1 Like
  1. HTML is a language used to define the structure of your content.
  2. It is used to manipulate how your content is displayed on your website
  3. To understand the language needed to create a website
  4. Tags make a word or image hyperlink to somewhere else, or can be used to italicize words, make font bigger or smaller, ETC.
  5. Opening tag, content, closing tag
  6. Attributes contains extra information about the element
  7. The combined elements of an HTML Page
1 Like

Remember you can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.

I am a happy Preformatted Text box, please use me wisely!

Carlos Z.

1 Like

7. What is the anatomy of an HTML document?

Indeed sir(s), you can check this example i post days ago so you have a better understanding on the HTML anatomy: HTML Anatomy example.

Hope this gives you a clear view of the subject, keep learning! :slight_smile:

Carlos Z.

  1. HTML stands for Hypertext Markup Language.
  2. HTML is used to define the structure of web content.
  3. We are learning HTML as a foundation for future knowledge.
  4. A tag is an element that makes the browser recognise what type of content it has to show and in what way.
  5. An HTML tag has an opening tag wrapped in opening and closing angle brackets, followed by the content of the element and a closing tag which is the same as the opening one except that it includes 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 (i.e. The “class” attribute allows you to give the element an identifier that can be used later to target the element with style information and other things).
    7.Anatomy represents how individual elements are combined to form an entire HTML page.
1 Like
  1. Contrary what it taught not a programming language, but a markup language that helps to structure the content.

  2. HTML is used to structure the content.

  3. Because with HTML we are able to create a website, something basic and useful and what every software developer should know. Later we will learn how to develop web based blockchain application.

  4. A HTML tag is an element which wrapped the content on a website.<7p>

  5. opening tag and closing tag

  6. An attribute is an an extra information concern the element which should not appear in the content.

  7. How the elements are structured on a HTML written website.

1 Like
  1. HyperTextMarkupLanguage
  2. Creating content for display in the form of a webpage.
  3. As an introduction to coding, programming and for later use in terms of application as it applies to BlockChain, DeFi, etc. and creating content for technologies, services, platforms etc.
  4. Character sets used to control the appearance of content.
  5. Opening Tag, Closing Tag. ex.

  6. Extra information about an element that will not appear in the display of the content.
  7. doctype, html element, head, title, body
1 Like

I actually typed out the same thing but for some reason it looks like it didn’t show up on my post. Thanks for the info anyway.

1 Like
  1. What is HTML? HTML is a mark up language that is used to define the structure of a content.

  2. What is HTML used for? Mostly to create simple website pages with text and images.

  3. Why are we learning HTML? To have a better understanding of the basics of programming a website page.

  4. What is an HTML tag? A tag is <> It is used to wrap the element.

  5. What is the structure of an HTML tag? <“ellement name”> content </"ellement name>

  6. What is an attribute? An attribute contains additional information about the element that is not shown in the actual content.

  7. What is the anatomy of an HTML document? Head and body are the main components and then adding various elements in between.

1 Like
  1. What is HTML?
    HTML is also known as Hypertext Markup Language, but it isn’t a programming language.

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

  3. Why are we learning HTML?
    To have a cleaner user interface for our dApps, without directly interacting with our smart contracts.

  4. What is an HTML tag?
    It is used to donate the beginning and end of a section in HTML. For example: paragraph, heading and etc…

  5. What is the structure of an HTML tag?
    Content</close tag>

  6. What is an attribute?
    Attributes are additional information about the element, which you don’t want it to appear in the content.

  7. What is the anatomy of an HTML document?

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

7. What is the anatomy of an HTML document?

Hello sir, did you forgot to type the last question?

If you have any doubt, please let us know so we can help you! :slight_smile:

Carlos Z.