HTML Reading Assignment

  1. HTML also known as HyperText Markup Language is the most basic building block of the Web. It defines the meaning and structure of web content.

  2. HTML is used to create electronic documents (called pages) that are displayed on the World Wide Web. HTML code ensures the proper formatting of text and images for your Internet browser. Without HTML, a browser would not know how to display text as elements or load images or other elements.

  3. We learn HTML in other to create electronic documents, images for the World Wide Web.

  4. An HTML tag is a piece of mark-up language used to indicate the beginning and end of an HTML element in an HTML document . As part of an HTML element, HTML tags help web browsers convert HTML documents into web pages.

  5. An HTML tag consists of a left angle bracket (<), a tag name (such as ā€œh1ā€) and a right angle bracket (>) . Tags are usually paired so that you have a tag at the beginning and the end of a section of the document (

    and

    for example.)

  6. HTML attributes are special words used inside the opening tag to control the element’s behaviour. An attribute either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them.

  7. An HTML 4 document is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body , which contains the document’s actual content.

1 Like
  1. Instead of a programming language, HTML is a markup language that defines the structure of the content of a webpage.

  2. It structures a web page and its content.

  3. It will structure the frontend of our dApp.

  4. They apply an element to content.

  5. tags begin with <> and end with </>

  6. it adds info to an element that cannot be seen on the web page but only in the code.

  7. Doctype tag, html tag, head tag, meta tag, title tag, body tag

1 Like

opening and closing tags that specfic certain things. generic template used is a !doctype tag followed by encapsulating html tage that holds different elements and attributes, like the header which holds attributes, and body which is the content to be shown on the page.

  1. What is HTML?

HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

  1. What is HTML used for?

content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables

  1. Why are we learning HTML?

To structure our web content

  1. What is an HTML tag?

They surround elements, which tell the content what to do / make it appear a certain way.

  1. What is the structure of an HTML tag?

Opening and closing tag that surround content
(Altogether = element)

  1. What is an attribute?

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

For example, The class attribute allows you to give the element a non-unique identifier that can be used to target it (and any other elements with the same class value) with style information and other things.

  1. What is the anatomy of an HTML document?
  • <!DOCTYPE html> — doctype. It is a required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However these days, they don’t do much and are basically just needed to make sure your document behaves correctly. That’s all you need to know for now.
  • <html></html> — the <html> element. This element wraps all the content on the entire page and is sometimes known as the root element.
  • <head></head> — the <head> element. This element 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. This includes things like keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.
  • <meta charset="utf-8"> — This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages. Essentially, it can now handle any textual content you might put on it. There is no reason not to set this and it can help avoid some problems later on.
  • <title></title> — the <title> element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.
  • <body></body> — the <body> element. This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks, or whatever else.
1 Like
  1. What is HTML?
  • hyper text markup language - coding for web pages
  1. What is HTML used for?

  2. Why are we learning HTML?f

  • as a base to build upon for other coding
  1. What is an HTML tag?
  • defines attributes of the text/pic/wetc
  1. What is the structure of an HTML tag?
  • <…> text </…>
  1. What is an attribute?
  • good ??
  1. What is the anatomy of an HTML document?
  • <whatever

  1. HTML hyper text mark-up language is the protocall that all web pages use to format information from the web.
    We are learning about html? It shows us how webpages are structured and allows us to build a front end of the dex we are building.
    What is a HTML tag? A tag is used for creating an element which is used to wrap content on the page such as a link or an image or text.
    The structure of a HTML tag is title, head and body
    What is an attribute? attributes allow modification of html elements
    What is the anatomy of a HTML document? All the individual elements that allow for a html document to work as a webpage.
1 Like

