HTML Reading Assignment

  1. What is HTML?
    HTML as it stands for, is a Hypertext Markup Language.

  2. What is HTML used for?
    HTML is used to define the structure of your content on a webpage.

  3. Why are we learning HTML?
    We are learning HTML because it allows us to display content from the blockchain and smart contracts on the web.

  4. What is an HTML tag?
    An HTML tag is a markup that is used to encase content and create an element.

5.What is the structure on an HTML tag?
An HTML tag is made up of two parts in order to create an element. An opening tag (<>) and a closing tag (</>).The opening tag is at the beginning of the content you want to encase and the ending tag is at the end of the content.
Also, are different types of tags. ā€œpā€ is used for the paragraph tag. (

).
  1. What is an attribute?
    An attribute is a quality or feature that can be inherited from someone or something.

  2. What is the anatomy of an HTML document?.
    An HTML document consists of:
    a. doctype
    b. HTML element
    c. head element
    d. character set
    e. title
    f. body

1 Like
  1. What is HTML?

HTML is a not a programming language, but rather a markup language.

  1. What is HTML used for?

HTML is used to structure the content of a web page. It consists of elements that are used for making page contents appear or act in particular ways.

  1. Why are we learning HTML?

We are learning HTML in order to create actual cryptocurrency applications that function and can be shown to other people.

  1. What is an HTML tag?

An HTML tag is a part of a pair of start and end tags that affect the content of a web page.

  1. What is the structure of an HTML tag?

The structure of an HTML tag is the name of the tag enclosed by opening and closing angle brackets, and, in the case of the closing tag, a slash mark preceding the name of the element.

  1. What is an attribute?

An attribute is information about an element that identifies the element, but won’t appear on the web page.

  1. What is the anatomy of an HTML document?

The anatomy of an HTML document is the combination of elements that form an entire HTML page.

1 Like
  • What is HTML?
    HTML is not a programing language, is a hyper text markup language that define the structure of the content. It consist in a series of elements used to enclose the different parts of the content and make it appear or act in a certain way.

  • What is HTML used for?
    HTML is also used to define the look of the content, control the functions on the page,but overall, primarily to create a structure to the page.

  • Why are we learning HTML?
    HTML is the base start to know how to create a frontEnd for the use of smart contracts.

  • What is an HTML tag?
    An Html tag is the building block of every html page.
    the element names are surrounded by angle brakets, normally comes in pairs, start&end tags, end tags are usually the same as start but with a forward slash.
    some tags are self closing because would not make sens to include any content in them.

  • What is the structure of an HTML tag?
    < start tag>content< /endtag>

  • What is an attribute?
    An attribute provide extra information about a certain element. they are always placed within the start tag and they are always formatted as Key/Value pairs.

  • What is the anatomy of an HTML document?
    the anatomy of an HTML document is the basic building structure that every document of this kind can use. it consists in various tags and semantic tags.

1 Like

Answers

  1. HTML is a markup language.

  2. HTML is used to create electronic documents that are displayed in the web.

  3. We are learning HTML because it will help us understand how to create our own website.

  4. An HTML tag is to define the content for the web page.

5.The structure for HTML tag has an opener < and > and to close is to add a / in between the angle brackets.

  1. An attribute is another term for field, its a public constant or public variable that can be accessed directly.

  2. Every HTML has two elements a head element and a body element

1 Like
  1. Hypertext Markup Language is a protocol which specifies the structure for websites on the internet.
  2. It is used to ensure proper formatting of websites.
  3. We are learning HTML as it enables us to construct a front-end for the smart contracts that we will learn to develop at a later stage.
  4. Tags are used to create/define an element.
  5. The HTML tag structure is defined by a opening tag, closing tag, the content and the element.
  6. An attribute specifies the characteristics of an element.
  7. HTML Anatomy:
  • the doctype - required preamble
  • the element - wraps all the content on the entire page
  • the element - container for all the stuff which is included on the HTML page that is not visible on the page itself
  • the character set - defines the character set the document can handle
  • the element - sets the title of the page
  • the element - contains all the content that is visible on the website itself
1 Like
  1. Hypertext mark up language
  2. To structure web pages
  3. Because web pages are directly linked with smart contracts and dapps. We need to know both
  4. A tag gives a certain function to whatever is inclosed between them <p>paragraph<p> for example
  5. <opening tag>text or image<closing tag>
  6. Attributes contain extra information that you don’t want to appear in the actual page
  7. How the elements are combined to form an entire html page

