HTML Reading Assignment

  1. What is HTML?

HTML means Hypertexted Markup Language, and it’s used to structure a web page and its content.

  1. What is HTML used for?

It’s a language used to define a web page structure, built up with different elements wrapping elements. A static simple web page made just with HTML could contain text, images and links.

  1. Why are we learning HTML?

HTML is needed as a basis before learning advanced languages like javascript, and to undesrtand how a web page works.

  1. What is an HTML tag

A tag is used to define an element, wrapping information within it (by using an opening and a closing tag)

  1. What is the structure of an HTML tag?

<tag_name> as an opening tag and </tag_name> as the closing tag, where tag_name would be the name of the tag. The opening tags can include attributes.

  1. What is an attribute?

It’s an additional property to the tag, that can add a visual modification or funcionality to it, the attribute text itself won’t be visible by the user.

  1. What is the anatomy of an HTML document?

A simple HTML document would be this one:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Hello world, here we are in Ivan on tech forum</title>
  </head>
  <body>
    <img src="images/gogogo.png" alt="Good morning crypto guys.jpg">
  </body>
</html>
1 Like
  1. What is HTML? Its the code is used to structure a web page and its content.

  2. What is HTML used for? Its used for define the structure of contect.

  3. Why are we learning HTML? So we get the basic programming language skills so that it is easier to understand all the different languages as for example solidity.

  4. What is an HTML tag? It is a peace of code used to specify begining and end of the paragraph

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

    End

    1. Opening tag
    2 Closing tag
    3.The content
    4.The Element

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

  7. What is the anatomy of an HTML document? Set of element needed to structure html document

1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    HTML is used to structure content on the web.

  3. Why are we learning HTML?
    It is the most basic component of building web-based content.

  4. What is an HTML tag?
    A tag goes before and after content in an element in order to modify it.

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

  6. What is an attribute?
    An attribute is extra information about an element that does not appear in the content.

  7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
  </body>
</html>
1 Like
  1. HTML is mark up language
  2. It is the code that is used structure pages and its content
  3. We’re learning HTML so we can build a simple website (front-end) that will interact with our smart contract (bank-end)
  4. An HTML tag is the instruction given to the browser to identify the type of content and the way it should be displayed. It indicates where the element starts and where it ends.
  5. The structure of an HTML tag is comprised of the opening tag <> and the ending tag </>
  6. An attribute contains additional information about the element such as style information
  7. The anatomy of an HTML documents:
    Doctype set of rules the HTML needs to follow
    html wraps all the content in the whole website
    head stuff in the page that is not content
    title for your page
    body contains all the content

I’m a newbie. Zero experience :sweat: .Please feel free to correct me or give me any advise/feedback.

1 Like
  1. Hyper Text Markup Language.
  2. IT is a markup language that defines the structure and make up of your content.
  3. It is needed to create webpages.
  4. The enclosing tabs can make a word hyperlink to somewhere else, can italicise words, can make the font bigger or smaller, and so on.
    5.The structure of an HTML Tag is a “Container” for other elements of the web page structure and content.
  5. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  6. It is when all the individual HTML elements are combined to create a HTML page.
1 Like
  1. HTML = Hyper Text Markup Language which we use to create a structure of the web pages.

  2. HTML provides a basic structure of a web page (text paragraphs, head, body, headlines, lists, links and linked objects like photos)

  3. HTML is mostly used as a front end application that users interact with. To deal with a blockchain you need some kind of entry point or web based GUI, often it comes in a form of a dynamic web page.

  4. HTML tags are structural units/elements of the web page. There is a starting and ending tag. The visible part of the page is called content. Tags can also contain attributes, to make easier locating of specific elements/content. Some tags have no ending parts IE so called empty elements.

  5. opening tag + attribute (optional) + content + closing tag

  6. All HTML elements can have attributes, they help to easier locate certain elements of the more complex pages. Attributes can also have value.

  • !DOCTYPE html - requested preamble

  • html element includes all the content

  • head shown on the top left thumbnail (keyword - something that represents your site)

  • meta charset=“utf-8” settings for characters (support most of the languages)

  • title title of your page

  • body all the content of your page

1 Like
  1. What is HTML?
    It is language markup that defines your website content
  2. What is HTML used for?
    to make your content appear on the website in a certain way, or act a certain way
  3. Why are we learning HTML?
    to be able to combine it with crypto programing language and be able to put it all together to work
  4. What is an HTML tag?
    they are elements of html language that have different functions like open and close paragraph
  5. What is the structure of an HTML tag?
    angle brackets with certain element in the midle
  6. What is an attribute?
    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 the basic language that is used to create a website.

  2. HTML is a code that is used to structure a web page and its content. It is a markup language and consists of series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way or act in a certain way.

  3. We are learning HTML because when we learn the basics of web development it will teach us how to build an application that can interact with the smart contracts later when we are going to build Ethereum dapps.

  4. Tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller and so on.

  5. The opening tag consists of the name of the element, wrapped in opening and closing angle brackets. This states where the element begins or starts to take effect. The closing tag is the same as the opening tag except it includes a forward slash before the element name. This states where the element ends.

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

