HTML Reading Assignment

  1. What is HTML?
    Hypertext Markup Language

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

  3. Why are we learning HTML?
    to build a front end which can be connected to a blockchain

  4. What is an HTML tag?
    for every element an opening and closing tag is needed.

  5. What is the structure of an HTML tag?
    opening tag: <…>
    closing tag: <…/>

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

  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

Hi abuga, I did’nt quite understand your reply: per reading assignment it states that the opening and closing tag of a elements content are the 4 main parts of an element
’ This states where the element ends’
The element: The opening tag, the closing tag and the content together comprise the element. Did I misinterpert this or am I missing something.

  1. What is HTML? a markup language
  2. What is HTML used for? to make websites
  3. Why are we learning HTML? because it’s an easy step to start learning coding
  4. What is an HTML tag? you use tag to get modify text or do other actions
  5. What is the structure of an HTML tag? …
  6. What is an attribute? it adds extra info, it has class and value
  7. What is the anatomy of an HTML document?
    all inside html, then head (text you don’t want to see in the website) then body (text and images you want in your website)
1 Like
  • What is HTML?

Is a mark up language with defines structure of your content.

  • What is HTML used for?

Is used to enclose or wrap different parts of content to make it appear or act a certain way.

  • Why are we learning HTML?

Because is part of Web3 approach with connects data from blockchain and make it readable on Web page.

  • What is an HTML tag?

Tag is used for creating an element.

  • What is the structure of an HTML tag?

Name of HTML element is the name used in angle brackets

<p> </p>

  • What is an attribute?

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

  • What is the anatomy of an HTML document?

HTML document starts with the <!DOCTYPE html> element. It further consists of at least the <html> element which includes the <head>, title <title> and <body> elements.

1 Like

hypertext markup language.
HTML is used for creating webpages.
we are learning HTML to use as our front end while jave programming or ethereum smart contract our backend.
its piesce of code we used to creat our webpage with HTML
structure of HTML tage is we have one opening tag and one which will be the ending tag
attribute is tage with which we can define some kind of explaination about the element which was to show in our webpage.
anatomey of AN HTML page consists of opening tage and closing tage ,in between starting and ending

1 Like
  1. HTML is a markup language which defines the structure of your content on a website.
  2. HTML is used to build the backbone of your website
  3. We’ll need html to create a website which can communicate with any smart contracts we make in the future.
    4.HTML tags are a protocol which lets the web know which part of the website we are using for example H1 for heading or p for paragraph.
  4. an attribute is extra info about an element that wont appear on the site. Often used to add some special effects in CSS
  5. the basic anatomy of html the html tags, head, utf-8, title and body.
1 Like
  • What is HTML? HTML stands for Hyper Text Markup Language - it is a markup language that define’s the structure of one’s content. It consists of a series of elements that allow you to manipulate the appearance of the content.
  • What is HTML used for? It is used in the design of the structure and content of web pages, including text layout and images.
  • Why are we learning HTML? It is a fundamental building block in designing webpages. It is a first step to understanding programming later on.
  • What is an HTML tag? Tags are an important part of an element. They wrap the content of an element with an opening and a closing tag. Empty elements have no closing tag. Tags can make the content perform functions such as hyperlink or italicise text.
  • What is the structure of an HTML tag? Opening tag has the name of the element (such as p) wrapped in opening and closing angle brackets. The closing tag has the same but with the addition of a forward slash before the element name.
  • What is an attribute? The attribute contains extra information that you do not want to appear in the content.
  • What is the anatomy of an HTML document?It is the combination of elements used to make up a page.such as doc type, the root element, head element, title element and body element.
1 Like

Thanks for the feedback…

1 Like
  1. HTML is a markerup language used to create structures and content on the web page.

  2. HTML is used to create structures and content on the web page.

  3. We learn HTML because it is the fundamental of web design.

  4. An HTML tag is an element used for structuring the content.

  5. You have an opening tag and a closing tag.

  6. An attribute is any information about the element in the element, but you don’t want users to see.

1.) HTML is a markup language used to structure content, it consists of elements that allow you to make content appear a certain way.
2.) HTML is used to create electronic documents of pages displayed on the web, it’s basically used to structure web pages and their content.
3.) HTML will be needed to interact with smart contracts, a front end for blockchain.
4.) An HTML tag is used to represent the root of an HTML document, it’s a container for all other HTML elements.
5.) An HTML tag is composed of three parts, an opening tag, content and a closing tag.
6.) An attribute contains extra information about the element, information you don’t want to be shown in the actual content.
7.) HTML anatomy is made up of the elements…
DOCTYPE
html
head
meta charset
title
body

  1. What is HTML?
    HTML is a markup language.
  2. What is HTML used for?
    HTML is used to structure a website.
  3. Why are we learning HTML?
    An HTML webpage is the “front end” of the smart contract. What the user interfaces with. It is essential to know how to use.
  4. What is an HTML tag?
    An HTML Tag defines where an element begins and ends.
  5. What is the structure of an HTML tag?
    Content.</closing tag>
  6. What is an attribute?
    An attribute is extra information about the element that you don’t want in the content.
  7. What is the anatomy of an HTML document?
    !Doctype html, html, head, utf-8, title, body

