HTML Reading Assignment

  1. Hyper Text Mark Up Language
  2. It is a language that structure the page and its the content.
  3. To structure a page and its content that can interact with programming language (smart contract)
  4. Tags are elements the structure. It defines how we want to structure page and its content. It contains text, images, links, etc.
  5. Opening Tag &Closing tag
  6. Quality or characteristic of any tag ( attribute name, attribute value)
  7. The anatomy of an HTML document is comprised of several specific HTML tags.
  • HTML TAG <html> </html> . This states the document in an HTML document. This tag envelops all tags in the document. It is placed at the top and bottom of the document.
  • HEAD TAG <head> </head> . The head tag including information about the web page. This information is not seen by the user of the web page. Information here includes page title, SEO, CSS and other linkage.
  • BODY TAG <body> </body> . The body tag contains the content of the web page.
1 Like

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 to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

  1. What is HTML? Is not a programming language but a markup language.
  2. What is HTML used for? To structure your content, making it act the way you want
  3. Why are we learning HTML? To learn how to structure our content.
  4. What is an HTML tag? It states where an element begins or starts to take effect.
  5. What is the structure of an HTML tag? Element= opening tag+content+closing tag.
  6. What is an attribute? Attributes contain 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? element+ element+element+element+element+element+element
1 Like
  1. What is HTML?
    It is the code structuring the content of a web page. It is not a programming language by itself. It is a markup language, i.e. annotations, visual rendering, etc. It is a series of elements.

  2. What is HTML used for?
    To structure the content of a web page.

  3. Why are we learning HTML?
    Because it is the front end of web development and is necessary to allow a user to interact with the back end which is the smart contract.

  4. What is an HTML tag?
    It defines the content of an element.

  5. What is the structure of an HTML tag?
    “<” + its element name + its attributes + “>”

  6. What is an attribute?
    The attribute adds information about the element, for example image, link, font, etc.

  7. What is the anatomy of an HTML document?

<!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 is a markup language used to structure content - it is not a programming language.

  2. What is HTML used for? To structure content

  3. Why are we learning HTML? It is a foundational building block of creating content on the web

  4. What is an HTML tag? It provides the framework to capture the components of elements (html, body, head, metal) and designates where these elements begin and end.

  5. What is the structure of an HTML tag?
    Consists of an element. Within the element we have the opening tag (angle brackets) < > and closing tag </>, and the content squeezed between the opening and closing tags.

  6. What is an attribute? Attributes contain additional information pertaining to the content that we do not want to appear on the page. With the attribute, we can create an identifier to target the element with a specific style or other things.

  7. What is the anatomy of an HTML document?

— the doctype set of rules that the page references. - the root element which captures all the content of the entire page. - this is an element used to capture items that we do not want to show up, but may in fact impact page views (keywords, styles and references) <meta charset="utf-8”>- This element sets the character set your document should use to UTF-8, a set of characters used in the makeup of the content of the page for most languages <title> - the title of the page <body> the element which contains all the contents for the page.
1 Like
  1. What is HTML? - HTML is not a programming language; it is a markup language that defines the structure of your content. Earlier it was designed and use to perform error correction but now its main job is on semantics and make sure its functioning properly w.r.t browser events, structure a page of text and be assertive to web request/response properly.

  2. What is HTML used for? - HTML is used to structure a page of text by adding headings and paragraphs, emphasizing words, creating lists, and more.

  3. Why are we learning HTML? To properly design a responsive application which can communicate with Blockchain in the backend.

  4. What is an HTML tag? This element wraps all the content on the entire page and is sometimes known as the root element.

  5. What is the structure of an HTML tag? It represents the root (top-level element) of an HTML document. All other elements must be descendants of this element.
    For example:

... ...
  1. What is an attribute? Attributes contain extra information about the element that you don’t want to appear in the actual content. It allows you to give the element an identifier that can be used later to target the element with style information and other things.

  2. What is the anatomy of an HTML document? - The way to structure your code and it should be rendered properly. The text and the markup tags are ASCII characters. This text and tags are made up of eight-bit characters as defined in the standard ISO-8859-1 Latin character set. The HTML/XHTML standards support alternative character encodings, etc. and it should function properly using any text editor with proper HTML format.

