HTML Reading Assignment

What is HTML?
HTML (Hypertext Markup Language) is a code with a series of commands.

What is HTML used for?
HTML is used to structure a web page and it’s content.

Why are we learning HTML?
To enable us to learn how websites are created, so we can understand how smart contracts are written.

What is an HTML tag?
Where an element in the code structure starts and ends to take effect.

What is the structure of an HTML tag?
HTML consists of a series of elements that are used to enclose or wrap different parts of the content, to make it appear or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can make the font bigger or smaller, etc.

What is an attribute?
An attribute contains extra information regarding what you want to appear in the content.

What is the anatomy of an HTML
All the Individual elements (open and close) combined to form an entire HTML page

1 Like

1.) HTML is a mark up language that defines the structure of your content.
2. HTML is made of elements used to enclose content in order to make it look or act a certain way.
3.) I’m learning HTML in order to ensure that I’m able to have the ability to write and understand this and other languages like it, to be able to build the front end to our projects, and to have a better understanding of the development space in general.
4.) HTML tags make a word or Image hyperlink to another place, edits the appearance and size of font, etc. In general, it directs the appearance and behavior of content.
5.) Tag structure is made up of the opening tag, the content and the closing tag. All of these create and element.
6.) An attribute contains extra information about an element that you don’t want to appear in the content.
7.) An HTML document is made up of the doctype, the html element, the head element, the meta charset?, the title element and the body element.

1 Like
  • What is HTML?
    HTML is a markup language that gives structure to the content of a web page.
  • What is HTML used for?
    To create web pages and make their content appear in a certain way, of function in a certain way.
  • Why are we learning HTML?
    Because it’s useful to create interfaces for smart contracts.
  • What is an HTML tag?
    The tags are used in HTML to define elements. They delimit the start and the end of the elements, so the elements are placed between an opening tag and a closing tag.
  • What is the structure of an HTML tag?
    The name of the element enclosed in angle brackets for the opening tag and the name of the element preceded by a slash all enclosed in angle brackets. < p> for opening and < /p> for closing.
  • What is an attribute?
    An attribute is extra information that changes the behavior of an element or provides metadata.
  • 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- HTML is a markup language, consisting of elements, attributes, content and tags. (and I’m sure more)
2- It is a protocol used to wrap content to make it appear a certain way, or have certain attributes
3 - We are learning it as a foundational understanding to be able to understand Javascript
4 - A tag has for example opening tag <p> and closes with </p>, and wraps content to create an element.
5- See #4 above
6 - An attribute is a kind of classification
7 - HTML has “head” components that are not shown to the user, and body elements that are shown to the user on the webpage

1 Like
  1. HTML is Hyper Text Markup Language.
  2. It is used to structure a web page and its content.
  3. We are learning HTML to know the basics of creating a user interface for various block chain projects.
  4. HTML tag makes browser recognize what type of content we have in our website.
  5. The structure of an HTML tag is content </closing tag>.
  6. Attribute is an extra information about the element you don’t want to appear in the original content.
  7. The anatomy of HTML document is
    doctype
    html element
    head element
    title element
    body element
1 Like
  1. What is HTML?

A. Html is not a programming language, it is a markup that gives definition and structure to your contents.

  1. What is HTML used for?

A. Use cases are you can make a website and input information and pictures etc…

  1. Why are we learning HTML?

A. Its a great way to understand how the backend works, as this will be core in moving forward when developing smart contracts / blockchain, as these are embedded.

  1. What is an HTML tag?

A. A tag is part of a element, it used to wrap content , consists of a name, the opening tag is wrapped in opening and closing angle brackets. The closing tag is same as the opening tag but has a / before the element name.

  1. What is the structure of an HTML tag?

A. Name tag wrapped with opening and closing angle bracket

  1. What is an attribute?

A. They contain extra information regarding the element which don’t appear in actual content. It has a attribute name and a attribute value

  1. What is the anatomy of an HTML document?

A. It wraps basics of HTML elements, but they have no impact on there own

