HTML Reading Assignment

Hey Carlos

thanks for this, I played around with this feature hahahah

thank you

1 Like
  • What is HTML?
    Its a markup language that defines the structure of your content.
  • What is HTML used for?
    It is the code that is used enclose and wrap parts of content to make it appear in a certain way
  • Why are we learning HTML?
    Because we need it to make a “front layer” for the blockchain
  • What is an HTML tag?
    It is what describes the element that encloses the content
  • What is the structure of an HTML tag?
    opening tag, content and closing tag
  • What is an attribute?
    it is something that contains extra information about the element but won’t appear in the content
  • What is the anatomy of an HTML document?
    doctype, html, head, meta charset, title and body
1 Like

Hey Carlos, doing great, hope the same.
You’re right, I could have been more clear. I have edited the answers (with the use of some HTML-tags). Hopefully it is more clear now.

2 Likes
  1. HTML stands for HyperText Markup Language. It is a « formatting » language used to provide structure to webpages displaying different sections within the content (for example, title, paragraphs, images
)

  2. HTML is used to provide structure to web content. It features a series of elements which are sections within the overall content. Elements are made of opening and ending annotations, and the actual content that is displayed. The opening and ending annotations are called opening and ending tags. They are there to give specific formatting to different sections.
    For example, the opening tag (less than sign < then p then more than symbol >) and closing tag (less than < then forward slash / then p then more than >) are put at the beginning and the end of a section within a content that is a paragraph:

Capture d’écran, le 2020-11-02 à 12.10.12

  1. HTML is the markup language standard upon which webpages are built.

  2. Tags are annotations used to wrap specific sections of content. There are 2 types of tags: opening tag and closing tag. Each tag holds a specific formatting capability.

Capture d’écran, le 2020-11-02 à 12.15.46

  1. The structure of HTML tag is as follows:

  1. Attributes are additional information about an element that is not displayed when launching a page

  2. Here a screenshot of HTML document anatomy:

2 Likes
  1. Hypertext Markup Language
    2.Tells how to display content
  2. To set a front end for future smart contract development.
  3. It creates an element.
  4. Beginning and end of how text will be displayed.
  5. Gives more information about elements. Always specified in the start tag
  6. Layout of the docement
1 Like
  1. What is HTML?
    A: Hypertext Markup Language
  2. What is HTML used for?
    A: it is used to structure wed page and its content
  3. Why are we learning HTML?
    A: To help us understand the basics to use smart contracts
  4. What is an HTML tag?
    A: where the element starts to take effect and ends
  5. What is the structure of an HTML tag?
    A: the opening and closing (< tag > and < /tag >)
  6. What is an attribute?
    A: extra information that you don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document?
    A: it contains: a doctype, html tag, heading(which includes meta tags), title(and link to css files), and body
1 Like
  1. HTML is the standard Mark up language.
  2. It is used to create and structure sections, paragraphs, headings, links for webpages
    and applications.
  3. HTML is the basic language used for web pages on the internet.
  4. The tag defines the start and finish of an element and element type.
  5. Content </tag name>
  6. It contains extra information about the element.
  7. < !DOCTYPE html> , < html>, < head>, < body>, < meta charset=“utf-8”>, < title>, and
    their corresponding closing tags.
1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? A code that is used to structure a web page and its content
  3. Why are we learning HTML? To learn the basics of web development
  4. What is an HTML tag? The elements used to enclose or wrap different parts of the content to make it appear or act a certain way.
  5. What is the structure of an HTML tag? The opening tag <?> states where the element begins. Consists of the name of the element wrapped in opening and closing angle brackets. the closing tag is the same as the opening tag except it includes a forward slash before the element name and states where the element ends.
  6. What is an attribute? Extra information about the element that you don’t want to appear in the actual content
  7. What is the anatomy of an HTML document?
    DOCTYPE html – required preamble

    html element – wraps all the content on the entire page
    head element – all the stuff you want to include on the html page that isn’t content you are showing to the page viewers
    meta charset – sets the character set UTF-8
    title element – sets the title of your page
    body element – contains all the content
