HTML Reading Assignment

I don’t know whether I am going to help someone with such a basic assigment :roll_eyes:

  1. What is HTML?
    Is not a language. It’s a markup use for the crwation of webpages.

  2. What is HTML used for?
    As I just said, it is used for web pages

  3. We are learning HTML because we need to know how to link our smart contract to a webpage

  4. a tage is, for example:

  5. It structures is the following:

    I am a learner

  6. Within this structure, you can add an attribute which is not going to be seen by your users. Its a meta info. It goes within the tag

    TEXT

  7. Anatomy

So many details to remember!
1 Like

1 What is HTML? HYPERTEXT MARK UP LANGUAGE
2 What is HTML used for? to construct the structure of a web page’s content (text, picture, size and style of fonts, links, video etc.)
3 Why are we learning HTML? We need to know how to build web pages, as it is necessary to build the front end of apps.
4 What is an HTML tag? It is the part that starts and finishes an element. Provides a name for the element.
5 What is the structure of an HTML tag? Opening tag (indicates the start of the element),followed by the content, followed by the closing tag (indicates the end of the element)
6 What is an attribute? Provides a name and a value for the element. Provides information that is not visible to the the viewer of a web page, but is important for the person building a site.
7 What is the anatomy of an HTML document? !Doctype html , html , head , meta charset=“utf-8” , title /title, /head , body , img src="…" alt=“My image which consists of (description)”, /body, /html>

1 Like

What is HTML?
It is not a programming language, it’s a markup language that defines the structure of the content we are writting on our page.

What is HTML used for?
It is used to encode what goes where, like paragraphs, text emphasis, images, links, lists, etc. It’s also used to create a title to the page that will show up on search results and to define basic styling information for all the content. I guess it is used to set the key words to help search engines as well.

Why are we learning HTML?
Any app, be it Dapp or otherwise, needs an interface that users will use to interact with it. So we need to be able to create a website that can access everything the user will need to make use of the app/smart contract.

What is an HTML tag?
The tag is the part of the element that defines what kind of element it will be (paragraph, list, image, heading, etc)

What is the structure of an HTML tag?
It should always be used as the tag name inside angle brackets, followed by content and finished with the closing tag which is the same as the opening tag but with a forward slash just before the tag name: < p>element< /p> (spaced out so that it shows in this text)

What is an attribute?
An attribute is a extra information that is not intended to be shown in the actual content and that is placed inside the opening tag, just a space after the tag name. It can be used to easily target an element or a group of elements and style them at once, or give them some kind of action I imagine.

What is the anatomy of an HTML document?
A document has to start with the historical < !DOCTYPE html>, then the < html> opening tag and the closing tag in the end. Everything else should go in between. Then the < head> tags that will have the title and styling information in the middle of it, character set, key words, etc. And then the < body> tags that will wrap all the content that will actually be shown on the page. The closing tag for html that I referred in the beggining comes only after the body closing tag.

1 Like
  1. What is HTML?
    A markup language.
  2. What is HTML used for?
    To structure your content.
  3. Why are we learning HTML?
    So that we can interact more easily through an interface.
  4. What is an HTML tag?
    A descriptive part of an element which alters the content.
  5. What is the structure of an HTML tag?
    For opening tag: opening bracket + type + closing bracket. For closing tag: opening bracket + type + forward slash + closing bracket. E.g. …
  6. What is an attribute?
    Additional meta information about the element.
  7. What is the anatomy of an HTML document?
    An HTML document should contain the following elements, starting with defining the DOCTYPE, followed by html, which contains a header and body tag. The header typically cointains meta data such as the characterset and a title of that page. The body contains the content.

1- HTML stands for Hypertext Markup Language.
2- HTML is a language used for creating and structuring websites.
3- We’re learning HTML in order to have a base for Javascript and other programming languages, as well as to be able to interact with applications in the browser inside an website.
4- HTML tags are used to open and close the element desired.
5- The HTML tags consists of the name of the element enclosed with opening and closing angle brackets.
6- An attribute is something inserted inside the opening tag to give the element some function, like establishing an hyperlink.
7- The anatomy of an HTML document is the structure of elements necessary to make a website work.

1-2 .It is a markup language that is necessary for expressing our contents.
3.After coding we will need to publish our applications…Html is the paper and the ink if our thoughts.
4-5.Html tag is; a structure which consists of open and closed angle brackets. categorize our contents…
6.Attribute ;it is the information about content, viewer doesnt see it on the page. it directs you to another site by the link.
7. , , , ,,,, <img …, ,

1.) Hypertext markup language
2.) It is used for creating webpages and web applications
3.) To enable us to build a web application for our smart contracts/applications to interact with
4.) HTML tags are hidden keywords within a web page that defines how your web browser formats and displays the content
5.) ‘< p >’ CONTENT ‘</ p >’
6.) Attributes contain extra information about the element that you don’t want to appear in content displayed
7.) HTML consists of two elements.
Head elements - webpage title and general commands
Body elements - The main HTML text

