HTML Reading Assignment

  • What is HTML?
    HTML is a markup language that defines the structure of a web page and its content
  • What is HTML used for?
    to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way
  • Why are we learning HTML?
    to program static web pages
  • What is an HTML tag?
    opening and closing tags are consists of the name of the element wrapped in opening and closing angle brackets stating where the element begins and where the element ends.
  • What is the structure of an HTML tag?
    tags are consists of the name of the element wrapped in opening and closing angle brackets
  • What is an attribute?
    Attributes contain extra information about the element
  • What is the anatomy of an HTML document?
    the<html>element the<head>element the<title>element the<body>element
1 Like
  1. HTML is HyperText Markup Language, a language used to design web pages by communicating to your browser how to display different elements.
  2. HTML is used to interface with your browser so that webpages can be constructed and displayed properly to end users, in an efficient and simple manner.
  3. We are learning HTML to design basic interfaces and UIs for our smart contracts / dApps and other code projects that we are working on, or even to develop a web page for our project should it become necessary.
  4. HTML tags are calls which modify how the browser will display your inputted content.
  5. An HTML tag has brackets, a name, and a closing tag.
  6. An attribute is extra information included in the tag that is only visible from the HTML code and not in the browser.
  7. The anatomy of an HTML document is comprised of all the necessary tags to display a web page properly, nested in order.
1 Like
  1. its a language that we used to deliver our message in a structured from, so that the browser can recognised it. in other words it helps us as communication tool between us and the browser.
  2. HTML is used as tool/code, for proper delivery of structured text in a Browser. Since Most of the Browser are HTML based.
  3. It is the most basic form of language, to start with in the world of internet. Since browser communicate only through HTML. its is a good start to design our own website, makes you independent.
  4. HTML tags is used to format the webpage. it is used to make you content appear in a certain way or format. e.g <ul> cooler </ul>.
  5. structure of HTML tag is as follows. it start with <> and ends with </>.
  6. Attribute is basically a phrase of extra information that defines the element. it is usually found int the begining of the tag. it consist of attribute name and attribute value.
  7. Anatomy of HTML is head, title and body.
1 Like

1 What is HTML?
html is a markup language not a programming language

2 What is HTML used for?
it is used to organize(structure) the content on a web page

3 Why are we learning HTML?
to create simple web pages which perhaps will interact with a blockchain

4 What is an HTML tag?
it is a component of an element and it represents instructions to structure the content

5 What is the structure of an HTML tag?
the open tag <> and the closing tag </>
the nesting tag < p>< strong>…< /strong></> inside an existing element
the void tag like wihch doesn’t have to have a closing tag

6 What is an attribute?
it is a component of the tag
it gives your content extra features

7 What is the anatomy of an HTML document?
we have the html element which envelops all the page content
head - a container for info that isn’t seen by the end user. it could be certain keywords or page descriptions
body - the container for the content that is seen by the end user
meta charset utf-8 it’s a character set to handle the majority of human languages1
title - title of the page which appears in browser tab

1 Like
  1. Hypertext Mark-up Language
  2. HTML is the code used to structure a webpage
  3. Structure of websites
  4. Defines certain parts of the HTML document
  5. Element contains opening tag, content and closing tag
  6. Contain extra info about element
  7. doctype, html element, head element, utf-8, title element and body element
1 Like
  1. What is HTML?

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

What is HTML used for?
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.

Why are we learning HTML?
to understand how individual elements are combined together which will form an entire HTML page which in trun shows up in internet browser to display intended information to user.

What is an HTML tag?
HTML tags are pointers which represents starting and ending of each HTML elements.

What is the structure of an HTML tag?
starting of a TAG represents by tag element name wrapped with <> and ending tag of it will have </> wrapped around same element name.

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?

anatomy of HTML page looks like followings, it contains, HTML tag, a header, title of the page and its body.

<!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
  1. HTML is a markup language, not a programming language. It is used to structure the website and it’s contents. HTML stands for Hypertertext markup Language.
  2. HTML is used for web page development. It’s the code that is used to structure the webpage and it’s content. HTML describes the purpose of the text… then it’s up to the web browser to know what to do with that text.
  3. We are learning HTML so we can build webpages to attach our smart contracts to. HTML makes it easier to learn other coding languages as well.
  4. An HTML tag is formatted command for building a web page. It states where an element begins and ends. It is wrapped in angle brackets.
  5. An HTML tag is wrapped in opening and closing angle brackets. The closing bracket would add a / to the tag. The forward slash states where the element ends.
  6. An attribute give extra info about the element that you don’t want to show in the content. Attributes are modifiers of element types.
  7. The anatomy of an HTML document consists of head and body elements.

