HTML Reading Assignment

What is HTML? Hypertext Markup Language

What is HTML used for? Its used for front end development for things such as websites. It is formatting the structure of the content rendered on a web page.

Why are we learning HTML? Its the first step to understanding the relationship between the coding and the actual front end results of what is displayed. We need it to be able to program smart contracts

What is an HTML tag? It is how to make a command in the programming. For example, opening a paragraph

Text

(actually made a paragraph thereā€¦whoops)

What is the structure of an HTML tag? The opening, content, and closing. All together they make up the element.

What is an attribute? Attributes contain extra information you donā€™t want to appear in the actual content. It allows there to be an identifier that can later be used to target with style information and other things.
What is the anatomy of an HTML document? It always starts with and it has a which is like the title and the where that is the main content.

2 Likes
What is HTML? its Hypertext Markup Languange, 
What is HTML used for? witch is used to create the visual of the website but its static, its the structure of the site.
Why are we learning HTML? to learn how to create a front-end to our future projects
What is an HTML tag? itĀ“s something that wraps content and give it some properties like <p> This is a paragraph </p> 
What is the structure of an HTML tag? tag + content and most of the times closing tag
What is an attribute? is somethign that you give to a tag ex: <p class="thisIsAClass">
What is the anatomy of an HTML document?    1) doctype - that is a set of rules that no one cares but we have to use it.
					2) html - the main tag that wraps the entire page.
					3) head - its where we put all the info that its not displayed (expect the title)
					4) title - simply the title of our website.
					5) meta - where we select the type of character we are going to use on our website (usually UTF-8)
					6)body - where we put all the content that we are going to display.
1 Like
  1. HTML stands for HyperText Markup Language

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

  3. When we will create a Dapp, we will need to create a user interface in order to interact with the blockchain, and the most user-friendly way to do it is to create a simple website.

  4. HTML tags are delimiting and defining a content in order to show a browser how to format and display it.

  5. A HTML tag is composed of two parts: an opening tag (written < tag>) and a closing tag (written < /tag>) and they are enclosing the content.

  6. An attribute can be added to the opening tag and it contain additional information about the element.

  7. The anatomy of an HTML document is as follow:

  • < !DOCTYPE html>
  • < html>
  • < head>
  • < meta charset="ā€¦">
  • < title>
  • < body>
3 Likes

1.HTML or Hypertext Markup Language is sort of a tool in form of a code that allows you to design your web page in a way that you can customize its components, accommodate content as you wish.
2. HTML is used for structuring the body of what you want to present, enclosing a series elements on the web page in a way that you can select how the parts of the content may show up or interact on the screen.
3. Because we want to build a dApp with a user-friendly UI that means having an order on our web page, making it readable, easy navigational as well as sexy.
4. HTML tag is a both-sided wrapper concluded in pointy brackets (the closing tag has forward slash ā€“ ā€œ/ā€ before the element name) for a line (just text) or image hyperlink (another type of element content) that we want to modify in any possible way to make it bold, italic or shift somewhere in space. Normally they are hidden when you call the page.
5. An HTML tag consists, first off, of opening tag that has three parts: ā€˜<ā€™, ā€˜element nameā€™ (could be a single letter) and ā€˜>ā€™, secondly of a closing tag similar to opening one but with a forward slash / in front of the element name. Then there is a content between of them, a simple text or a img hyperlink for example.
6. Hidden identifiers for targeting elements with style info and etc.
7. HTML doc anatomy comprises different individual html elements, such as the doctype - , root element - >, a container - , content tags - , character setter - and page title - .

1 Like
  1. Hyper text Markup Language
  2. HTML is used to structure the look and feel of a website
  3. Learning HTML to assist in building front ends for our DAPPS
  4. HTML tags are used to apply an element to content.
  5. HTML tags begin with <> and close with a forward slash to indicate tag is closed </>
  6. An attribute is used to assign extra values to a tag that will not show up as content on the page.
  7. The standard structure of elements that create the anatomy of an HTML document:
1 Like
  1. Hypertext Markup Language is a code used to format text, pictures and video content into the webpage.
  2. HTML is used to build webpages.
  3. To learn the foundation for web and blockchain development.
  4. Tags are used to define the content within the elements that you create.
  5. An opening tag, the information you want to display on the webpage, attributes, if any, and a closing tag.
  6. Attributes are added notes to elements only intended for the developers to see.
  7. Doctype, html (root) element, head element, title and body element. More simply, individual elements combined to form an entire HTML web page.
