HTML Reading Assignment

  1. HTML is HyperText Markup Language
  2. HTML is used to display the contents in the structured way on the webpage using different elements.
  3. Using HTML we can build static websites to display to the users.
  4. HTML tag is used show the text in a way to display to the users as per the requirement. We can use tag to display the font bigger or smaller, bold or regular , coloring the fonts, load images etc
  5. Structure of an HTML tag contains elements such as paragraph, header, and it also contains attributes within the elements to display the way font should look or load the image using tags.
  6. Attribute is used to store the image or coloring the fonts, increasing the font size etc
  7. HTML document has the HTML reference tag, encoding tag, html tag , different type of elements, attributes etc
1 Like
  1. HTML stands for Hyper Text Markup Language which describes the structure of Web pages using markup

  2. Structuring a webpage

  3. To have front end for Dapps and to connect smart contracts

  4. Indicates the start and end of the elements

  5. The basic structure is opening tag> Content</closing tag>"

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

  1. Opening html-tag, header and body element, closing html-tag
1 Like
  1. Hypertextmarkup language
  2. HTML is used to structure the content of a web page.
  3. We are learning HTML because it is the basic language of the web.
  4. An HTML tag is an element.
  5. An opening tag followed by the element and a closing tag.
  6. An attribute contains information that doesn’t appear in the actual content of the website.
    7.The opening tag followed by the element, the content and a closing tag.
1 Like
  1. Hypertext Markup Language
  2. HTML is used to structure web pages.
  3. In order to build simple static web pages that only display content.
  4. Tags enclose pieces of content to make them appear a certain way.
  5. The opening tag consists of the element name inside angle brackets and the closing tag is the same but with a forward slash before the element name.
  6. An attribute is a way to add extra information to an element that won’t be displayed in the content.
  7. The html element which encloses all content on the entire page. Inside the html element are the head and body elements.
1 Like
  1. It is a markup language for structurizing and presenting information.
  2. It used for describing how to present information (text, images, tables, lists and so on) on web-pages.
  3. We need it for building our web-pages, which should interact with blockchains.
  4. Predefined element name, enclosed by angle brackets. Can contain attributes with additional information.
  5. Opening bracket - name - attributes (optional) - closing bracket.
  6. Name-value pairs of additinal information
    7/ It’s a structure of elements.
1 Like
  1. What is HTML? HyperText Markup Language: It is a markup language that defines the structure of your content. I.e. The code that is used to structure a webpage and the content of that webpage. HTML consists of a series of ā€œelementsā€ that is used to enclose the specified content to act or appear in a specified way.
  2. HTML is used for, as stated above, designing a webpage and its content.
  3. We are learning HTML to get a basic understanding of the symbols used in programming.
  4. An HTML tag is what identifies the content.
  5. What is the structure of an HTML tag? I don’t really understand what is meant by ā€œstructureā€. In the article the ā€œtagā€ is what indicates the start and end of the content. The ā€œtags structureā€ could be considered the instructions encapsulating specific content or body. The tags and the content are what make up what is called the anatomy of the HTML element.
    6.What is an attribute? An attribute is extra information about the element that you don’t want to appear in the actual content. There are specific rules of an attribute that must be followed:
    a) A space after the element name.
    b) The attribute name followed by the equal sign
    c) The attribute value encased in quotation marks.
  6. Anatomy of an HTML document is considered the HTML element which consists of the opening tag, content and the closing tag. The opening tag consist of the name of the element encased in angled brackets. The closing tag consist of the name preceded by a forward slash and also encased or wrapped in angled brackets. And of course the is the content in-between the tags. There can also be attributes that emphasize the design and or direction of the content. The attribute is located in the opening tag.
1 Like

1.HTML is a markup language that defines the structure of your content
2. Used for building websites
3.It’s a basics of learning and understanding how programing and code working
4. HTML tags are like keywords which defines that how web browser will format and display the content
5.a. The opening tag
b. The closing tag
c. The content
d. The element
6.Attributes contain extra information about the element that you don’t want to appear in the actual content
7.individual elements are combined to form an entire HTML page

1 Like

What is HTML?
Hyper Text Markup Language is the code that is used to structure a web page and its content.

What is HTML used for?
It 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?
Because we need to learn the basics in order to understand other languages and to build applications that interact with the blockchain.

