HTML Reading Assignment

What is HTML?
It is a language that defines the structure of your content, as in how it will appear on screen.
it is not a programming language but a mark up language which is a wrapper

What is HTML used for?
displaying content in a defined way visually.

Why are we learning HTML?
as a means to create a front end that interacts with our smart contracts/blockchain apps.

What is an HTML tag?
tags are the enclosing syntax of HTML this is the operating language that we use to manipulate your web content.

What is the structure of an HTML tag?
Opening Tag
Closing Tage
Content
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?
A conbination of HTML elements that form an entire HTML page

1 Like
  1. it is markup language, define structure of the content
  2. to create web pages
  3. so we can get some basics
  4. tags give properties to content of element
  5. angle brackets with code inside, plus / sign in closing tag
  6. attribute gives another properties to content withou being displayed
  7. tags and content with attributes in between
1 Like
  1. HTML is a markup language.

  2. It is used to structure the content of a webpage.

  3. Most things blockchain related are done through the internet. Whether that’s through an app or a webpage, it is important to know how to interact with a blockchain in different environments.

  4. To apply an element to content, HTML tags are used to enclose the content within the element.

  5. < opening tag > content </closing tag>

  6. An attribute contains extra information that the coder doesn’t want as part of the content.

  7. an HTML document starts with < !DOCTYPE html > which ensures the document behaves as an html followed with the element < html > which is used to wrap all the content of the webpage, followed by the element < head > which includes all the info of the webpage that isn’t the actual content, followed by the element < title > where the title of the webpage goes and finally the element < body > where all the webpage content is placed.

1 Like
    1. What is HTML?
      HTML is a code. HTML is called a markup language.
    1. What is HTML used for?
      The code helps to structure the text, photos on a webpage.
    1. Why are we learning HTML?
      We get the ability to write our own little webpage and to integrate some elements to get in contact through our web page to the blockchain.

4 1. What is an HTML tag?
A tag is a part of the anatomy of an HTML page. It is a paragraph elements which makes it possible to structure a content… There is for example an opening and closing tag. You can write in the tags attributes, nesty elements or empty elements, images, headings and so on.

  1. What is the structure of an HTML tag?
    epening tag, closing tag, content, element

  2. What is an attribute?
    Attributes help you to hide what you don’t want to be seen. Attributes contain extra information.

  3. What is the anatomy of an HTML document?
    Doctype, html, head, body

1 Like
  1. HTML is hypertext markup language which is the code to structure a website and it’s content.
  2. HTML is used to define the structure of your content.
  3. We are learning HTML because its the foundation and building blocks of a website. it makes appear the content in a certain way.
  4. HTML tags are elements with opening and closing angle brackets.
  5. Begins with an opening tag with a specific element, followed by the content and then closing tags with the same specific element from the opening tag.
  6. An attribute is extra information about the element inside the tags, and usually have a non-unique identifier so it can be targeted in CSS for styling purposes or other things.
  7. An HTML page always starts with the tag , it has where all the info needs to the website that won’t appear as a content (title, descriptions, seo, scripts and so on), and finally the where all the content lies. All these tags need to be closed.
1 Like
  1. HyperTextMarkupLanguage is code that structures a webpage an its content.

  2. HTML is used for every webpage.

  3. I learn HTML to refresh my knowlege laying back 4-5 years.

  4. A HTML Tag gives the Browser commands on how to display content.

  5. The structure starts with: content inside, and a

  6. A Attribute is included in Tags and gives additional propertys to the content.

Ivangelists overtake the Cryptospace!
1 Like

Hi @Mynor, could you be a little specific on your doubt so that we can assist you better. ?

1 Like
  1. HTML is a ā€œmarkup languageā€. It specifies the structure of a webpage.
  2. It is used to structure the content of a web page.
  3. To be able to provide a nice UI to users. In this case, to abstract the use of a smart contract.
  4. A tag is a set of characters constituting a formatted command for a webpage.
  5. HTML tags are composed of for the opening tag and for the closing tag
  6. An attribute is a complement of information about the element.
  7. The anatomy of an HTML document is a set of combined HTML elements (head and body).
1 Like
  1. What is HTML?
    HMTL is used to create the front end part of the websites you currently see around the web.

  2. What is HTML used for?
    To structure the content you see on the web.

  3. Why are we learning HTML?
    To be able to display information from the blockchain using smart contracts.

  4. What is an HTML tag?
    HTML tags can be used to make content appear a certain way such as bolding, adding a image, paragraph formatting and so forth.

  5. What is the structure of an HTML tag?

opening tag content in between tag

closing tag
  1. What is an attribute?
    Attribute contain extra information about the element. You are able to set a class to be a identifier that can be used to target it.

  2. What is the anatomy of an HTML document?

- used to identity the type of document to behave correctly. - element to be the container of the entire page, it will wrap the begining and end of a page. - element that used for content outside of whats being shown to the end user. Head is more for keywords to appear in search results or CSS style content. element to set the character set to use the correct written language. element will set the title of the page which will appear in the browser tab page and also used as the description when bookmarking. element is the main element that contains all the content you want to have appear on your page, including text, images, videos, games.
1 Like

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

HTML is used for creating webpages.

We’re learning it as a basic starting point for programming and would be necessary for understanding or building blockchain app frontends.

Tags state where an element starts or ends.

An opening tag enclosed by angle brackets <example> with some content followed by a closing tag </example>

An attribute provides more information to an element, usually with a name and value. Attributes can target elements.

<!DOCTYPE html>
<html></html>
<head></head>
<meta charset="utf-8">
<title></title>
<body></body>
1 Like