1 Like
What is HTML? Markup language
What is HTML used for? HTML is used the define the structure of your content
Why are we learning HTML? We are learning HTML to brag about our new knowledge ( and be able to interact with our dapp on the blockchain)
What is an HTML tag? An HTML tag defines what the content will be. i.e. Paragraph
What is the structure of an HTML tag? The structure of an HTML tag is where it will begin and end
What is an attribute? An attribute contains data which you do not want to show up in the content, it can later be used as an identifier to modify the content. 
What is the anatomy of an HTML document? The anatomy of HTML consists of individual elements that will make up the HTML webpage
2 Likes
  1. HTML is a mark-up language that defines the layout of a webpage. It is used to structure content and modify text and images.

  2. We are learning Hyper-Text Mark-up Language because it is a common language of webpages. Webpages will be where users go to interact with our DAPPS.

  3. Tags are what precede and come after content. They define the structure and characteristics of it. They along with the content come together to form the element.

  4. Opening tags are enclosed between ā€œ< >ā€ while closing tags go between ā€œ</ >ā€.

  5. An attribute is a way to add extra info to the element that is not displayed. It is made up of: attribute name and attribute value.

  6. An HTML document is comprised of a root element with some nesting. The first inner element is the head and it describes the webpage. After this comes the body which contains the main content.

1 Like

First of all English is not my best/first language so sorry if its all messy and stuffā€¦ Also, Iā€™m terrible at describing things (which really harms me at times so yeahā€¦)
Soā€¦

  1. HTML is an acronym which translates to ā€œHypertext Markup Languageā€.

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

  3. When programming in the Ethereumā€™s language, what we do is to program the main heart, the main core of the program.
    What we need is a way to reach the user, so he would be able to use our program. Or, in other words, we actually using HTML as a simple GUI (Graphic User Interface). (Maybe we can say only UI because HTML is so basicā€¦ but GUI will workā€¦ I guess)

  4. A tag is a sign that specifies the meaning of the content that we are about to write. Kind of defining the kind of the object that we are makingā€¦

  5. The structure of an HTML tag is the following:
    <p>blahblahbalh</p>
    We start with an opening tag <p>,
    then we follow by writing something blahblahblah
    and then we closing the phrase by writing the following </p>
    (a closing tag, which basically is the same as an opening tag but now with / at the beginning which translate to - end the phrase)

  6. An attribute is an extension to the tag we discussed before, which help identify more deeply what is the meaning of the contentā€¦

  7. Finally the last one!
    So the basics of the anatomy of an HTML program is the following:
    First, you define the script as an HTML script by saying <html>. (Actually we start by saying <!DOCTYPE html> but that is written more as a historical thing than actually an important piece of codeā€¦ so I donā€™t care :slight_smile:)
    Then comes the head section. In this section, you write the stuff you are about to use, but you donā€™t want to show to the world.
    You continue you fascinating journey with the <body> section (of course after you closed the head section by saying </head>) and now you actually writes what the end-user will see.

Hope I didnā€™t misunderstood anything :slight_smile:

2 Likes
  1. HTML is Hypertext Markup Language and this is a type of code.

  2. HTML is used to structure a web page and itā€™s content.

  3. We are learning HTML because it necessary to understand for later, when we learn about Ethereum & NEM Dapps, we will have to create simple website that interacts with the blockchain.

  4. An HTML tag signifies where the element starts and ends.

  5. The structure of an opening tag

    and closing tag

  6. Attributes contain extra information about the element that you donā€™t want to appear in the actual content.

  7. The anatomy of an HTML document contains: , , , , etc

1 Like

1.) What is HTML?

Answer: HTML stands for Hypertext Markup Language and defines how your web content will look using a series of elements and tags.

2.) What is HTML used for?

Answer: HTML is used to arrange and style your content

3.) Why are we learning HTML?

Answer: We are learning HTML to gain the knowledge needed to utilize the front end of the web to interact with blockchain technology and smart contracts.

4.) What is an HTML tag?

Answer: HTML tags are what you use to wrap around and element and specify how the information is to be displayed.

5.) What is the structure of an HTML tag?

Answer: HTML tags are displayed with an open tag at the start of the element and a closing tag
at the end of the element.

6.) What is an attribute?

Answer: Attibutes are information about an element that you do not want displayed that will identify the element.

7.) What is the anatomy of an HTML document?

Answer: The anatomy of an HTML document are all the elements of the document.

1 Like
  1. Hyper Text Markup Language
  2. To build a website structure .
  3. As foundation for web developmentā€¦
  4. Something to define what type of content weā€™re building on a website .
  5. Opening tag - Content - Closing tag .
  6. Attributes are features .
  7. Every HTML document consists of at list two elements . Head and Body elements .
1 Like

1.Hyper text Markup Language
2.HTML is used to structure the look and feel of a website
3.Learning HTML to assist in building front ends for our DAPPS
4.HTML tags are used to apply an element to content.
5.HTML tags begin with <> and close with a forward slash to indicate tag is closed </>
6. An attribute is used to assign extra values to a tag that will not show up as content on the page.
7.The standard structure of elements that create the anatomy of an HTML document:
!DOCTYPE html<>ā€œstartā€
head<>
title<>Page title goes here</>title
head</>
body
</>end HTML