What is an HTML tag?
A tag is used for creating an element and 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 consists of the name of the element, wrapped in opening and closing angle brackets and states where the element begins or starts to take effect. The closing tag includes a forward slash before the element name and states where the element ends.

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?
Doctype, html element, head element, <meta charset+ā€œutf-8ā€> element, title element, and body element.

1 Like
  1. HTML is a markup language that defines the structure of your content
    2.HTML is used for structuring a web page and its contents
    3.without HTML you cannot build or run anything on the web or blockchain
  2. A tag denotes the start and end of a section in HTML, like a heading, paragraph, table…
    5.<ā€˜tag> </tag’> opening and closing a bracket
    6.an attribute is extra information about the tag
<!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

HTML stands for HyperText Markup Language. It 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.

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

We are learning HTML in order to build simple static web pages that only display content and to build applications that interact with the blockchain.

An HTML tag is used for creating an element that can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

The opening tag
The closing tag
The content
The element

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

The html element which encloses all content on the entire page. Inside the html element are the head and body elements.

1 Like
  1. What is HTML?
    It stands for Hypertext Markup Language and it’s code used to structure content.

  2. What is HTML used for?
    It’s a markup language to display content on a web page.

  3. Why are we learning HTML?
    It’s the basic entry way into other types of coding needed for blockchain development. Once you understand HTML you will have a better understanding of patterns and structures used in other programming languages.

If we want to code for blockchain, there needs to be an interface that connects to the blockchain. Being able to code a basic website enables you to code a working concept that can interact with a blockchain.

  1. What is an HTML tag?
    It’s a way to ā€˜wrap’ content to look or behave a certain way. I.e. you can make a text bold or have a text open a link to another website by enclosing it with appropriate tags.

  2. What is the structure of an HTML tag?
    There are opening and closing tags. We have content, like a piece of text. The content is placed within tags and the two together are called an ā€˜element’.

Then elements can have attributes.

  1. What is an attribute?
    Attributes are pieces of extra information or values that don’t need to appear in the actual content.

  2. What is the anatomy of an HTML document?

  • the doctype, a required preamble
  • the HTML-element, that wraps all the content on the page
  • the Head-element, a container for all the stuff that isn’t content like keywords or stylesheets
  • the UTF-8-element, to set the characters used on the page
  • the Title-element, to display the title of the page
  • the Body-element, which contains all the content to be displayed on the page
1 Like
  1. What is HTML?

An acronym for Hyper Text Markup Language

  1. What is HTML used for?

Webpages

  1. Why are we learning HTML?

HTML and Javascript are virtually inseperable

  1. What is an HTML tag?

like bold text here etc – there’s an opening and closing tag

  1. What is the structure of an HTML tag?

see above

  1. What is an attribute?

extra properties in the opening tag like Visit W3Schools.com!

  1. What is the anatomy of an HTML document?

But you can pass validation with even less: https://gist.github.com/cmalven/1885287

1 Like

1. **What is HTML?**

HTML (HyperText Markup Language) is the code that is used to structure a web page, which you use to make different parts of the content to make it appear a certain way or act a certain way.

2. **What is HTML used for?**

Its used to structure a website and its content.

3. **Why are we learning HTML?**

Its basic fundamentals will give you a platform and a basic understanding when you transfer over to javascript and other forms of coding.

4. **What is an HTML tag?**

An HTML tag defines a hyperlink, which is used to link from one page to another. They are hidden keywords.

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

< tag> my cats breath smells like catfood < /tag>

6. **What is an attribute?**

They are special words used inside the opening tag to control the elements behaviour.

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

An HTML document consists of 2 parts, the head and the body

< html>
< head>
< title> "My Average Life: Season 1 pilot" </ title>
< /head>
< body> < img src=" image.jpeg" >
< /body>
</ html>
1 Like
  1. HTML is HyperText Markup Language.
  2. HTML is used to create structure and display content of a website.
  3. HTML helps creating interface for our Dapps so it can interact with Smart contract.
  4. HTML tag is the markup used to give instruction on how to format the page.
  5. Opening tag ending tag .
  6. Attribute defines additional information / feature of an element that is not displayed in the page.
<!DOCTYPE html>
<html>
  <head> </head>
  <body> </body>
</html>
1 Like
  1. What is HTML?

Is a code language for creating static websites.

  1. What is HTML used for?

It is used for creating static websites.

  1. Why are we learning HTML?