Hey Ivan! I’m finally back online!

  1. HTML - Hypertext Markup Language
  2. HTML is a markup language for presenting content on the web.
  3. HTML is the front-end to our 2-part blockchain solution.
  4. A tag is an identifier that represents the beginning or end of an element.
  5. Beginning elements are encapsulated with < and >, ending elements mostly are < and />
    for example - <element> CONTENT </element>.
  6. Attributes are complements to an element. They describe further characteristics of the element.
    Attributes will follow a colon preceding the element being encapsulated.
    <element:attribute> CONTENT </element>
  7. The HTML documents consists of a file with the htm or html extension.
    Within this file are several elements. They are usually ordered in the following manner:
    < html >
    _ < head >_

_ < /head >_
_ < body >_

_ </ body >_
< /html >

  1. Hypertext Markup Language is a formatting language and not a programming language.
  2. Displaying formatted content on a web page.
  3. Knowledge of HTML helps us to understand the makeup of a web page and to structure it correctly.
  4. An HTML Tag defines the elements types within an HTML page or template.
  5. There is an opening and a closing HTML Tag for each element. The Tag is contained in Angle Brackets.
  6. An attribute defines the characteristics of an HTML Tag.
  7. An HTML document as a minimum has a document definition Tag, a Header and a Body as set out below.
<!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. HTML is a hypertext markup language.
  2. HTML is used to structure a webpage and its contents.
  3. We are learning HTML for web development.
  4. An HTML tag is used for creating an element.
  5. The opening tag consists of the name of the element wrapped in opening and closing angle brackets. The closing tag is the same, except it includes a forward slash before the element name.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  1. What is HTML?
    HTML stands for Hypertext Markup Language. It is used to structure web content.
  2. What is HTML used for?
    it is used for structuring the content
  3. Why are we learning HTML?
    HTML is the web standard, today it is not used directly but helps us understand the basic front end data structure.
  4. What is an HTML tag?
    It defines an element.
  5. What is the structure of an HTML tag?
    Opening, closing tabs and the content between the tabs
  6. What is an attribute?
    An attribute is the assigned specific value for a tag which makes it easier to locate it for larger datasets.
  7. What is the anatomy of an HTML document?
    an HTML document consists of following tags:
  • 1st layer as root element,
  • 2nd layer to define webpage attributes
  • 3rd layer to define title of the page on browser
  • 2nd layer to define the content inside the page
  • 3rd layer h, p, img, ul are some of the elements for the page
  1. What is HTML?
    HyperText Markup Language
  2. What is HTML used for?
    HTML is used to set the structure of text, to make it more usable for expression and perception.
  3. Why are we learning HTML?
    We need some frontend layer in between of user and the backend (i.e. smart contracts).
  4. What is an HTML tag?
    It’s a basic element of HTML structure.
  5. What is the structure of an HTML tag?
    <tagname attribute="att value">content</tagname>
  6. What is an attribute?
    Attribute is a metadata about the HTML element.
  7. What is the anatomy of an HTML document?
    It’s the basic structure of an HTML page.
  1. What is HTML?
    HTML stands for : Hypertext Markup Language

  2. What is HTML used for?
    It’s used to structure the content of a website

  3. Why are we learning HTML?
    In order to communicate with our audience we need to link the Smart Contract to a website, the only way to structure the content of that website is by HTML Language. That’s why it’s so relevant to learn HTML.

  4. What is an HTML tag?
    An HTML tag ( < > ) is what HTML Language uses to introduce ( < p > ) and close ( < / p > ) content into the page you are building.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag is the following:
    An opening structure “< >”
    &
    A closing structure “< / >”

  6. What is an attribute?
    An attribute is a tool that HTML Language uses to allow you to introduce extra information to the website you are building. For instance, if you need to add extra information to an specific part of your website, the “attribute” command and it’s differents values will allow you to do that.

  7. What is the anatomy of an HTML document?
    If you remember the image below, you will see the anatomy of a single paragraph of an HTML element


    Now, as you know, a document is formed by the combination of paragraphs (made by words). So since HTML is also a Language, the anatomy of a HTML document is the combination of all the Elements (the equivalent of paragraph in this Language) you have created in your website, it looks like this…

<!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. What is HTML?
HTML (Hypertext Markup Language).
HTML is not a programming language, it is a markup language that defines the structure of your content.

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

3. Why are we learning HTML?
You should be able to build things that work. Building a website thats interact with the blockchain.
We are building an application that can interacts with your Smart Contracts, the back-end. Our front-end will be our simple websites, that’s why we need to have the knowledge of HTML coding.