1 Like
  1. What is HTML? An acronym for Hypertext Markup Language. It is the language or codes that marks up or structures documents on the World Wide Web.
    2: What is HTML used for? HTML is used to structure a web page and its content and indicate how web browsers should display these documents to the user and responds to user actions such as activation of a link by means of a key press or mouse click.
  2. Why are we learning HTML? In this course primarily to be able to design and create and program interfaces between a blockchain and ourselves or a user.
  3. What is an HTML tag? In markup languages a tag is a code that identifies an element in a document, such as a heading or a paragraph for the purposes of formatting, indexing, and linking information in the document. Basically, HTML uses tags to mark elements, such as text and graphics, in a document.
  4. What is the structure of an HTML tag? In both SGML and HTML, a tag is generally a pair of angle brackets that contain one or more letters or numbers. Usually one pair of angle brackets is placed before an element, and another pair is placed after, to indicate where the element begins and ends. for example hello world indicates that the phrase ā€œhello worldā€ should be italicized. An element, in markup languages , is the combination of the set of tags, any content contained between the tags, and any attributes the tag may have.
  5. What is an attribute? An attribute in HTML is a name-value pair within a tagged element that modifies certain features of that element. Attributes generally contain extra information about that element that you donā€™t want to appear in the actual content.
  6. What is the anatomy of an HTML document? An HTML document consists of a file, with associated files for graphics and scripts, in a particular directory on a particular machine (and thus identifiable by a URL). It requires a doctype, , the html element , the head element , the body element , usually an element that sets the character set such as , and the title element . Within the body element are usually various other markup elements that define headings, paragraphs, lists, links, images, etc.

(I notice that in the preview of these answers that some of the text of some of my answers does not show up because they are elements that are literally being interpreted on this web page.) :slight_smile:

1 Like

What is HTML? (hyper text markup language) it is a markup language that defines the structure of your content.

What is HTML used for? code that is used to structure a web page and its content

Why are we learning HTML? we are learning html because we need understand the front end, to be able to present the information.

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

What is the structure of an HTML tag? opening tag/closing tag, the content, the element

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? the doctype,the html element or root element, the head element, body, meta char set, and title element.

1 Like

What is HTML? (Hypertext Markup Language) is the structure of a webpage and all of its content.

What is HTML used for? Every website uses HTML to structure the content and websites and makes sure it appears correctly.

Why are we learning HTML? Seems we are learning this to help us on the front end of this so that once we learn to code
the back end of thigs we will be able to display it correctly.

What is an HTML tag? A tag is used to mark elements and is usually in pairs.

What is the structure of an HTML tag? ex: < p > , < /p > for paragraph.

What is an attribute? Contains information about the elemnt that you dont want to bee seen as actual content.

What is the anatomy of an HTML document? It is comprised of different elements: html, head,body images ect.

2 Likes
  1. HTML is HyperText Markup Language, it is the based web page structure.
  2. It is used to structure a web page and its content
  3. smart contract need a user interface to interact with user, a web page is is the interface.
  4. HTML tag is part of element
  5. HTML tag including opening tag and closing tag
  6. Attribute is hidden info about the element
  7. start with and end with
1 Like
  1. It is a mark up language that defines the structure of the content.
  2. It is used to structure a web page and its content within the parameters defined
    by coder.
    3.To help us design the front end appearance of the website.
  3. Is a set of parameters in which content is placed.
  4. [{}(Content){</Closing Tag>}]
  5. Is information that contains extra about the element that you donā€™t want it to have it appear in the actual content.
1 Like
  • What is HTML?
    HTML (Hypertext Mark-up Language) is a mark-up language used to define a webpage and its content.

  • What is HTML used for?
    HTML is used for structuring the content of a webpage and their appearances, like define paragraphs, hyperlinks, input boxes, tables, images, etc.

  • Why are we learning HTML?
    We can use it along with other tools to create front end web interfaces for applications.

  • What is an HTML tag?
    HTML tag is a part of a HTML element which defines different elements and attributes

  • What is the structure of an HTML tag?
    An HTML tag is consisted of wrapper brackets, the name of the element of the tag and attributes.

  • What is an attribute?
    An attribute is a part of the tag that contains extra information about the element that doesnā€™t appear in the actual content.

  • What is the anatomy of an HTML document?
    An HTML document consists of DOCTYPE tag, html tag, head tad, meta tag, title tag and body tag.

1 Like
  1. It is a markup language that defines the structure of your content.
  2. Hypertext Markup Language is the code that is used to structure a web page and its content.
  3. To great a user interface between blockchain and the user.
  4. Its the open and close of the element.
  5. opening tag

    closing tag
  6. Attributes contain extra information about the element that you donā€™t want to appear in the actual
    content.
  7. the doctype ā€” the element ā€” the element ā€” the element ā€” this element sets the character set your document should use to UTF-8 ā€” the element
1 Like