What is HTML?
HTML (Hypertext Markup Language) is a markup language (not programming language) that defines the structure of your content (e.g. website)

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

Why are we learning HTML?
Because HTML represent the basic structure of a web page. It is the backbone for representing your data on a web page.

What is an HTML tag?
It represent the root of an HTML document - an HTML element is represented (mostly) with a openning and closing tag, that defines how your web browser must format and dispaly the content.

What is the structure of an HTML tag?
A tag is structured with the openning and closing tag. Between is the content.

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

What is the anatomy of an HTML document?
An HTML document is structured as following:
image

html element: This element wraps all the content on the entire page - root element
head element: This element acts as a container for all the stuff you want to include in the HTML page that isn’t the content you are showing to your page’s viewers.
body element: This contains all the content that you want to show to web users when they visit your page

  1. HTML is a markup language that governs how text will be displayed/ a website will be structured.

  2. HTML is used to structure a web page and text.

  3. We are learning HTML to create simple web pages and structure them. These may be the front-end of smart contract dapps.

  4. HTML tag represents the structure in which the content will be displayed.

  5. The structure: opening tag, closing tag and content.

  6. attributes contain extra information about the element that you dont want to appear in the content. it is a component of the tag.

  7. Anatomy of HTML document: doctype, html element, head element, utf-8, title element, body element.

1 Like
  1. HTML = Hypertext Markup Language.
  2. It is no programming language - it is a code to structure your webpage and the respective content of the webpage.
  3. for creating a webpage we need a text editor - so it will be easier to write and structure our code
  4. a tag marks where a specific element begins and ends
  5. image
    the element (here paragraph) is wrapped with angle brackets at the beginning and at the end - but be aware you have to make a foward slash to end the element (as written). In between you find the content which will be shown on the webpage.
  6. an attribute is an extra information - which you want to see in the code but not on the webpage
  7. following elements --> !DOCTYPE, html, head, title, body
1 Like
  • What is HTML?
    Stands for Hypertext Markup Language.

  • What is HTML used for?
    It is used for structuring a web-page and its content.

  • Why are we learning HTML?
    To build web-pages that can connect or interact with smart contracts in the backend.

  • What is an HTML tag?
    It’s an element of HTML that defines the format and structure of the content.

  • What is the structure of an HTML tag?
    It has the opening and closing format of the content.

  • What is an attribute?
    It provides additional properties to the content within a tag.

  • What is the anatomy of an HTML document?
    This are the individual elements contained within an HTML document