Edit @ivga80: Hi. Remember to use the Preformatted text when you want to show the code you write. :wink:

1 Like

Lol

paragraph

withoth space… already coding

  1. What is HTML?
  • HyperText Markup Language, is the code, a markup language that determine the structure of a web page and its content.
  1. What is HTML used for?
  • It is used to describe the visual appearance of a document to be displayed by a browser.
  1. Why are we learning HTML?
  • To have the foundation for web development and then move forward when building something more complex as a smart contract. We need to learn how to make our own code.
  1. What is an HTML tag?
  • The tag is the name of the element, it tell us where is the beginning and the end of the element, it wraps the content around it.
  1. What is the structure of an HTML tag?
  • opening

  • closing
  • The anatomy of the element is Opening Tag + content + closing tag
  1. What is an attribute?
  • It is extra information about about an element that we don’t want to appear in the actual content.
  1. What is the anatomy of an HTML document?
  • required
  • element that wraps all the content of the page
  • element acts as a container for everything we want to include in the page that isn't the content we show to viewers.
  • <meta charset ="utf-8> element sets the 'character set' the document should use. </li> <li> <title> </title> element, sets the title of the page that appears in the browser. </li> <li> <body> </body> element contains all the content that we want to show to the viewers of the page.</li> </ul>
1 Like
  • What is HTML?
  • What is HTML used for?
  • Why are we learning HTML?
  • What is an HTML tag?
  • What is the structure of an HTML tag?
  • What is an attribute?
  • What is the anatomy of an HTML document
  1. HTML is an acronym for: hypertext markup language.
  2. It is used for creating web pages.
  3. learning HTML will help us to create web page to be used as front end for bigger developments
  4. A HTML tag contain element name(and it s value).
  5. The structure of an HTML tag is an opening tag < > and a closing tag </>(except for image one)
  6. An attribute is used as an extention of an element to add information.
  7. the anatomy of an HTML program is:
    You start the script of an HTML script by typing .then
    after that, follow an head section where is written things that we use, but not to the viewer
    next the section where the content is put down(image,text,video,…)
1 Like
  1. HTML (Hypertext Markup Language) is a markup language that defines the structure of content in a webpage, consisting of a series of elements used to enclose different parts of the content in order to make them appear or act a certain way.

  2. HTML is used to structure a web page and its content.

  3. We are learning HTML because we want to be able to build a website, a front end that interacts with the blockchain, an application that can interact with smart contracts.

  4. An HTML tag is a command responsible for the format and placement of the different elements that constitute a webpage.

  5. The structure of an HTML tag is composed of content written between an opening tag and a closing tag.

  6. An attribute contains extra information about the element that you don’t want to appear in the actual content.

  7. The basic anatomy of an HTML document is:

. < !DOCTYPE html> the doctype
. - the html element
. - the head element
. - the body element

1 Like

An HTML is hyper text markup language used to structure a web page
A html is used to structure and define the web page
html is necessary to build a web page
A tag defines the opening or closing of an element
An attribute is a part of an element that is not displayed on the web page.
The anatomy of a html wraps up all the elements of a web page

1 Like

HTML stands for HyperText Markup Language.

HTML is used to construct a website with a series of elements on how you want the page to appear.

HTML is the first basic step in learning how to build a website on the internet.

An HTML tag is used to open and close a particular element of a webpage.

An HTML tag is opened with a set of angular brackets(<,>), and is then closed with a forward slash inside of the angular brackets(</>).

An attribute allows an element to have information about it that is not displayed. By using attributes, you can then later target that same attribute to achieve the same information.

The anatomy of an HTML document starts and ends with the HTML tags. After the opening HTML tag, you have the HEAD tags which contain information not displayed on the webpage. This includes character setting, page title, & more. After the information that isn’t displayed, you have the information that is to be displayed. This information is contained within the BODY tags. The closing HTML tag is then used to complete all information.

1 Like
  1. Hypertext Markup Langugage (no programming langugage) it“s a Markup language that defines the structure of our Content.

  2. To create Websites (core programming of an Webpage)

  3. It“s a Basic to lern how to create a Webpage by your own

  4. It states where an element beginns and Ends (

    opens and

    Closes)
  5. Content

  6. Attributes contains extra Information About the element which you dont want to appear in the acutal Content *ā€œattribute allows you to give the element an identifier that can be used later to target the element with style information and other things.ā€

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