Because we need to know how to create UI because many people dosen’t know how to comunnicate directly, so with that user interfaces its much easier for the people to interact with a Dapp.

  1. What is an HTML tag?

You need the tags to start creating the elements and start constructing the website.

  1. What is the structure of an HTML tag?

This is an example of a paragraph tag

  1. What is an attribute?

It’s used for specifying extra information thats is aplied to the content inside a tag.

  1. What is the anatomy of an HTML document?
<!DOCTYPE html?
<html?
  <head?
    <meta charset="utf-8"?
    <title>Hello</title?
  </head?
  <body?
  </body?
</html?

f(?)= (? = >)
1 Like
  1. HTML is Hypertext Markup Language used to code the structure to a website.

2)To make sure the websites image and text format is displayed as it was intended by design.

3)Most websites utilize HTML and once we learn how to do it we can implement other features like Javascript or Python Front -end. Most of all we don’t have to pay anyone to do it for us.

4)HTML encloses words or images between theses angular brackets called tags

Chief

to either make the fonts large or small, bold, italic or attach an image.

5)The structure of an HTML tag is an element with a content in between an opening tag<!> and a closed tag <!> ex: <!> I’m a Blockchain Developer</!>

6)Attributes give extra information on an element you don’t want appear on the content. They a given a class and editor note to give the element a unique identifier.

7

<IDOCTYPE html >
<html>
          <head>
                       <title></title>
          </head>
                    <body> 
                             <img>
                    </body>
</html>
1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? HTML is the code that is used to structure a web page and its content
  3. Why are we learning HTML? In order to build a website that can interact with smart contracts we create
  4. What is an HTML tag? Tags hold the content within an element
  5. What is the structure of an HTML tag? Opening tag and closing tags that enclose the content
  6. What is an attribute? Extra information about the element that is not displayed on the page
  7. What is the anatomy of an HTML document? HTML element which encloses everything in the page, a Head element with charset (the characters that can be used) and a title element then a body element
  1. HTML, or Hypertext Markup Language, is the language used to structure a webpage and its content.
  2. HTML is used for structuring the appearance and actions of web content.
  3. We’re learning HTML because it is a basic building block of the web. I can learn blockchain programming all day long, but if I can’t design an easy to use, aesthetically pleasing user interface for users to interact with that DLT function then nobody is going to use it (except maybe other developers).
  4. Tags can make a word appear a certain way or act a certain way (such as become a hyperlink)
  5. The structure of an html tag is as follows: the opening tag followed by the content, followed by the closing tag </name of element>
  6. An attribute is an extra piece of information about the element that you do not want to appear in the content.
  7. The anatomy of an HTML document is as follows:
    (wouldn’t let me copy and paste or type it in the proper format so I’ll type it out weirdly…)
    Doctype
    html
    head
    meta charset = utf-8
    title
    /head
    body
    img
    /body
    /html
1 Like

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

What is HTML used for?
Is the programming that is used to structure a web page’s content.

Why are we learning HTML?
Learning HTML is beneficial as a foundation for web creation and blockchain development.

What is an HTML tag?
HTML tags are like keywords which defines that how web browser will format and display the content.

What is the structure of an HTML tag?
Structure refers to the approach of using HTML on content to convey meaning (semantics) and explain how blocks of information are structured to one another.

What is an attribute?
Attributes provide additional detail about the element that is not present in the context.

What is the anatomy of an HTML document?
Page title and general page formatting commands are given by Head components. Body elements — this is where you’ll place the main HTML document.

1 Like
  1. What is HTML?
    It is a markup language, Hyoertext Markup Language

  2. What is HTML used for?
    It is used to structure a webpage and it’s content

  3. Why are we learning HTML?
    To get an introduction to the basics of web design and structure as a foundation to learn other coding languages

  4. What is an HTML tag?
    Consists of he name of an element (paragraph, body, heading….)

5.What is the structure of an HTML tag?
angle bracket enclosing an element.
opening tag


closing tag

6.What is an attribute?
An attribute extends an element by changing its behavior or providing metadata

  1. What is the anatomy of an HTML document?
    How individual elements are combined to create an HTML page….
    Of course a complete page would include all the pertinent information that makes the page unique including but not limited to: images, anchors, headings, paragraphs, attributes, etc.
 <html>
      <head>
           <meta charset=ā€œUTF-8ā€>
           <title></title>
      </head>
      <body>
           <h1></h1>
           <img>
           <p></p>
      </body>
 </html>
1 Like