HTML Reading Assignment

  1. HTML is Hyper Text Markup Language.
    2)HTML has a series of elements, which you use to enclose, or wrap, different parts of a content to make it appear a certain way, or act a certain way.
  2. We are learning HTML because it is part of the front end that will power smart contracts that are on the back end of a protocol.
  3. An HTML tag is used to create an element.
  4. There is an opening tag which consists of the name of the element (e.g , p), wrapped in opening and closing angle brackets, there is also a closing tag which is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends — in this case where the end of the paragraph is.
  5. An attribute contains extra information about the element that you don’t want to appear in the actual content.
  6. a) doctype b) the element c) the element d) the element e) f)the element
1 Like

What is HTML?
HTML (Hypertext Markup Language) is the code that is used to create a scaffolding and structure to a web page and its content.

What is HTML used for?
The Hypertext Markup Language is used to display webpage renderings to the user’s browser.

Why are we learning HTML?
To manifest the user interface for our cryptocurrency smart contract.

What is an HTML tag?
A Hypertext Markup Language tag is a pair of elements that tell the browser how to handle the contents between them.

What is the structure of an HTML tag?
The Hypertext Markup Language tag structure is denoted with a opening <> and closing </> mechanism, with the name of the tag that determines what it does and that tells the browser how to handle contents between the tags.

What is an attribute?
A attribute is a name value pair that can give ancillary information and detailed designation for the Hypertext Markup Language tag

What is the anatomy of an HTML document?
html
head
title…/title
script…/script
/head
body…/body
/html

The script tags are not officially apart of the anatomy of the HTML document, but lets be real here, that is the tie to javascript and css scripts and we will be using that heavily in this course I suspect.

1 Like

What is HTML?
HTML is a markup language that indicates how various parts of content should be structured and displayed on a web page.

What is HTML used for?
HTML is used to instruct browsers how to display web pages.

Why are we learning HTML?
We are learning HTML to be able to construct web pages that will act as a front end for our blockchain projects.

What is an HTML tag?
HTML tags are normally used in pairs (one marks tag begin and the other tag end) and within these tags is the content the tag is referring to. The tag itself is a code for how to treat the enclosed content.

What is the structure of an HTML tag?
At its most simple, Tag structure consists of an opening tag, followed by some content, followed by a closing tag. An opening tag is one or more characters enclosed in angle brackets. The closing tag is the same but with a forward slash before the characters.

What is an attribute?
An attribute can be added after the tag identifier but within the angle brackets. Attributes give the browser extra information about the element, but this does not appear in the actual content.

What is the anatomy of an HTML document?
The HTML document is a structured template that is passed to the browser to build the web page. It basically runs through the page from top to bottom describing:

  • what encoding is used
  • a tag saying “start of HTML”
  • a 'Head" section containing page title and meta information (additional information that is not content)
  • a 'Body" section that contains the content to be displayed.
  • Closing tags for “/body” and “/html” showing that the page information is finished.
1 Like
  1. Hyper Text Markup Language.

  2. Used for creating web pages.

  3. To create front end or user interface capable of opening in a browser.

  4. Tag consists of HTML element name enclosed in opening and closing angle brackets. Tags holds information how to display the enclosed content.

  5. Element name in opening and closing angle brackets. Content then followed by Closing tag which consists similar to staring tag but forward slash is added before element name. Can have attribute(s) name and value too.

  6. Attribute doesn’t supposed to appear as content on rendered page but hold extra information about element which can be used to style it or can be used to control its behaviour.

  7. HTML document consists of number of elements enclosed in opening and closing HTML tag. There are two parts i.e. Head and Body. Head holds information that is not required to be shown to user e.g. keywords for search, title of the document etc. Body holds the content in number of different tags i.e. paragraph, header, image, anchor, list etc. Based upon the enclosing tags content will be rendered appropriately by browser.

1 Like
  1. Organizes the web page

  2. Like the senior editor of a publishing company, it places the words, images, headings and paragraphs

  3. Wouldn’t be able to make a web page without it.

  4. Tags identify where the content begins and ends

  5. opening tag, (attribute if any), content, closing tag= element

  6. Attribute- extra info not meant for viewing on main page

  7. !DOCTYPE html- OG
    < html >- cornerstone
    < head >- what it is
    < body >- what it look like

1 Like

1–HTML is a Markup Language; not a coding language. HTML defines the structure of text on a webpage.
2–HTML is used to specify the layout and style of text on a page.
3–Using HTML allows for the creation of a page to direct more complex code.
4–An HTML tag is a fundamental code item that houses text and dictates text structure on a page.
5–HTML tags are the opening and closing structures of HTML elements. ex. opening tag – … closing tag – .
6–An attribute is a modifies or provides functionality to an HTML element. ex. Neat Page … In this example ‘href=“www.academy.ivanontech.com”’ is the attribute of our element.
7–HTML anatomy consists of the opening HTML tag, the head, and the body. The head contains information that will not appear as content on a page. The body of an HTML page contains all text features that will appear on the page.