< !DOCTYPE html>
< html>
< head>
< meta charset=”utf-8”>
< title>
< /head>
< body>
< /body>
< /html>

1 Like
1.	What is HTML?
Hypertext Marked Up Language
2.	What is HTML used for?
It is a series of elements that define how the content appear on the webpage
3.	Why are we learning HTML?
To be able to construct simple webpages to interact with the blockchain we are working with
4.	What is an HTML tag?
Tags encase elements.
5.	What is the structure of an HTML tag?
<p> for opening tag and </p> for closing tag
6.	What is an attribute?
Attributes contain extra information about the element that you don’t want to display on the webpage
7.	What is the anatomy of an HTML document?
8.	<!DOCTYPE html>
9.	<html>
10.	  <head>
11.	    <meta charset="utf-8">
12.	    <title>My test page</title>
13.	  </head>
14.	  <body>
15.	    <img src="images/firefox-icon.png" alt="My test image">
16.	  </body>
17.	</html>
Doctype defines the doc as html
<html> defines everything on the html file
<head> header
1 Like

1) What is HTML? a markup language that defines the structure of a web page
2) What is HTML used for? to structure a web page and its contents
3) Why are we learning HTML? to build and understand the funamentals of web
4) What is an HTML tag? keywords that describe how a web page is formatted
5) What is the structure of an HTML tag? tag wrap content and apply meaning to it, e.g.
6) What is an attribute? an attribute is an additional value that modifies the element
7) What is the anatomy of an HTML document? it consists of an opening tag, a closing tag, the content, and the element.

1 Like
  1. It is a Hypertext markup language that defines the structure of your content.
  2. You use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
  3. It will help easier understand how static websites will interact with the blockchain and what and how it happens in the background.
  4. It is used to create an element on a web page, it can contain text, images, or links to other information.
  5. The opening and closing tag ( < p > and < /p >) and between them the content.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
    7.< !DOCTYPE HTML>
    < html>
    < head>
    < /head>
    < body>
    < /body>
    < /html>
1 Like
  1. HTML is a code used to structure a static website.
  2. HTML is used to build a website structure.
  3. We learn HTML to create a small Website that interacts with smart contracts.
  4. The tag is something that defines the type of content we have on the site.
  5. content

  6. The attribute is an extra content you don’t want to appear in the content.
  7. All the HTML document begins DOCTYPE, then HTML element, then the HEAD, then the META CHARSET, then the TITLE, and finally the BODY.
1 Like

Lesson 4: Reading assignment:HTML

Questions:

  1. What is HTML?
    HTML stands for Hyper Text Markup Language. It is a code (not a programming language) that gives structure (text and content) to your webpage.

  2. What is HTML used for?
    HTML is used for webpage development to give a webpage body and structure in the form of text, images, links or any other data.

  3. Why are we learning HTML?
    By learning the basics of webpage development through HTML, we will be able to build applications that can interact with smart contracts.

  4. What is an HTML tag?
    An HTML tag is used for creating an element in a webpage design. The element may contain text, images, links or any other data.

  5. What is the structure of an HTML tag?
    A tag consists of an opening tag and a closing tag together with the content (= text, image, link, other data) in between the tags. Together they form the element that is a part of a webpage.

  6. What is an attribute?
    An attribute is an extension of an element that changes its behaviour or provides metadata.

  7. What is the anatomy of an HTML document?
    The anatomy of an HTML document consists of all of its elements.

In HTML code the anatomy of any webpage looks as follows:

My test page My test 		 image

Whereby:

Is a required pre-amble.

and

Is called the HTML element. It wraps the whole content on the entire webpage and is known as the root element.

and

Is called the head element. It wraps stuff you don’t want your viewers to see and is used for query purposes.

Is the element for the character set that is used to handle any textual content on your webpage.

and

Is the title element that gives your webpage a title and which title also appears on the browser tab and under your bookmark/favourite.

and

Is the body element and it contains all the content you want to show your viewers on your webpage. (Text, images, video’s, games, audio tracks etc.)

1 Like
  1. What is the anatomy of an HTML document?
    The anatomy of an HTML document consists of all of its elements.

In HTML code the anatomy of any webpage looks as follows:

< !DOCTYPE HTML>
< html>
< head>
< /head>

< body> < /body> < /html>

Whereby:

< !DOCTYPE HTML>
Is a required pre-amble.

< html> and < /html>
Is called the HTML element. It wraps the whole content on the entire webpage and is known as the root element.

< head> and < /head>
Is called the head element. It wraps stuff you don’t want your viewers to see and is used for query purposes.