1.) HTML (Hypertext Markup Language) is a technological language that defines the structure of one’s content.
2.) HTML is used to enclose or wrap different parts of content and make that content appear/act a specific way.
3.) We are learning HTML so our brains know what the language of tags means inside an element of code. This makes things easier when one knows the foundation and universal coding language moving forward. When one sees a specific tag, the brain automatically knows what the one word wrapped in the tag is standing for (i.e.

stands for paragraph).
4.) An HTML tag states where an element begins to take effect (< > opening tag) and where an element ends (< / > closing tag).
5.) The structure of an HTML tag consists of an opening tag wrapped in opening and closing brackets ( < >) and the element name in between; furthermore, an HTML tag also has a closing tag that is the same as the opening tag, except it has a forward slash before the element name (< / >).
6.) An attribute refers to extra information about the element that you don’t want to appear in the content. Attributes should always have a space between it and the element name, its name followed by an equal sign, and its value wrapped by opening and closing quotation marks.
7.) The anatomy of an HTML document has all of the following: (doctype), < /html> (the HTML element), (the head element), (character set of your document, including most characters from the majority of different languages), < /title> (the title element), and < /body> (body element).

1 Like
1. HTML is Hypertext Markup Language, it is the code that makes a web browser display a web page in a certain way. 
2. HTML is used to create a website that is aesthetically pleasing and well-laid out. 
3.  We are learning HTML because we will have to build similar pages. 
4.  An HTML tag is something that affects the way something is displayed in a web page. 
5.  Opening tag in angle brackets, and a closing tag with a forward slash after the angle bracket and before the tag name. 
6.  An attribute specifies something about the content inside a tag, and information you don't want to appear in the content. 
7.  An HTML document starts with a <head> which defines much about the html document.  It defines styles, and other things you don't want to show up in the body.  Then you have the body of the document, it is everything you want displayed in the web page.  Then, you have all of the closing tags.

1 Like
  1. HTML is a markup language.

  2. HTML is used to structure the content of a webpage.

  3. We are learning HTML because webpage content and the structure of the content is important for building organized and accessible applications.

  4. A tag wraps the name of an element, and defines where the content starts and stops.

  5. Opening Element Closing

  6. An attribute stores extra information about an element that you don’t want in the content.

  7. An HTML document contains the doctype, root html element, head element, character set, title and body.

1 Like
      1. Hyper Text Markup Language.
    • 2.Use to structure web page and its content.
      1. because it is foundation of web devlopment and blockchain devlopment.
      1. Tag is used to creating an element.
      1. <p></p>
      1. attribute contain extra information about the element thay we don’t want to appear in our actual content.
  1. What is HTML: HTML is a markup language that defines the structure of web-based content. There are a series of commands one can use to structure content in headings, paragraphs, images, document properties and the like. Some content is visible on the web page to users and some content is not and is often used for setting document attributes and search engine parameters. One can also create notes in the code for outlining one’s thought process when creating a document / page.
  2. What is HTML used for: HTML is used for the creation of web-based content that users can search on the internet, view and / or interact with.
  3. Why are we learning HTML: Blockchain technology is an internet-based technology and to be able to create useful web applications that satisfy use cases, one has to be able to create the content online to make it assessable.
  4. What is an HTML tag: Tags normally comes in pairs and consist of an opening and a closing that helps the developer to structure the contents of an HTML document in a user-friendly way for users to navigate and use the web interface the programmer created.
  5. What is the structure of an HTML tag: Tags come in pairs to open and close the content between tags.
  6. What is an attribute: An attribute contains additional information about the element that would not be shown on the web page. It normally consists of an attribute name and attribute value.
  7. What is the anatomy of an HTML document: ```
- This identifies the doccument type as an HTML file - This opens the contents of the HTML file - This is metadata that would not show on the web page - This is the character set that would be used in this case utf-8 My test page - this would be the contents that will be displayed on the web tab - This closes the metadata that will not be visible - this opens the body contents My test image - this is to insert the Firefox image and it has an alt= argument should the browser not be able to load the image then the text would be displayed in this area. - this closes the body contents - This closes the contents of the HTML File ```
1 Like
  • What is HTML?
    HTML stands for hypertext markup language. It’s the code used to structure a webpage. As well as it’s content, such as titles, frames, fonts, colors…
  • What is HTML used for?
    It’s used to build and structure a web page
  • Why are we learning HTML?
    It’s important to understand html as we will need to be familiar with the structure and language to insert smart contracts in a web page
  • What is an HTML tag?
    A tag is a message/sign serving to open and close an element. It is wrapped in angle brackets
  • What is the structure of an HTML tag?
    The structure of a tag: opening tag to define the function of the content, closing tabs. It can also contain attributes which will always have a space between the attribute and the element and/or other attributes.
  • What is an attribute?
    An attribute is a part of the element which will not appear in the text but will define and give more informations to the elements, it can be to classify , add a background, background image, align vertically titles or subtitles
  • What is the anatomy of an HTML document?
    The anatomy of a web page starts with the preamble: the type of language used:
and the web page will end with < \html> These 2 messages will wrap our page. The element contains everything that we don’t want to appear in our content, such as keywords, css styles, font….the end of the head will close with the message <\head> to close and wrap this ā€œorganeā€ of our webpage anatomy UTF8 includes the majority of written languages…let’s keep it as easier as possible for ourself…by keeping utf8. element: sets the title that will appear in our browser tab. It’s wrapped and end by < \ title> < body> will contain all that we want to appear and be visible by our website/webpage visitors, such as text, images, videos, audio….. [/quote]
1 Like

1/ Hypertext markup language
2/ html is used to structure a web page and its content
3/ To create content on the web
4/ html tag consists of an opening and ending tag that states where the element begins and ends.
5/ Opening tag, closing tag, content, element.
6/ an attribute contains extra information you dont want to make appear on the website
7/ the doctype element ; the html element ; the head element ; the element ; the title element ; the body element

1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language.

  1. What is HTML used for?

HTML is used in the process of coding information and structure for a webpage.

  1. Why are we learning HTML?

HTML is the most basic of the coding languages and is also the most common in terms of what it is used for and how we are able to get our heads around how code actually works.

  1. What is an HTML tag?

A HTML tag is something that signifies a change in the element. That may be to either to make a sentence italic, to make something into a paragraph, to make the font bigger or smaller, to indent a photo or to add a hyperlink to a specific line. All these are signified by the closing tag with the same function inside.

  1. What is the structure of an HTML tag?

The structure of a HTML tag is as such:

My cat is very grumpy

The content is wrapper around the tag which signifies and executes the commands within. In this case the

would ensure that the content is left in a paragraph and the

is the closing tag.

  1. What is an attribute?

An attribute is the information within a tag that leads to the changing of the content.

  1. What is the anatomy of an HTML document?

The anatomy of a HTML document is

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content.
  2. What is HTML used for?
    s the code that is used to structure a web page and its content
  3. Why are we learning HTML?
    so we can build web sites, dapp and other programs
  4. What is an HTML tag?
    tag is the container for all other HTML elements (except for the <!DOCTYPE> tag).
  5. What is the structure of an HTML tag?
  6. he opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets . This states where the element begins or starts to take effect — in this case where the paragraph begins.
  7. The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends — in this case where the paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
  8. The content: This is the content of the element, which in this case, is just text.
  9. The element: The opening tag, the closing tag, and the content together comprise the element.
  10. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content.
  11. What is the anatomy of an HTML document?
  • <!DOCTYPE html> — doctype. It is a required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However these days, they don’t do much and are basically just needed to make sure your document behaves correctly. That’s all you need to know for now.
  • <html></html> — the <html> element. This element wraps all the content on the entire page and is sometimes known as the root element.
  • <head></head> — the <head> element. This element 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. This includes things like keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.
  • <meta charset="utf-8"> — This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages. Essentially, it can now handle any textual content you might put on it. There is no reason not to set this and it can help avoid some problems later on.
  • <title></title> — the <title> element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.
  • <body></body> — the <body> element. This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks, or whatever else.