1 Like

What is HTML?
Hypertext Markup Language, the skeleton of a website.

What is HTML used for?
To create the structure, the skeleton of the site. No cosmetics, no fluff, only the structure.

Why are we learning HTML?
For fun and profit :slight_smile:
Learning HTML helps our further progress if we plan to build anything internet 1.0, 2.0 or 3.0 related.
Every protocol/app needs some kind of web form, a front layer, where people can interact with it.

What is an HTML tag?
Tags are the building blocks of HTML.

What is the structure of an HTML tag?
opening tag:
closing tag:
and parameters, key=value pairs between the two.

What is an attribute?
Extra information about the element.

What is the anatomy of an HTML document?
The minimum:

< html >
< head > < /head >
< body >< /body >
< /html >

1 Like

Q1. What is HTML?
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.

Q2. What is HTML used for?
HTML is used for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

Q3. Why are we learning HTML?
HTML is used for creating websites for Decentralized apps (dApps) through which end users interact with blockchain smart contracts. Web3.js libraries are utilized in development and testing of smart contracts which requires interactions with the HTML elements in the web page through JavaScript.

Q4. What is an HTML tag?
HTML tag is used to define an HTML element.

Q5. What is the structure of an HTML tag?
An HTML element comprises of opening tag, closing tag, content (for e.g.text)

Q6. What is an attribute?
Attribute is extra information about the HTML element. Attribute is used to identify the HTML element and is not required to be displayed in HTML page.

Q7. What is the anatomy of an HTML document?

<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
    </body>
</html>
1 Like
  1. its a markup language that defines the structure of your content

  2. it is used to program website with fixed content

  3. it is the basics for web & blockchain development

  4. a TAG denotes the start and end of the section in HTML

  5. start < and > & end < /and>

  6. attribute are additional information not seen by the user BUT only the dev team can view it .

  7. Open HTLM tag - header -body - body element, close HTML tag

1 Like
  1. " HTML is not a programming language; it is a markup language that defines the structure of your content."

  2. HTML is used “to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.”

  3. In order to know how to “structure a web page and its content”

4./5. "< HTML > " the beginning and “</ HTML >” the ending with a “/”

6.

“Attributes contain extra information about the element that you don’t want to appear in the actual content.”

< html >
< head >
< /head >
< body >
< /body >
< /html >

1 Like

Answers:

  1. Hypertext Markup Language.
  2. Code used to structure a web page and its content.
  3. Its the language used to build web sites.
  4. Used to create an element, to the start of a paragraph or to end.
  5. The opening tag, the closing tag, the content and the element.
    a. Opening Tag - States where the element begins
    b. Closing Tag - states where the element ends
    c. Content - is the actual text or content
    d. Element is the opening tag, the closing tag and the content together that comprises the
    element.
    6.The content extra information about the element that you don’t want to appear in the actual visible content.
    <!doctype HTML> - needed to make sure your document behaves correctly.
1 Like
  1. HTML is a markup language that defines the structure of the page content.

  2. HTML is used to structure a web page and its content.

  3. We are learning HTML because it is important to be familiar with it when applying JavaScript code.

  4. An HTML tag indicates the start and the end of an element.

  5. A HTML tag starts with the opening tag which says where the element starts. The closing tag indicates where the tag ends. between the two tags is the content of that element.

  6. An attribute contains extra information about the element that you don’t want to include in the content.

  7. The HTML tags wrap around the whole document. The head tags wrap around the information of the page that won’t be outright visible to the user, such as the title tags, which displays its content on the browser tab. The body element contains everything that is seen on the page.

1 Like
  1. What is HTML?

-HTML is not a programming language. It is a markup language. To be exact it is Hypertext Markup Language (HTML)

  1. What is HTML used for?

-HTML is used to define the structure of your code. It determines how your code will appear.

  1. Why are we learning HTML?

-When creating a website HTML will determine how the website looks and feel.

  1. What is an HTML tag?

-Tags are used to wrap the content so that HTML can affect the content. Example