4. What is an HTML tag and its structure?
We have an opening HTML tag and a closing HTML 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.

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

An attribute should always have the following:

  • A space between it and the element name or the previous attribute.
  • The attribute name, followed by an equals sign (=).
  • Opening and closing quotation marks wrapped around the attribute value ("").

6. What is the anatomy of an HTML document?

  1. First you have but no one cares about this, and they are just a historical artifact that needs to be included for everything to work right.
  2. — the element. This element wraps all the content on the entire page and is sometimes known as the root element.
  3. — 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 (example: keywords, discription for search results, CSS to style our content, character set declarations, ...).
  4. — This element sets the character set your document should use to UTF-8, which includes most characters from the vast majority of written languages. This is added inside the element.
  5. — 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/favourite it. Also added inside the element.
  6. — the element. This contains all the content that you want to show to web users when they visit your page. After the element.
...
<body>
</body>

HTML and the Web

  1. What is Html? HTML is an acronym that stands for Hypertext Markup Language.

  2. What is Html used for? It is used for structuring a web page and its content.

  3. Why are we learning Html? We are learning HTML so that we can build our own web pages.

  4. What is an Html tag? The HTML tag indicates where the content of the element begins and ends.

  5. What is the structure of an Html tag? An HTML tag consists of the name of the element wrapped in opening and closing angle brackets. This defines where the element begins. Where the element ends is where the closing tag includes forward slash before the name of the tag.

  6. What is an attribute? An attribute contains extra information that you don’t want to appear in the actual content of the web page,.

  7. What is the anatomy of an Html document? HTML elements are combined to form an entire HTML page. Starting with the doctype element: <!doctype html> is a historical artifact that simply needs to be included for everything on the webpage to work correctly. This element wraps all the contents of the entire page and is sometimes known as the root element. The head element acts as a container for all the things you want to include in your webpage that is not the content you want the viewers of your page to see. This element sets the character set for your document to UTF-8 which includes most characters from the vast majority of written languages. There is no reason not to set this and it can help you avoid problems later on. This is the title element and it sets the title of your web page that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it. This element contains all the content that you want to show web users when they visit your web page. This includes text images videos games playable audio tracks, etc.

HTML ( **Hyper **text **Markup **Language) is a code.

Used to structure a web page and its content.

Can fix or do sites alone without any other platform .

HTML will help as well with CSS AND JavaScript.

Tags used for creating 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 TAG can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

Structure of an HTML tag-

The opening tag: This consists of the name of the element (in this case, p), 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 paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.

Attribute add extra information or functionality inside the web site .

7

Anatomy of HTML document:

<;!DOCTYPE >— The doctype, needs to be included for everything to work right.

; — the element. This element wraps all the content on the entire page and is sometimes known as the root element. — the 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 and 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. 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. ; — the title element 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. ;; the body element 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. HTML is a markup language that defines the structure of a web page’s content.
  2. HTML is used to structure a web page and it’s content.
  3. We are learning HTML because blockchain works on the backend and HTML helps with front end for users.
  4. An HTML tag is the opening and closing of an element.
    5.The structure of an HTML tag is an opening tag and closing tag.
    6.An attribute is an identifier of an element that does not appear in the content.
    7.The anatomy of an HTML document is, document type, html element, head element, mete element, title element and body element.

What is HTML?
HyperText Markup Language.

What is HTML used for?
It is used to code for a website.

Why are we learning HTML?
Because it is the way we as programmers can communicate with a webpage.

What is an HTML tag?
Tag wraps a code in order to help the platform identify a command.

What is the structure of an HTML tag?
It has an opening and a closing tag such as

and

. A tag that does not need to wrap a content such as does not have a closing tag.

What is an attribute?
Attribute is a description of a tag. An examplary format is Telegram

What is the anatomy of an HTML document?
Anatomy of an HTML document is basically wrapping up a whole list of codes as a whole document in order to make all elements, tags, and attributes into one single webpage.

  1. HTML is a markup language which defines what all components are there in the webpage.
  2. It is used to make a structure of our web page.
  3. We are learning it so that we can make a frontend for our applications so that users canintract with it.
  4. An HTML tag shows starting or ending of an element.
    5.An oopening HTML tag is written in angular brackets and closing HTML tag also includes an forward slash. These tags wrap the content of the element.
  5. A tag gives some additional informaation about the element which we do not want to include in the actual content.
My test page My test image ```
  1. What is HTML? Hypertext Markup Language

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

  3. Why are we learning HTML? HTML is used on all web pages and needed to layout attributes and structure to the web page so that it is comprehensible

  4. What is an HTML tag? The tag names the element and marks the beginning and end of the element for example

    indicates the beginning of a paragraph and

    indicates the end of the paragraph. This will display a properly formatted paragraph

  5. What is the structure of an HTML tag? <> and </>

  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?