1 Like
  1. HTML is ‘HyperText Markup Language’
  2. HTML is used to organize web-pages content
  3. We are learning HTML because we want to build web pages, web applications, dapps, web3, etc
  4. An HTML tag is an element or a building block of a web-page content ‘structure’ or looks
  5. An HTML tag is usually structured with a begin and end tag specific name, and may have attributes with or without attribute-values on the begin tag, and the tag encloses the ‘content-pulp’ itself.
  6. An attribute is additional information placeholder of a tag, it can be used to deeper specify a tags specific display behavior or hold invisible data for being used for other purposes like tooltiptext, scripting parameters or event handling.
  7. An HTML document is a text file (block of readable text), composed by a doctype preamble at top and a ‘html’ tag that contains inside two other pieces/tags, one ‘head’ tag and one ‘body’ tag where the document ‘juice’ will be layouted/drawn with the help of other html-tags and the ability of the browsing “drawing” program.
1 Like
  1. What is HTML? - HTML is a Web Markup Language

  2. What is HTML used for? – HTML is used for creating websites

  3. Why are we learning HTML? – We are learning HTML as it is one of the primary ways to write web pages

  4. What is an HTML tag? - A HTML tag is a set of characters making up a formatted command for a web page

  5. What is the structure of an HTML tag? - The structure of an HTML tag comprises of a pair to tags that include a “start tag” <> and a “end tag” </>. The text inside denotes what type of tag in the HTML structure it could be. Examples; <p> </p> denotes paragraphs, <img> </img> denotes an image. The full list can be found by a web search.

  6. What is an attribute? – An attribute is part of an HTML tag that one does not want to appear in content. The attribute gives the element an identifier that can be used with style information and other aspects of web programing and design.

  7. What is the anatomy of an HTML document? – The anatomy of an HTML document is comprised of several specific HTML tags.

  • HTML TAG <html> </html>. This states the document in an HTML document. This tag envelops all tags in the document. It is placed at the top and bottom of the document.
  • HEAD TAG <head> </head>. The head tag including information about the web page. This information is not seen by the user of the web page. Information here includes page title, SEO, CSS and other linkage.
  • BODY TAG <body> </body>. The body tag contains the content of the web page.
1 Like
  1. A markup language that defines the structure of your website.
  2. It is used to structure a web page and its content.
  3. To help understand front end en development in a smart contract.
  4. Tags define the content.
  5. The opening tag <p and closing tag /p>
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. < !DOCTYPE html> , < html>, < head>, < body>, < meta charset=“utf-8”>, < title>
1 Like
  1. 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 to make it appear a certain way, or act a certain way.

  2. HTML (Hyper **text **Markup **Language) is the code that is used to structure a web page and its content.

  3. HTML can be used as a foundation for blockchain development.

4.The tag defines a hyperlink, which is used to link from one page to another.

  1. HTML Tags

The most important characters in HTML are:

1 – angle brackets ( < > ), which enclose HTML codes, and

2 – the forward slash ( / ), which is used to “close” HTML expressions

HTML tags enclose the elements or sections of the web page they’re intended to affect. Tags are differentiated – and hidden – from the content of the web page by the presence of angle brackets, i.e., < >. If I wanted to bold the word HTML in code it would look like HTML , or HTML

  1. HTML attributes are a modifier of an HTML element type. An attribute either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them. In HTML syntax, an attribute is added to an HTML start tag.

  2. Head elements and body elements

1 Like

HTML is a structure of the content on the page. HTML is used to structure a web page. we are learning HTML so we can build our own websites to be pretty. An HTML tag is a series of elements used to make content do different things. The structure of an HTML tag, content… An attribute is extra information about the element you don’t want to show in the actual page.

The anatomy of an HTML document looks like-

TITLE OF THE PAGE A test image
1 Like

@begood , @WesBit , @bitbooz check this one too please!

Hello sir(s), good job with the answer.

I see you have a doubt with the last question, 7. What is the anatomy of an HTML document?

Check this post in order to have a better understanding of that last question.
HTML anatomy.