1 Like
  1. Hyper-Text Markup Language. It is a language that can control the formatting of pages - paragraphs, text, images, etc.

  2. It’s used to make webpages.

  3. We are learning HTML to get an introduction into programming through a much simpler language. We will be designing applications on the web with javascript and HTML is the backbone of web pages.

  4. Code elements which can describe and format webpages.

  5. < element > value </ element >

  6. Something that can add additional info to elements but which are not intended to be viewed by the person viewing the page.

  7. head - place for the content that describes the webpage but isn’t to be viewed by the user him/herself. Body - where the bulk of the code for what’s on the page is located.

1 Like
  1. HTML stands for Hypertext Markup Language.

  2. HTML is astandard language for making webpages that shows text, pictures, videos, and other media on websites.

  3. To be able to construct an application that can interact with the smart contract.

  4. A HTML tag is used to define content on the website.

  5. It is a special instruction that the browser can interpret and act on it sets out elements which contain content and with the exception of images has an open and closed structure.

  6. Tags begin with <> and close with a forward slash to indicate tag is closed </>.

7.The anatomy of an HTML document is as follows below:

< !DOCTYPE html>
< html>
< head>
< meta charset="…">
< title>
< body>

1 Like
  1. What is HTML?

HTML (Hypertext Markup Language) is code used to structure a webpage.

  1. What is HTML used for?

HTML is used for structuring your webpage. You can use HTML to amend the content of the page including size, positioning, font, structure etc.

  1. Why are we learning HTML?

Learning HTML basics allows you to learn how the web functions and helps you learn other programming languages.

  1. What is an HTML tag?

A HTML tag allows you to format the text within and opening and closing . For example you may with to make some text bold.

  1. What is the structure of an HTML tag?

As above, a tag always has an opening and a closing

  1. What is an attribute?

An attribute contains additional information about an element that you do not want to include on the webpage.

  1. What is the anatomy of an HTML document?

The anatomy of a HTML documents are all of the elements above, and more, combined to give you a webpage. This includes the doc type, header and body of the page.

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

  2. It is used to enclose or wrap different parts of the content so that they appear in a certain way.

  3. So that we can create the frontend part of our application, which will be a website.

  4. An HTML tag is used to define the type of element.

  5. There is an opening tag and a closing tag and these are wrapped in angle brackets. Likewise <opening tag> .... </closing tag>

  6. An attribute defines extra information about the element.

 <!DOCTYPE html>
      <html>
           <head>
                 .......
          </head>
          <body>
                ........
          </body>
      </html>
1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language . it is a markup language that defines the structure of your content.

  1. What is HTML used for?

It allows the user to create and structure sections, paragraphs, headings, links, and blockquotes for web pages and applications.

  1. Why are we learning HTML?

If you want to learn the basics of coding, then html is a good way to start to later go deeper to other languages.

  1. What is an HTML tag?

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.

  1. What is the structure of an HTML tag?
  • The Opening tag = < p >
  • The Closing Tag = < / p >
  • The Content = The content of the element
  • The Element – The opening tag, the closing tag and the content together comprise the element.
  1. What is an attribute?

HTML attributes are special words used inside the opening tag to control the element’s behavior.

  1. What is the anatomy of an HTML document?

Answer? = “head” and “body”

1 Like
  1. What is HTML?
    Language for creating websites.

  2. What is HTML used for?
    Hypertext Markup Language

  3. Why are we learning HTML?
    In order to begin to learn to program, even though HTML is not a programming language.

  4. What is an HTML tag?
    A tag creates an element. For example, < p> begins a paragraph and the tag < /p> ends it.

  5. What is the structure of an HTML tag?
    < begin tag>content</end tag>

  6. What is an attribute?
    Contains extra information about the element that should not appear in the actual content.

  7. What is the anatomy of an HTML document?
    < !DOCTYPE html> — the doctype.
    < html> — the element.
    < head> — the [< head>]
    < meta charset=“utf-8”> — This element sets the character set your document should use to UTF-8
    < title> — the < title> element.
    < body> — the < body> element.