1 Like
  • What is HTML? Hypertext Markup Language is a markup language (not a programming language)
  • What is HTML used for? it is used to structure the content on a webpage
  • Why are we learning HTML? so we can define the front end of our apps, to enable user interaction
  • What is an HTML tag? a HTML tag is a part of the element that 1. specifies the name of the element (e.g. p) and delimits the beginning of the element and 2.; delimits the end of the element
  • What is the structure of an HTML tag? and where x is the element name
  • What is an attribute? an attribute allows you to specify extra information about the element, this information does not appear in the actual content
  • What is the anatomy of an HTML document? it is the combination of elements in a specific order that defines the whole html page, its sections (e.g. header and body) and the the elements within each section
1 Like
  1. What is HTML?
    Is a markup language that defines the structure of content,
  2. What is HTML used for?
    It is used to structure a web page and its content.
  3. Why are we learning HTML?
    Because HTML is used on web development, and we should be able to build an application to interact with our smart contract.
  4. What is an HTML tag?
    Tags can make a word or image hyperlink to somewhere else, can italicize words, and can make font bigger or smaller, and so on.
  5. What is the structure of an HTML tag?
    It will have an opening tag < > and a closing tag </>
  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?
Is used to make everything work right It wraps all the content on the entire page. 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 contains all the content that you want to show to web users when they visit your page this element will handle any textual content you might put on it by reading most characters from the vast majority of human written languages.
1 Like
  1. HTML is a HyperText Markup Language
  2. HTML is used for placing some content on the world wide web
  3. To be able to create our own web pages/websites
  4. HTML tag is what makes the browser recognize what type of content it has to show

Here is structure of an HTML tag


or

  1. An attribute is what comes inside of an opening HTML tag

Example
’

Here is some text

’
  1. HTML document has a head and a body enclosed in HTML tag
   <head>
   </head>
   
    <body>
   </body>

What is HTML?
It is HyperText Markup Language

What is HTML used for?
It is used for instructing web browser what webpage content to display

Why are we learning HTML?
First step of learning programming. And we will need frontend UI for blockchain. We will need to learn web development for our blockhain’s frontend UI

What is an HTML tag?
HTML tag defines HTML elements on a HTML page

What is the structure of an HTML tag?
Opening tag - content - element - closing tag

What is an attribute?
Attribute is extra info/metadata of a HTML tag that won’t be displayed on the webpage

What is the anatomy of an HTML document?
The anatomy of a HTML document consists of

  1. Hypertext Markup Language = HTML
  2. HTML Is a markup language that defines the structure of your content .
  3. We are learning HTML as it give us a front end web interface to our back end smart contract.
  4. A tag is what makes the browser recognise what type of content it has to show and in what way.
  5. open

    and closed

    paragraph for example.
    6.An attribute specifies some additional properties regarding the content included inside a tag.
My test page My test image
  1. What is HTML?
    HTML is a programming language (ok ok, its a markup language), which can be interpretet by a browser to show a website.

  2. What is HTML used for?
    HTML is used for programming websites.

  3. Why are we learning HTML?
    We are learning HTML, because we have to create a frontend for users
    to interact with smartcontracts.

  4. What is an HTML tag?
    A HTML tag is an instruction for a browser, so that the browser knows, what to do.

  5. What is the structure of an HTML tag?
    Beginning with an opening tag, which contains a command inside brackets.
    And ending with a closing tag, which contains an additional slash bevore the command.
    We can use the tags to include instructions inside of them.

  6. What is an attribute?
    An attribute is an option, which can be applied to the command.
    It has to be placed into the opening tag after the command inside the brackets.

  7. What is the anatomy of an HTML document?
    An HTML document begins and ends with an HTML tag.
    Inside this tags, there should be a header and a body tag.
    In the header we should place instructions, which have general effects on the website.
    The specific look and content of the website should be in the body tag.

Q1 & Q2 Instructions for browsers which define the structure and content of a web page
Q3 To interface with a blockchain project
Q4 Tags define the start and end and show the content type of an element
Q5 <element name>…</element name>
Q6 additional info not visible to the user
Q7 < !DOCTYPE html >
< html >< /html > contains entire page
< head >< /head > not visible info
< title >< /title > describes page, appears in browser tab
< body >< /body > all visible content
< meta charset=“utf-8” > character set, just do it!

  1. What is HTML?
    A markup language which allows digital content be structured in a digital file and processed via a web server and displayed as a web page in a web browser.

  2. What is HTML used for?
    Used for creating web pages and customizing the digital content inside the web page.

  3. Why are we learning HTML?
    To be able to create and display our digital content on the world wide web.

  4. What is an HTML tag?
    A tag establishes the name of an HTML element.

  5. What is the structure of an HTML tag?
    Consists of 2 tags:
    The opening tag starts with (wrapped) in opening and closing angle brackets. The closing tag is same as opening tag with an added / (slash) before the element name.

  6. What is an attribute?
    Attributes contain extra information about the HTML element that you DON’T want to appear in the actual content of the web page.

  7. What is the anatomy of an HTML document?
    A collection of individual elements which are combined to form an entire HTML page.