Carlos Z.

2 Likes

Hello sir, very decent answers :slight_smile:, but the example just show dots, if you have any doubt on it you can check this example: structure of an HTML tag

Also you can check this one for the HTML anatomy too.

Carlos Z.

1 Like

What is HTML used for?
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.

Why are we learning HTML?
The more you learn about HTML (Hypertext Markup Language), the easier it will be to learn other web languages. Even with the evolution of web languages, HTML is still a core component of website development and is used along with other scripting languages to create web pages.

What is an HTML tag?
The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

What is the structure of an HTML tag?
The 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.
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.

Note: how to search words within a webpage
1 – Press the Ctrl+F key combination. You’ll see a small search box pop up near the top of the screen. 2 – Type the word or phrase you wish to find in the search box. As you’re typing, the first occurrence of that word or phrase will automatically be highlighted on the screen.

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

What is the anatomy of an HTML document?
Anatomy of Any HTML Document. Every HTML document consists of two elements: Head elements – provides page title and general page formatting commands. Body elements – put the main HTML text in this part.

1 Like
  1. Hypertext markup language
  2. Coding websites
  3. Because javascript is a basic language that’s easy to learn and makes learning other languages easier
  4. HTML tags inform the computer that its reading HTML. It also allows you to format the site the way you want.
  5. Opening tag, content, closing tag
  6. The quality or characteristic of a tag
  7. Head element first then body element
1 Like
  1. HTML stands for Hyper Text Markup language, which is not a programming language but a markup(or structuring ) language.
  2. HTML is used to structure contents of a webpage.
  3. Learning HTML will help us in designing simple websites which will act as a front end for our smart contracts.
  4. The content , attributes, etc., in HTML pages are enclosed within tags. They together form Elements. Tags helps to identify where the elements start and where the elements ends.
  5. HTML tags start has an opening tag and closing tag. They are structured in the following way. for example:

  6. An attribute contains extra information about elements. Attribute helps assign a value to elements which can then later be used to to target the element.
  7. The anatomy of HTML document includes all the elements and other instructions to structure the page. Each individual instruction is useless without the entire HTML anatomy.
1 Like

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

2: 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 to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

3: With basic knowledge of HTML its easier to learn JavaScript.

4: An HTML tag consist of an opening and a closing tag. Example:

1: The opening tag: This consists of the name of the element, 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.

2: 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.

5:

What is the structure of an HTML tag?

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

7: This is the anatomy of an HTML document

My test page

My test image

1 Like

Thanks, simple way of explaining it.

1 Like
  1. What is HTML?

HTML is short form for Hypertext Markup Language; It’s a markup language that defines the structure of content on a web page

  1. What is HTML used for?

The HTML code is used to structure a web page and its content

  1. Why are we learning HTML?

To be able to create an avenue of communication and business via the internet

  1. What is an HTML tag?

HTML tag is used for creating HTML elements that faciltates displaying content in a web page

  1. What is the structure of an HTML tag?

The structure of an HTML tag involves encasing HTML element key words within opening and closing angle brackets

  1. What is an attribute?

An attribute contains extra information about a HTML element

  1. What is the anatomy of an HTML document?

Anatomy of an HTML document involves combining individual HTML elements to form an entire HTML document that results in a web page

1 Like

Hello Everyone, 5/4/2020

HTML Reading Assignment

  1. HTML is shorthand for Hypertext Markup Language. This is not a programming language but a markup language that defines the structure of your content.
  2. HTML is used for instructing a computer; " A Dumb Box" to do something that you want it to do.
  3. An HTML Tag is a bit of coding that instructs the computer to write a specific phrase in a specific place on your Web Page.
  4. We are learning HTML to get an understanding of How to Instruct “The Dumb Box” to do what we want it to do. This is very helpful when we are building things for the benefit of ourselves or others.
  5. The structure of an HTML tag is as follows.

This course is very interesting

6) An Attribute is a way to give extra information about an element to yourself or others; that does not show up on the computer screen when the project is launched. 7) This is a description of the individual elements that we have combined to form the entire HTML page. Thank You, Mark J.
1 Like