1 Like
  1. HTML stands for Hypertext markup language.

  2. HTML is used to organize and add structure the data and contents of a webpage.

  3. HTML forms the basic structure of webpages and is the layer upon which Javascript code is used. It is important to understand how HTML works so that we can connect with how Javascript interacts with the web page.

  4. An HTML tag is used to wrap the entire content of your webpage together.

  5. <html> </html>

  6. Attributes are special characteristics you can add to the elements on your webpage.

  7. doctype
    html tag
    head element
    a character set declaration
    title
    body

1 Like
  1. HTML is a markup language.
  2. It is used for making the content of an html file appear or act a certain way when read by the browser.
  3. We are learning HTML to understand the structure of a web page and be able to create a static basic page.
  4. An HTML tag is a markup element used to enclose the content that we want to present on a web page.
  5. The structure of an HTML tag consists of the name of an element wrapped in angled brackets. There are an opening and a closing tag which are used to enclose the content in order to act upon it.
  6. An attribute gives additional information about the element that we don’t want it to appear on the displayed page.
  7. The anatomy of an HTML page includes:
    the DOCTYPE tag followed by the Head section, the title section and the Body section.
1 Like

Excellent answer @Alarm! Hope to see you around as the courses progress. Looking forward for your posts in the future. If any doubts or questions please feel free to reach out here.

Happy Learning! :slight_smile:

1.HTML is how content is structured on web pages.
2. HTML allows for programming of web page content.
3. its a good foundation building tool for my prog toolkit
4. let’s a browser know what and how content should be displayed.
5. open “<” , any content, close “</”, close of closer “>”
6.info not shown on display about the content
7.The head and the body of 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.
  1. What is HTML used for?
  • Used to structure a web page and its content.
  1. Why are we learning HTML?
  • It is the skeleton of the web upon which other things are built.
  1. What is an HTML tag?
  • It is used to enclose the data you want to display in your web page thus creating an element.
  1. What is the structure of an HTML tag?
  • It has an opening with the name of the element enclosed in angle brackets and a closing with the name of the element also enclosed in angle brackets but whose element name is preceded by a forward slash.
  1. What is an attribute?
  • Attributes contain extra information about the element that you don’t want to appear in the actual content.
  1. What is the anatomy of an HTML document?
  • Doctype element that makes it behave correctly, the root element which wraps all the content of the entire page, the head element which acts as a container for all the content you want in a page that isn’t the content you will show your page viewers, the meta charset which includes most characters from the vast majority of written languages, the title element which sets the title of your web page on the browser tab and the body which contains all the content you want to show to the web users who visit your page.
1 Like

1.) HTML stands for Hyper Text Markup Language.
2.) HTML is a code used to structure a web page and its content
3.) HTML is important to learn as a base to learning how to program with Java and on the blockchain.
4.) HTML are instructions used to give to the website.
5.) A tag that starts with an opening and closing
6.) An Attribute provides extra information for an element
7.) individual elements combined to an entire HTML page

1 Like
  1. HTML is not a programming language; it is a markup language
  2. 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.
  3. To make what we learn interactive
  4. Names the element within our html anatomy
  5. open tag, closing tag, content and element
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. preamble, [ <html> ] element, header, meta, title, body
1 Like
  1. It stand for Hypertext Markup Language.
  2. used to structure a web page and its content.
  3. To enable us to build a front-end for our smart contracts that we will develop
  4. tags open and close content.
  5. <html></html>
  6. An attribute is information about the content that you dont want to appear in the actual content.
<!DOCTYPE html>
<html>
  <head>
    <meta charset=“utf-8”>
    <h1>My main title</h1>
    <h2>My top level heading</2>
    <h3>My subheading</3>
    <h4> My sub-subheading</4>
  </head>
  <body>
    <img src=“images/firefox-icon.png” alt=“My test image”>
  <\body>
</html>
1 Like