Cheers !!

1 Like

HTML Reading Assignment

What is HTML?

  • HTML (Hypertext Markup Language) 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 the 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.

What is HTML used for?
It is used for building websites.

Why are we learning HTML?
learning HTML is like learning the front interface of a blockchain project behind it.
in order for a blockchain project or dapp to work for the general public, it indeed needs a fantastic UI to capture users.

What is an HTML tag?
In HTML a tag is used for creating an element. The name of an HTML element is the name used in angle brackets such as

for paragraph. Note that the end tag’s name is preceded by a slash character, “

”, and that in empty elements the end tag is neither required nor allowed.

What is the structure of an HTML tag?
The opening tag: This 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 — in this case where the paragraph begins.
The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends — in this case where the end of the paragraph is.

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

A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
The attribute name, followed by an equals sign.
Opening and closing quote marks wrapped around the attribute value.

What is the anatomy of an HTML document?

<!DOCTYPE html> — doctype. historical artefact that needs to be included for everything to work right.

<html></html> – <html> element. This element wraps all the content on the entire page, and is sometimes known as the root element.

<head></head> — <head> 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 includes things like keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.

<body></body> — <body> 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.

<meta charset="utf-8"> — this element sets the character set your document should use to UTF-8, which includes most characters from the vast majority of human written languages. Essentially it can now handle any textual content you might put on it. There is no reason not to set this, and it can help avoid some problems later on.

<title></title> — <title> 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/favourite it.

1- Is a markup language

2- HTML is the code used to instantiate every elements on your browser

3- Because we will use it to represent the view of all our dapps

4- It’s a code wrapped by <> in charge of defining an element on the page

5- There are two kind of tags, open tags and close tags
Open tags are wrapped by angle brackets and have the name of the element at first followed by attributes
Close tags are like open tags but without attributes and started by a forward slash after the angle bracket whose is in charge of opening the tag
Some times we can have Open tags without content and close tags, they are called empty elements

6- Attributes are chunks of code defining an element view or behavior, they are inside open tags and are composed by a key and a value

7-

<!DOCTYPE html>
<html>
 <head> </head>
 <body> </body>
</html>

Hi Can anyone verify the below?

  • What is HTML?
    Hyper Text Market Language

  • What is HTML used for?
    Its a code that is used to structure a content or a web page. It s the skeleton of a website

  • Why are we learning HTML?
    Its the skeleton of any website structure and its content

  • What is an HTML tag? Hidden Key words or instructions that define how the content needs to look like based on your coding ?

  • What is the structure of an HTML tag? elements Tags that would define the web page according to its coding- Title Intro Middle and conclusion

  • What is an attribute?
    An attribute is a Key additional hidden instruction that won’t show in your content but formats it

  • What is the anatomy of an HTML document?
    its contains 4 elements
    opening tag+ closing Tag+ content which compose the Element of it all

1. What is HTML?
HTML stands for Hyper Text Mark-up Language.
2. What is HTML Used For?
HTML Provides the framework for the layout of a webpage.
3. Why are we learning HTML?
We are learning HTML to allow users to interface with Smart Contracts using a Web Page.
4. What Is an HTML tag?
HTML tags are hidden keywords within a webpage that define how a web browser must format an display the content.
5. What is the structure of an HTML tag?
Most HTML tags have two parts, an opening and a closing part. ie. < html > being the opening tag and < /html > being the closing tag.
There HTML tags that are an exception to the rule and dont require a closing tag for example. < img >
6. What is an attribute?
An attribute is allows you to customise a tag and are defined with an opening tag. Attributes are often assigned a value using an equals sign. Most attributes are optional for most tags, and are only used when you want to change the something about the default way a tag is displayed in the browser.
7. What is the anatomy of an HTML document?
The anatomy of an HTML document is as follows:
< htm l>
< head >
< title >My Title Page< /title >
< /head >
< body >

        This is where my web page content goes

< /body >
< /html >

At the last item I think the question was more targeting the overall html document structure (e.g. head and body, see the replies just before and after).
The element (tag content tag) is a part of it and several elements compose the overall structure.

1 Like
  1. & 2. HTML stands for HyperText Markup Language and is used define the structure of a webpage’s content

  2. Knowing how to use HTML will allow us to build attractive, user friendly web sites to service cryptocurrency users and customers.

  3. Opening and closing tags are used to define and create elements within the page (text attributes, titles, headings, paragraphs, ordered and un-ordered lists, images, links …)

  4. Tags wrap around and define the elements which make up a web page … for example to define a paragraph the opening tag is <p> and closing tag is </p>

e.g. <p>Ivan's coding course</p>

  1. Attributes specify additional properties elements (which aren’t specified by tags)

  2. An HTML document is a combination of elements that defines a web page.

Opens with:
<html>

Then adds all elements each wrapped by opening and closing tags

these could be a header, body (which might contain paragraphs, images, links, interactive elements such as payments … etc)

Then ends with:
</html>