Yes. Beautiful Name.

What is HTML?
HTML is a plain text markup code language called Hypertext that structures web page content.

What is HTML used for?
HTML is used to specify web page content including the layout and structure.

Why are we learning HTML?
We learn HTML to compose and publish web pages.

What is an HTML tag?
An HTML tag is markup code composed of angle brackets and text to delimit the elements of a web page.

What is the structure of an HTML tag?
The syntactical structure of an HTML tag consists of a left angle bracket, a name for the tag in plain text and a right angle bracket. Tags usually delimit web page elements in pairs where the syntax described is the opening tag preceding content, (usually text) and a closing tag having similar syntax with the exception of a forward slash preceding the tag name. Together the tags are said to wrap content to form an element by explicitly identifying a beginning and an end.

What is an attribute?
A tag attribute is a name assigned a value using the equal sign.

What is the anatomy of an HTML document?
The anatomy of an HTML document consists of nested tags that by convention define structure as HTML which contains a header of non-displayed information, and nested within that, character set and a title tags, and following the header, a body which contains the elements of a web page.

1 Like
  1. What is HTML?
    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 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. Why are we learning HTML?

to have the knowledge of frontend development, we will need this knowledge later if we are bulling data from a blochaine.

  1. What is an HTML tag?

is to mark the beginning and the clossing of an element

  1. What is the structure of an HTML tag?

  2. 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 The closing tag is is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends
    The opening tag, the closing tag and the content together comprise the element.

  3. What is an attribute?

Attribute is a name that gives extra information about the element that you don’t want to appear in the actual content for example highlight a word.

  1. What is the anatomy of an HTML document?
My test page My test image
1 Like
  • What is HTML?
    Hypertext markup language. It is code that structures your webpage and its contents.

  • What is HTML used for?
    It is used to make your content appear or act a certain way. eg. by changing text font or creating a hyperlink to somewhere else.

  • Why are we learning HTML?
    To be familiar with some basics of coding. To be able to create a webpage which can be used in future as the front end interface for DAPPs

  • What is an HTML tag?
    It is an indicator or marker for the structure of different parts of a webpage. Eg. in opening and closing tags

    which mark the start and end of a paragraph element.

  • What is the structure of an HTML tag?
    The element name is enclosed within angular brackets.

  • What is an attribute?
    Characteristics that are to be applied to the element.

  • What is the anatomy of an HTML document?
    Basic anatomy might include
    a. doctype
    b. HTML element
    c. head element
    d. meta
    e. title
    f. body

1 Like

1- Hyper Text Markup Language

2- HTML is used to structure web pages and their content

3- HTML is a good foundation to have if you’re new to web development and programming (me)

4- HTML tag is used to tell the browser what content to show.

5- Opening tag, closing tag, content element. eg

my cat is very grumpy

6- Attributes define additional characteristics or properties of the element such as width and height of an image.

7- Doc type, Root Element, Head Element, Body Element

1 Like
  1. HTML Hypertext Markup Language. It is not a programming language, it is a code!

  2. It is used to structure a web page and its content.

  3. we learn to work with HTML so we learn how to build a website that works and interacts with the blockchain. We learn to build an application that interacts with smart contracts

  4. A tag is a command that can be interpreted by a browser. HTML uses tags to indicate, for example, the position and appearance of elements on a page.

  5. A tag is always between a . The element in question is enclosed by a start tag and an end tag: <start tag> element </endtag>

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

  7. the anatomy of an HTML document wraps in the basic elements that runs the document on a website. These basic elements are:

 <html>
 <head></head>
 <body></body>
 </html>

IT SEEMS THAT I CANNOT PLACE TAGS IN THIS EDITOR

@gabba edit: you can by using perfomatted text balise

1 Like
  1. HTML (Hypertext Markup Language) is a markup language and the visual part of a web page or application consists of a series of elements.
  2. HTML is used in a web page or an application to display the content.
  3. Just about all website or web application have some types of interface to interact with users and HTML is the visual part.
  4. A tag is part of an element that make content appear in a certain way.
  5. A tag structure consists of an open and a closing tags.
  6. Attributes are extra information about an element like styling, identifier, and other things.
  7. The doctype, HTML wrapper, , meta, are different elements part that combines to form the entire HTML document.
1 Like