My cat is very grumpy

  1. What is the structure of an HTML tag?

-The structure of HTML is called an element. The element consist of an opening tag (element name) wrapped in opening and closing brackets. Then comes the content and finally the closing tag which includes the element name, opening and closing brackets and a forward slash. The forward slash indicates the end of the element.

  1. What is an attribute?

Attributes are extra information about the element, located within the element tags. You do not want the attribute information to appear in the actual content. An attribute should always have a space between it and the element name, the attribute name followed by an equal sign, and the attribute value wrapped by opening and closing quotation marks. Example: <p class=”editor-note” >My cat is very grumpy

  1. What is the anatomy of an HTML document?

It is the designated structural pattern a document must follow to be considered good HTML. It contains the following elements

1 Like

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


function formatText(){

let words = “I’m a preformatted Text box, Please use me wisely!”

}

prefromatted_text-animated

Carlos Z.

  1. HTML, Hypertext markup language, is the code that is used to structure a web page and its content. HTML is not a programming language; it is a markup language that defines the structure of your content. HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content

  2. We use HTML to build web pages

    1. HTML is the foundation for web development and blockchain development
  3. A tag is a syntax’s coda that we use to be able to display something on the computer. There is a proper tag for display an image, a text, a title


The opening tag <
>
There is the content that could vary from the text if we are using a text tag or the computer’s path for displaying an image
The tag ends with the “closing tag”: </
>

  1. Attributes contain extra information about the element that you don’t want to appear in the actual content.

  2. I am replacing “>” with “<” to be able to display syntax without actually display some code
    "<!DOCTYPE html<
    <html<
    <head<
    

    <title<My test page</title<
    </head<
    <body<
    <
<
    </body<
    </html<

1 Like
  • What is HTML? HTML stands for HyperText Markup Language. It is a markup language that defines the structure of your content.
  • What is HTML used for? It is used to define the structure of the content. It is the skeleton of the page.
  • Why are we learning HTML? It is important to understand how webpages are created, and HTML is a big part of that.
  • What is an HTML tag? A tag is used to create an element. Tags have angle brackets <> and </>. There must be an opening and closing tag. There are a few exceptions to that rule.
  • What is the structure of an HTML tag? Tags use angle brackets <> and </>
  • What is an attribute? Attributes contain info you don’t want to appear in the actual content. Example: <p class="master">I love this course! </p>
  • What is the anatomy of an HTML document? The anatomy of an HTML document contains these elements:
    <!DOCTYPE html> required preamble
    <html></html> wraps around all the content on the page
    <head></head> acts as a container for all the stuff you want to include, but not show, to visitors
    <title></title> sets page title
    <body></body> contains all content you want to show to visitors
1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    To show any form information on a website, be it text or images.

  3. Why are we learning HTML?
    Because it is basically the first building blocks of a website.

  4. What is an HTML tag?
    It is used to format a text. It makes the browser know how you want to display the content.

  5. What is the structure of an HTML tag?
    It starts with an opening tag <
> and ends with a closing tag </
>

  6. What is an attribute?
    An attribute provides additional information about the element that you don’t want to appear in the actual content.

  7. What is the anatomy of an HTML document?
    <!DOCTYPE html> required preamble
    <html></html> wraps around all the content on the page
    <head></head> acts as a container for all the stuff you want to include, but not show, to visitors
    <title></title> sets page title
    <body></body> contains all content you want to show to visitors

1 Like
  • What is HTML?
    Hypertext Markup Language

  • What is HTML used for?
    For holding all the elements of a webpage together and formatting them

  • Why are we learning HTML?
    Because it is the foundational language websites

  • What is an HTML tag?
    It is the prefix and suffix which wraps around an element to direct how it should be expressed on the webpage

  • What is the structure of an HTML tag?
    i come to you like an atomic clock each and every day

  • What is an attribute?
    an identifier which is attributed to an element so it can be used to select it individually or as part of a group with the same attribute for a purpose.

  • What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>The anatomy of a HTML document</title>
  </head>
  <body>
  </body>
</html>
1 Like