Hi Bobchain, You are right, I just wanted you think of elements like input and br, this ones do not have closing tag. they are called empty tags.

<input > 
<br>
2 Likes

What is HTML?

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

What is HTML used for?

  • it is a markup language that defines the structure of your content

Why are we learning HTML?

  • with HTML we can make a userinterface to interact with ETH smartcontracts for example
  • providing input and output to the underlaying scripts.

What is an HTML tag?

  • is used for creating an element such as a paragraph for example
  • it is a sort of property you can apply on a content of the page

What is the structure of an HTML tag?

  • starts with a opening tag
  • end with closing tag
  • between the 2 tags you place the content
  • the total of tags with content is called a element

What is an attribute?

  • it contains extra information about the element that you don’t want to appear in the actual content
  • a example => class=“editor note”

What is the anatomy of an HTML document?

  • the doctype. It is required preamble
  • the element. This element wraps all the content on the entire page and is sometimes known as the root element.
  • the 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 element sets the character set your document should use
  • the element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in
  • the element. This contains all the content that you want to show to web users when they visit your page
1 Like

1Hypertext Markup Language
2
Used to program websites
3To be able to create a website that can interact with the smart contract
4
A tag is used for creating an element on a web page such as text images or links
5An opening tag telling the page what to display the information and a closing tag
6
A characteristic of a particular element to provide more information
7*Opening HTML tag, header and body element and closing HTML tag

1 Like
  1. HTML is the code that is used to structure a web page and its content. 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 is used to structure a webpage and its content.

  3. To know how to create a web page.

  4. In HTML a tag is used for creating an element.

  5. The opening tag, the closing tag, the content and the attribute.

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

  7. The HTML element represents the root (top-level element) of an HTML document, so it is also referred to as the root element. All other elements must be descendants of this element; the HTML elemen contains machine-readable information metadata about the document, like its title, scripts and style sheets; The HTML element represents the content of an HTML document. There can be only one element in a document.

1 Like
  1. HTML is a mark up language that defines the structure of your content.

  2. it used to enclose or wrap different parts of the content to make it appear or act in a certain way.

  3. in order to be able to build static websites.

  4. a tag is used to manipulate a certain word or image.

  5. opening tag enclosed by angle brackets followed by the content and a closing tag proceeded by a fwd slash & enclosed by angle brackets.

  6. attribute contain extra information about the element that you don’t want to appear in the actual content and they consist of an attribute name and an attribute value.

  7. the anatomy of an HTML document is a build up of different elements to form the entire HTML page these elements are:

  • Doctype
  • HTML
  • Head including Meta charset & Title
  • Body
1 Like
  1. HyperText Markup Language.
  2. To structure a web page and its contents.
  3. To make an application in the blockchain like Dapp, a developer need to understand both front-end and back-end developement. Writing smart contract is the back-end while coding html or Javascript is the front-end.
  4. HTML code that defines every structure on html page.
  5. HTML tag is enclosed in <> brackets marking a start and an end of a block.
  6. Attribute is used to add useful information to a html tag.
  7. An anatomy of an HTML document consists of the opening tag, the closing tag, the content and the element. Sometime, it also requires attributes.
1 Like

1: It’s a markup language

2: to structure content on a website.

3:It’s at the base of any web development and we need to learn it to show our smart contracts use case on a website and become good programmers

4: Something we need to create elements. We need an opening tag
< p> (if we wanna create a paragraph) and end tag < /p>

5: <(opening tag)> content in here </(closing tag)>

6:

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

7:

1 Like
  1. An HTML is a markup language.
  2. HTML are used to define the structure of the content on your webpage.
  3. Becasue its a great basic foundation for other prgramming languages.
  4. A tag is code that sets the open / closing parameters of the element.
  5. Strucure of tag includes the < and > with the variable in between
  6. An attribute contains extra information about the element that you don’t want appering in the actual content.
  7. Anatomy of an html doc inclufdes:
  • doctype html element
  • html element
  • Head element
  • Metachar set (allowing us to use text)
  • title element
  • body element
1 Like

Thanks for the reply. My first time learning about programming and it is challenging. Thank you for telling about the button to display code.