1 & 2 . HTML is a markup language for displaying or manipulating content such as used on internet web pages.
3. HTML is useful to learn for smart contract programming. Smart contracts interact can be part of websites.
4. Tag executes a commanding in the HTML language so that content is displayed.
5. An opening tag, the content and the closing tag. This is all together is called an element.
6. An attribute is extra information about the element that you don’t want to appear in the actual content.
7.

<html></html> puts all the content on the entire page 
<title>Hello World</title> — the title element shows the Hello World title of the content
<head>..All stuff on page no seen coded here..</head> -the head element contains all the stuff on the web page not seen by viewers.

<meta charset="utf-8"> is the character set chosen for the text. most use UTF-8 by convention.
1 Like

Amendment to 7.
The element attached the content to the webpage
the element
Contains all the stuff you want to include.

sets the character set, usually use UTF-8 element shows the title of the webpage The element displays the content you want viewers to see on the webpage.
2 Likes
  1. HTML is not a programming language, but a markup language that defines the structure of the content on a website.

  2. Structuring content on a web page.

  3. In order to build simple websites that we can connect to our smart contracts.

  4. An HTML tag is command that tells the web browser how to handle a specific bit of content.

  5. It begins and ends an element. The opening tag looks like this

    and the closing tag looks like this

    .

  6. An attribute further explains how to handle content inside a given tag.

1 Like
  1. Hypertext Markup Language
  2. It is used to structure a website and its content
  3. We are learning HTML because it is used to create a website which can be used for blockchai.
  4. It is used to structure the website
  5. Opening tag, Closing tag, the content, the element
  6. It contains extra information that does not appear in the actual content
  7. doctype, html element, head element, UTF-8 element, title element, and body element.
2 Likes

HTML is a language that can target specific content on an html page that is in a named element and structure these elements in a pre-formatted way.

HTML is used for creating static content on a webpage.

Because it is used in conjuction with javascript.

An html tag is a name for an tag on an element on an html page which gives you the opportunity to format the content in that element the way you would like to see it

Any element on an html page that contains a tag must include an opening and closing tag to specify where an element must start and end.

An attribute allows you to give an element a non-unique identifier that can be used to target it (or other elements with the same ā€œclassā€ value) with style formatting information.

<!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
- What is HTML?
o HTML (Hyper Text Markup Language) is the code that is used to structure a web page and its content
o It is not a programming language; a markup language that defines the structure of your content
ļ‚§ Consists of series of elements
• A typical element includes an opening tag with some attributes, enclosed text content, and a closing tag.
ļ‚§ Can be used to enclose, or wrap, different parts of the content to make it appear a certain way, or act certain way
- What is HTML used for?
o HTML is used to build a structure for your website, in this case the UI of our smart contract
- Why are we learning HTML?
o To understand how to incorporate HTML to our smart contract
- What is an HTML tag?
o The opening and enclosing of an element
- What is the structure of an HTML tag?
o Consist of the name of the element, opening and closing angle brackets
- What is an attribute?
o An attribute is the extra information of the content that does not wish to be shown with the actual content
- What is the anatomy of an HTML document?
o Combination of the different elements to make up a HTML page
ļ‚§ Start with
ļ‚§ In order with , , , elements
1 Like
  1. What is HTML?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
  6. What is an attribute?
  7. What is the anatomy of an HTML document?

Answers

  1. Hypertext Markup Language.
  2. Not a programming language but rather a markup language used to structure web pages and it’s content.
  3. To connect dapps with the website.
  4. You use tags to create HTML elements such as paragraphs or links.
  5. Starts with a < sign followed by the name of the element, then a space, then the attribute (if any) and finally a > sign.
  6. Attributes define additional characteristics or properties of the element such as width and height of an image. Attributes are always specified in the start tag (or opening tag) and usually consists of name/value pairs like name=ā€œvalueā€. Attribute values should always be enclosed in quotation marks.

Anatomy

1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    It is the protocol that websites use to diplay the frontend of a website.

  3. Why are we learning HTML?
    When we make a nice smart contract you want to be able to show it off with a website.

  4. What is an HTML tag?
    (<></>)

  5. What is the structure of an HTML tag?
    Opening is like this <> and closing is </>

  6. What is an attribute?
    could be a class or src contains an image or link usually written like src= ā€œimageā€

  7. What is the anatomy of an HTML document?
    html head body

1 Like
  1. What is HTML?
    Anwser: HTML is the short name of Hypertext Markup Language used to structure a webpage?
  2. What is HTML used for?
    Answer: It’s used to define a structure of your content
    3: Why are we learning HTML?
    Answer: We learn HTML because it consists oe elements, which we will use to enclose, or wrap different parts of a content to make it appear a certain way or ac t a certain way.
  3. What is an HTML tag?
    Answer:The tags are used to amke a word or image hyperlink to somewhere else.It can be used to italise words, make fonts bigger or smaller.
  4. What is the structure of an HTML tag?
    Answer: It consists of an opening tag wrapped in opening and closing brackets.
  5. What is an attribute?
    Answer: Attributes contain extra information about the element that you don’t want to appear in the actual content.
1 Like
  1. HTML (Hypertext Markup Language) is not a programming language but a markup language that structures the content of the web page. 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 for structuring a web page.

  3. We are learning HTML to learn how to build our own web page.

  4. HTML tag is considered the main parts of an HTML element. Usually, HTML tag has an opening and closing tags except for an empty element. An HTML tag encloses an HTML element.

  5. As discussed in my answer 4, an HTML tag has an opening and closing tags. These tags consist the name of the element, wrapped in an opening and closing angle brackets. Though, the closing tag has a forward slash before the name of the element.

  6. Attributes contain extra information about the element that you don’t want to appear in the actual content. The attribute allows you to give the element a non-unique identifier that can be used to target the element/s that have the same ā€œelementā€ value.

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