`` ...
1 Like
  1. What is HTML?
    Hypertext markup language (code)
  2. What is HTML used for?
    creating web page
  3. Why are we learning HTML?
    because it`s necessary to know the basics before learning something more difficult.
  4. What is an HTML tag?
    hidden keywords in web page structure that define how web browser display the content
  5. What is the structure of an HTML tag?
    a start tag , content, and an end tag
  6. What is an attribute?
    Attributes define additional characteristics or properties of the element such as width and height of an image
  7. What is the anatomy of an HTML document?
    Every HTML document consists of two elements: Head elements – provides page title and general page formatting commands. Body elements - main text, headings, paragraphs, images, hyperlinks, tables, etc
1 Like
  1. HTML is a markup language used to structure a web page and its contents.
  2. HTML consistes in a series of elements used to organize the different parts of the content and make them appear in a certain way.
  3. HTML is important to get used to code, it is the backbone of a web page.
  4. An HTML tag open and cloles an element. It wraps the content of a line of code.
  5. We have an opening tag such as “” and a closing tag such as “”. The only one difference between the two is / which marks the end of the element. In this case “p” would be the name of the element.
  6. An attribute is used to provide with additional information you don’t want to appear on the actual content.It has a name and a value. It must have a space between its name and the element name. The attribute name must be followed by “=”. The attribute value must be wrapped by quotation marks. ES <p family="4"La famiglia
  7. The anatomy of an HTML doc is the following:
    You enter to make sure your doc works corretly.
is considered the root element, it wraps the content of the whole document element acts as the container of anything you don't want to appear in the content of the document. <meta charset="utf-8> is basically a way to be able to included any kind of characters in any language. <title></title> is the element that contains the title of the webpage. <body></body> element contains all the text of your webpage you want your users to see.
1 Like
  1. What is HTML?
    = HyperText Markup Language, it is a markup language that define the structure of your web content.

  2. What is HTML used for?
    = To define the structure of your content, it makes it possible to mark up and wrap content so it becomes structured and so it is displayed in a readable manner.

  3. Why are we learning HTML?
    = It is the basic of web development, without HTML how will we know how to make a frontend for a Dapp?

  4. What is an HTML tag?
    = An HTML tag is what determines how the content are displayed and where.

  5. What is the structure of an HTML tag?
    = For a paragraph for an example it would look like this: < p > this is the content< /p >.
    So we open with a opening paragraph tag: < p> write the text we wish to display and close with a closing tag: < /p>. The whole shown together is the element.

  6. What is an attribute?
    = Extra information about the content you do now wish to be shown in the actual content.

  7. What is the anatomy of an HTML document?
    = The doctype, the HTML element, the < meta charset=“utf-8”>, the title element and the body element. It looks like this with opening and closing tags:

< !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< title> < /title>
< /head>
< body>
< img src=“images/firefox-icon.png” alt=“alt description”>
< /body>
< /html>

1 Like
  1. HTML is a markup language which holds content for a web page
  2. HTML is used for adding content to a web page, it uses specific structure such as elements and tags to keep it organized.
  3. We are learning HTML to be able to experiment on our own once we get further down the road in this course.
  4. An HTML tag tells the HTML document how it should treat the content, for example if it is an image or a header.
  5. It consists of an opening and a closing tag, for example

    Header text

  6. An attribute contains extra information about a HMTL tag, but it is not visible to the reader.
  7. The HTML anatomy is the structure of the HTML document and it contains information for the web page; the title, text, images, as elements.
2 Likes

1.HTML is a programming language that is the basis of the structure of how content is shown and used.
2.HTML is used for proper use of web formatting, and image formatting, also providing the wanted outcome of the web.
3.we are learning HTML for the purpose of having your vision fully controlled by ourselves, instead of another programmer or preset.
4.A HTML tag is a piece of code for formatting web pages.
5. structure of an HTML begins with an opening tag, then followed by the content an ended with a closing tag. Example,

self care

. 6.An attribute is a hidden command that does specific edits to your HTML elements 7.The anatomy of an HTML document has a head element and body element to produce content on page
  1. HTML is HyperTextMarkupLanguage
  2. HTML is used to code the layout of a webpage
  3. We need it to create a webpage
  4. A tag is used to identify elements within the page
  5. content
  6. An attribute is something that can be referenced to identify a tag
  7. Anatomy refers to the structure of the entire page, including head, body and any specifications needed. This is the layout of a page.
1 Like
  1. HTML stands for hypertext markup language. It is not a programming language.
  2. HTML is a language that defines structure of content via elements. It is used to tell a web browser how to display content.
  3. We are learning HTML because it is a good starting point for learning coding and is useful.
  4. HTML tags are used to define the start and end of elements which contain content.
  5. content </closing tag>
  6. Attributes are hidden information about elements that can be targeted.

Html is a Hypertext Markup Language.

  1. What is HTML used for?

It is used to structure a web page.

  1. Why are we learning HTML?

To be equiped to build a website that can interact with the blockchain.

  1. What is an HTML tag?

It denotes an instruction we give to a web page & can denote a paragraph, make a word or image hyperlink to somewhere else, can italicize, make font larger or smaller etc.

  1. What is the structure of an HTML tag?

A html tag has an opening < > and a closing </ > will have content and an element.

  1. What is an attribute?

Attributes contain extra information that you don’t want to be in the actual content, it allows you to give the element a non unique identifier that can be used to target it & other elements with the same value.

  1. What is the anatomy of an HTML document?
`
<!DOCTYPE html> denoting type of document.

<html> opening html element or root element

<head> opening of the container for things you want to include on the page that isn't content.

<meta charset="utf-8"> sets the character set your document should use.

<title> opening of title of your page

</head> closes heading of page

<body> contains all the content of the web page, images, text, videos etc

<img src="images/firefox-icon.png'> embeds image into the page in the position it appears.

</body> closes container of content
 
</html> closes html element or root element wrapping the entire content on the page.
2 Likes
  1. HTML is a Hypertext markup language
  2. HTML is used for structuring a web content.
  3. We learn HTML as it is the basics of building website, smart contract and anything
    we will need in future developing. HTML is the fundamentals of programming.
  4. Indicates the type of the content
  5. content </closing the type of content>
  6. Attributes contain extra information about an element which we don’t want to appear
    in the actual content.
  7. HTML, Head, Title, Body
2 Likes