1 Like
  1. What is HTML?
    A. Hyper Text Markup Language
  2. What is HTML used for?
    B. Used for creating and editing a webpage.
  3. Why are we learning HTML?
    C. Because I want to be able to create web pages and understand a couple basic programming languages
  4. What is an HTML tag?
    D. Names the element for proper display
  5. What is the structure of an HTML tag?
    E. Opening tag, Content, Closing tag
  6. What is an attribute?
    F. Attributes are extra information about the element to tag it with a non-unique identifier so you can give that attribute certain characteristics
  7. What is the anatomy of an HTML document?
    G. !DOCTYPE, html, head, meta charset=ā€œutf-8ā€, title, body
1 Like
  1. HTML stands for Hyper Text Markup Language.

  2. HTML is the code used to structure a webpage consisting of a series of elements used to wrap different sections of content making your page visually appear in a very specific/desired way.

  3. To understand how to make user-friendly, visually appealing web browser content.

  4. Tags mark the opening and closing of each element.

  5. The structure of a tag is as follows, ā€œ

    ā€:
    • opening tag: name of the element wrapped in closing angle brackets
    • closing tag: same as opening, adding forward slash before name
  6. Attributes appear inside tags, separated from the name by a space. they contain extra info about the element not intended to be seen.

  7. The anatomy of an HTML doc is as follows:

    • - the doctype
    • - wraps all of the page content
    • - important content unintended to be seen
    • - the character set
    • - the title of the page
    • - all the content of the page: text, image, audio, video, games, etc.

[I notice that in answers #5 and #7, though I typed examples the appropriate tags, they, for whatever reason don’t appear to be visible.]

1 Like
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? it is the protocol that all web pages use to display information to your computer screen from the internet
  3. Why are we learning HTML? we are learning HTML because it will help us build websites.
    And the websites can and will communicate with smart contracts on a blockchain.
  4. What is an HTML tag? used to create an element. It consists of the element name in
    brackets.
  5. What is the structure of an HTML tag? Opening Tag, Content, Attributes, Closing Tag
  6. What is an attribute? containt 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? Structure of the code

What is HTML?

It is Hypertext Markup Language, and it is a way of arranging web page content, and making the structure of a web page.

What is HTML used for?

HTML is programming language which is used to control how content is arranged and shown on a web page.

Why are we learning HTML?

If we make websites, it is good if we can control the arrangement and appearance of text and images, and control the general appearance and structure of our pages. HTML helps with this. We can control the front end of websites, which the public uses, and provide good user experience.

What is an HTML tag?

And HTML tag is a programming instruction which controls the appearance, position or action of the connected word, image, etc. Tags are used in pairs, with an opening and closing tag before and after a particular piece of website content.

What is the structure of an HTML tag?

An opening tag consists of 2 angle brackets which enclose the tag or element name. The tag or element name determines the function of the tag. For example ā€œpā€ is the name of a paragraph element, and is used for normal content text in the body of the website page. A closing tag is the same, except that there is a slash after the first angle bracket, and before the element name.

What is an attribute?

An attribute is an addition feature that can be added to an element tag, for example lang for language.

What is the anatomy of an HTML document?

An HTML document has various opening and connected closing tags, enclosing content, which form a series of HTML elements, and which form a website page.

Typical sections of an HTML document include !DOCTYPE html, followed by html, head (with metadata), title (which shows the text that appears in a browser tab), body, which is the main part of the text, and which can can a title or heading (with h1, etc). These elements are formed with pairs of tabs enclosing content, each tab consisting of a pair of angle brackets around the element / tab name. The opening tabs can include attributes, which are written within the angle brackets, and after the element name plus a space. An attribute is followed by ="", with the value of the attribute written between the quotation marks.

1 Like
  1. What is HTML?
    It is a markup language that defines the structure of your content

  2. What is HTML used for?
    to display information of a web page in a certain way

  3. Why are we learning HTML?
    To be able to create and add information on the internet

  4. What is an HTML tag?
    It lets the browser know that it is an HTML doc

  5. What is the structure of an HTML tag?
    Opening : <> and Closing : </>

  6. What is an attribute?
    Adds extra information about an element

  7. What is the anatomy of an HTML document?

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