Is the element for the character set that is used to handle any textual content on your webpage.

< body> and < /body>
Is the body element and it contains all the content you want to show your viewers on your webpage. (Text, images, video’s, games, audio tracks etc.)

1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language. HTML is not a programming language; it is a markup language that defines the structure of your content. 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.

  1. What is HTML used for?

Is the code that is used to structure a web page and its 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. 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.

  1. Why are we learning HTML?

Because it is the first step in order to know how to create a front-end application or GUI. For blockchain developers, the back end will be he different blockchains used in conjunction with the front end.

  1. What is an HTML tag?

It is a way to specify the information that is going to be displayed. For example, there is an opening paragraph tag (

) and a closing paragraph tag (

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

The most basic ones consists on the name of the element wrapped by an opening and a closing angle brackets. The closing tag also has / as a sign that it is a closing tag.

  1. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content. A basic example for a text one is one that contains a name (class) and is followed by an = sign and followed by the value within brackets (“…”).

  1. What is the anatomy of an HTML document?

• — doctype. It is a 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, like keywords, a page description that you want to appear in search results, CSS to style our content, character set declarations and more.
• — This element sets the character set your document should use to UTF-8, which includes most characters from the vast majority of written languages.
• — the element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.
• — the element. This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks, or whatever else.

1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language.

  1. What is HTML used for?

HTML is being used to structure an web page and it’s content.

  1. Why are we learning HTML?

To understand the basics of web development, which we will need later to create DAPPs.

  1. What is an HTML tag?

They are being used to create an HTML element. There are two types of tags an opening and an closing tag.

  1. What is the structure of an HTML tag?

An opening and an closing tag wrap up content inside an HTML element.

  1. What is an attribute?

They contain extra information about the element which is not being wanted to displayed on the web page.

  1. What is the anatomy of an HTML document?
<html>
  <head>
    <meta charset="utf-8">
    <title> We are learning HTML</title>
  </head>
  <body>
    <img scr="images/firefox-icon.png" alt="My test image">
  </body>
</html>
1 Like

1.HTML is a language is used to help CSS and Java script technology .
2.it allows users to create the structure, sections, paragraphs, headings, links, and blockquotes and applications.
3. to learn Java scripts, C++, eventually block chain programming and development.
4.the HTML tag represents the root of an HTML document.
5.the structure of html composed of 3 parts title, head, and body.
6.html attribute are a modifier of an html element.
7.every html documents have 2 elements
head element and body element

1 Like
  1. Hyper Text Markup Language. It defines the structure of your content.
  2. On it’s own it is used to create simple, static websites (text, images, videos, links, lists, etc.)
  3. To understand JavaScript we need to lay down some web development fundamentals. JavaScript is turning simple, static websites into interactive sites.
  4. HTML tags are wrapping a certain content and making it appear or act in a certain way. Normally (there are exceptions) we use an opening and a closing tag to define the content.
  5. HTML tag consists of an opening tag, then the content itself and finally a closing tag to define the end of the element.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content. They allow you to give an element a non-unique identifier that can be used to target it (and any other elements with the same attribute).

1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    A markup language that defines the structure of our page content.

  3. Why are we learning HTML?
    To present our programming content in a defined way.

  4. What is an HTML tag?
    A way of making content appear or act in a particular way

  5. What is the structure of an HTML tag?
    An opening tag wrapped in opening and closing angle brackets stating where the element begins or takes effect, followed by the element itself and ending with the closing tag which is the same as the opening tag but has a forward slash before the tag…

  6. What is an attribute?
    Extra information about the element that one doesn’t want to appear in the content.

  7. What is the anatomy of an HTML document?
    Doc Type,
    Root Element or the element that wraps the content of the entire page.
    Head Element or container for all the stuff you want to include on the page that isn’t the content shown to the viewers. Things such as style characters, keywords, page descriptions, declarations etc.
    Character set - how type appears, usually utf-8
    Title - also shows on search results and bookmarks.
    Body- shows all the content you want the viewers to see including text, video, audio, games etc.

1 Like

(1 & 2) HTML stands for Hypertext Markup Language and is designed to give structure to your web content.

(3) We are learning HTML because it is a simple yet effective way of familiarizing someone with inputting code, It will provide a foundation for programmers to build off of by giving them a skill set that is marketable on all levels while providing them the opportunity to get under the hood on a very basic, beginner friendly level

(4 & 5) A HTML tag is the bracket wrapped text that represents the element being used. The example of the structure of a tag is as such:

PARAGRAPH

(6) An attribute is used to add information to a line of HTML that is designed for only the programmer to see.

(7) <

<meta charset="utf-8">

  <title>

    Strange Vessel

  </title>
  <p>This is a website for craft beer glassware</p>
  <h1>Our List!</h1>
  <ul>
    <li>Goblet</li>
    <li>Snifter</li>
    <li>Shot</li>
  </ul>
>
1 Like