HTML Reading Assignment

  1. What is HTML: HTML is a markup language that defines the structure of web-based content. There are a series of commands one can use to structure content in headings, paragraphs, images, document properties and the like. Some content is visible on the web page to users and some content is not and is often used for setting document attributes and search engine parameters. One can also create notes in the code for outlining one’s thought process when creating a document / page.
  2. What is HTML used for: HTML is used for the creation of web-based content that users can search on the internet, view and / or interact with.
  3. Why are we learning HTML: Blockchain technology is an internet-based technology and to be able to create useful web applications that satisfy use cases, one has to be able to create the content online to make it assessable.
  4. What is an HTML tag: Tags normally comes in pairs and consist of an opening and a closing that helps the developer to structure the contents of an HTML document in a user-friendly way for users to navigate and use the web interface the programmer created.
  5. What is the structure of an HTML tag: Tags come in pairs to open and close the content between tags.
  6. What is an attribute: An attribute contains additional information about the element that would not be shown on the web page. It normally consists of an attribute name and attribute value.
  7. What is the anatomy of an HTML document: ```
- This identifies the doccument type as an HTML file - This opens the contents of the HTML file - This is metadata that would not show on the web page - This is the character set that would be used in this case utf-8 My test page - this would be the contents that will be displayed on the web tab - This closes the metadata that will not be visible - this opens the body contents My test image - this is to insert the Firefox image and it has an alt= argument should the browser not be able to load the image then the text would be displayed in this area. - this closes the body contents - This closes the contents of the HTML File ```
1 Like
  • What is HTML?
    HTML stands for hypertext markup language. It’s the code used to structure a webpage. As well as it’s content, such as titles, frames, fonts, colors…
  • What is HTML used for?
    It’s used to build and structure a web page
  • Why are we learning HTML?
    It’s important to understand html as we will need to be familiar with the structure and language to insert smart contracts in a web page
  • What is an HTML tag?
    A tag is a message/sign serving to open and close an element. It is wrapped in angle brackets
  • What is the structure of an HTML tag?
    The structure of a tag: opening tag to define the function of the content, closing tabs. It can also contain attributes which will always have a space between the attribute and the element and/or other attributes.
  • What is an attribute?
    An attribute is a part of the element which will not appear in the text but will define and give more informations to the elements, it can be to classify , add a background, background image, align vertically titles or subtitles
  • What is the anatomy of an HTML document?
    The anatomy of a web page starts with the preamble: the type of language used:
and the web page will end with < \html> These 2 messages will wrap our page. The element contains everything that we don’t want to appear in our content, such as keywords, css styles, font….the end of the head will close with the message <\head> to close and wrap this “organe” of our webpage anatomy UTF8 includes the majority of written languages…let’s keep it as easier as possible for ourself…by keeping utf8. element: sets the title that will appear in our browser tab. It’s wrapped and end by < \ title> < body> will contain all that we want to appear and be visible by our website/webpage visitors, such as text, images, videos, audio….. [/quote]
1 Like

1/ Hypertext markup language
2/ html is used to structure a web page and its content
3/ To create content on the web
4/ html tag consists of an opening and ending tag that states where the element begins and ends.
5/ Opening tag, closing tag, content, element.
6/ an attribute contains extra information you dont want to make appear on the website
7/ the doctype element ; the html element ; the head element ; the element ; the title element ; the body element

1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language.

  1. What is HTML used for?

HTML is used in the process of coding information and structure for a webpage.

  1. Why are we learning HTML?

HTML is the most basic of the coding languages and is also the most common in terms of what it is used for and how we are able to get our heads around how code actually works.

  1. What is an HTML tag?

A HTML tag is something that signifies a change in the element. That may be to either to make a sentence italic, to make something into a paragraph, to make the font bigger or smaller, to indent a photo or to add a hyperlink to a specific line. All these are signified by the closing tag with the same function inside.

  1. What is the structure of an HTML tag?

The structure of a HTML tag is as such:

My cat is very grumpy

The content is wrapper around the tag which signifies and executes the commands within. In this case the

would ensure that the content is left in a paragraph and the

is the closing tag.

  1. What is an attribute?

An attribute is the information within a tag that leads to the changing of the content.

  1. What is the anatomy of an HTML document?

The anatomy of a HTML document is

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content.
  2. What is HTML used for?
    s the code that is used to structure a web page and its content
  3. Why are we learning HTML?
    so we can build web sites, dapp and other programs
  4. What is an HTML tag?
    tag is the container for all other HTML elements (except for the <!DOCTYPE> tag).
  5. What is the structure of an HTML tag?
  6. he 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.
  7. 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.
  8. The content: This is the content of the element, which in this case, is just text.
  9. The element: The opening tag, the closing tag, and the content together comprise the element.
  10. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content.
  11. What is the anatomy of an HTML document?
  • <!DOCTYPE html> — doctype. It is a required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However these days, they don’t do much and are basically just needed to make sure your document behaves correctly. That’s all you need to know for now.
  • <html></html> — the <html> element. This element wraps all the content on the entire page and is sometimes known as the root element.
  • <head></head> — 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 keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.
  • <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 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> — the <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/favorite it.
  • <body></body> — the <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.
1 Like
  1. What is HTML?
    A. Hyper Text Markup Language
  2. What is HTML used for?
    B. Used for creating and editing a webpage.
  3. Why are we learning HTML?
    C. Because I want to be able to create web pages and understand a couple basic programming languages
  4. What is an HTML tag?
    D. Names the element for proper display
  5. What is the structure of an HTML tag?
    E. Opening tag, Content, Closing tag
  6. What is an attribute?
    F. Attributes are extra information about the element to tag it with a non-unique identifier so you can give that attribute certain characteristics
  7. What is the anatomy of an HTML document?
    G. !DOCTYPE, html, head, meta charset=“utf-8”, title, body
1 Like
  1. HTML stands for Hyper Text Markup Language.

  2. HTML is the code used to structure a webpage consisting of a series of elements used to wrap different sections of content making your page visually appear in a very specific/desired way.

  3. To understand how to make user-friendly, visually appealing web browser content.

  4. Tags mark the opening and closing of each element.

  5. The structure of a tag is as follows, “

    ”:
    • opening tag: name of the element wrapped in closing angle brackets
    • closing tag: same as opening, adding forward slash before name
  6. Attributes appear inside tags, separated from the name by a space. they contain extra info about the element not intended to be seen.

  7. The anatomy of an HTML doc is as follows:

    • - the doctype
    • - wraps all of the page content
    • - important content unintended to be seen
    • - the character set
    • - the title of the page
    • - all the content of the page: text, image, audio, video, games, etc.

[I notice that in answers #5 and #7, though I typed examples the appropriate tags, they, for whatever reason don’t appear to be visible.]

1 Like
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? it is the protocol that all web pages use to display information to your computer screen from the internet
  3. Why are we learning HTML? we are learning HTML because it will help us build websites.
    And the websites can and will communicate with smart contracts on a blockchain.
  4. What is an HTML tag? used to create an element. It consists of the element name in
    brackets.
  5. What is the structure of an HTML tag? Opening Tag, Content, Attributes, Closing Tag
  6. What is an attribute? containt 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? Structure of the code

What is HTML?

It is Hypertext Markup Language, and it is a way of arranging web page content, and making the structure of a web page.

What is HTML used for?

HTML is programming language which is used to control how content is arranged and shown on a web page.

Why are we learning HTML?

If we make websites, it is good if we can control the arrangement and appearance of text and images, and control the general appearance and structure of our pages. HTML helps with this. We can control the front end of websites, which the public uses, and provide good user experience.

What is an HTML tag?

And HTML tag is a programming instruction which controls the appearance, position or action of the connected word, image, etc. Tags are used in pairs, with an opening and closing tag before and after a particular piece of website content.

What is the structure of an HTML tag?

An opening tag consists of 2 angle brackets which enclose the tag or element name. The tag or element name determines the function of the tag. For example “p” is the name of a paragraph element, and is used for normal content text in the body of the website page. A closing tag is the same, except that there is a slash after the first angle bracket, and before the element name.

What is an attribute?

An attribute is an addition feature that can be added to an element tag, for example lang for language.

What is the anatomy of an HTML document?

An HTML document has various opening and connected closing tags, enclosing content, which form a series of HTML elements, and which form a website page.

Typical sections of an HTML document include !DOCTYPE html, followed by html, head (with metadata), title (which shows the text that appears in a browser tab), body, which is the main part of the text, and which can can a title or heading (with h1, etc). These elements are formed with pairs of tabs enclosing content, each tab consisting of a pair of angle brackets around the element / tab name. The opening tabs can include attributes, which are written within the angle brackets, and after the element name plus a space. An attribute is followed by ="", with the value of the attribute written between the quotation marks.

1 Like
  1. What is HTML?
    It is a markup language that defines the structure of your content

  2. What is HTML used for?
    to display information of a web page in a certain way

  3. Why are we learning HTML?
    To be able to create and add information on the internet

  4. What is an HTML tag?
    It lets the browser know that it is an HTML doc

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

  6. What is an attribute?
    Adds extra information about an element

  7. What is the anatomy of an HTML document?

!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
</body>
</html>
1 Like
  1. HTML stands for HyperText Markup Language. It is a page formatting language comprising of elements, whose content is bounded by opening and closing tags.

  2. HTML is used to format web pages; to define how the content will be displayed in a web browser.

  3. We need to learn HTML because it is required in a large part to create front ends for web applications.

  4. an HTML tag is what precedes (with the opening tag) and goes after (with the closing tag) the content of an HTML element.

  5. an HTML tag is an HTML keyword bounded by a < and a > the closing tag is bounded by a </ and >

  6. an attribute can be assigned to an HTML element and would be contained within the opening tag. It is another keyword used to define an extra property of that element, and would be set to a value. The attribute name and value would be separated by an = sign.

  7. an HTML document will have the following anatomy:

My test page My test image

a) Where the Doctype tag is a required legacy preamble.
b) the HTML tag contains the page
c) the head tag contains the and title tags, the former defines the character set to use.
d) the title tag defines what is displayed in then browser tag as the title of the page
e) then the body tag contains the rest of the page content.

1 Like
  1. HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.

  2. 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.

  3. Because it is a simple way of seeing a certain output changing accordingly with what we write in the input. It is simple, clean and prepares us for programming.

  4. HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.

  5. The structure of an HTML tag comprises of a pair to tags that include a “start tag” <> and a “end tag” </> .

  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 includes all the elements and other instructions to structure the page. Each individual instruction is useless without the entire HTML anatomy. The anatomy of an HTML document consist of:

Doctype:

  • html
  • head
  • meta charset
  • title
  • body
1 Like
  1. What is HTML? It’s markup language that stands for HyperText Markup Language.
  2. What is HTML used for? HTML is used to create and structure web pages,
  3. Why are we learning HTML? To be able to create sites that allow for users to easily interact with our programs and the blockchain.
  4. What is an HTML tag? An HTML tag is used for creating an element.
  5. What is the structure of an HTML tag? <>opening tag, </> closing tag, that wrap the content.
  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?
  • Doctype: Required
  • : wraps all content on the entire page
  • : container for all the things you want to include on the html page that isn't the content you are showing to your page viewers.

*: sets the title of your page which appears in the browser tab.
*: contains all the content that you want to show to web users when they visit your page.

2 Likes

It stands for “HyperText Markup Language”: is a programming language for give the structure of a website

It is used to build the websites front-end structure

Because is the basement for the creation of a website

They are the instruments for dividing and structuring the website

Head and Title, body with his paragraph and other stuffs

They are extra informations that you want to show in the place but are helpful to developer or users in case of malfunctions

element = opening and closing tag + element

2 Likes
  1. It is a hyper text markup language
  2. It is used to build web content
  3. We are learning html because it can be used to design contents in web
  4. It is used to define content
  5. It starts with < > and ends with </>
  6. An attribute is a is that provide the information of a specific elements
  7. The anatomy of html is like head body
2 Likes
  1. hypertext markup language
  2. it is a code to structure website and their contents
    3.because you need to be able to creat a UI through a website so people can interact with smart contracts etc
  3. A html tag tells the browser that the contents between the html tags are the content of the website
  4. you have an opening tag and a closing tag
  5. an attribute identifies special content or some additional properties inside that attribute
  6. All sites have a head element and a body element however you can also have a footer element and within the body element you can also have sections etc etc
1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

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

  3. Why are we learning HTML?
    We’re learning HTML because of its significance to the internet; it’s everywhere.

  4. What is an HTML tag?
    The beginning and ending of an element in source code.

  5. What is the structure of an HTML tag?
    First, it’s the opening tag, second, the attribute and value, third, the content, fourth and finally, the closing tag.

  6. What is an attribute?
    An extension that changes an elements behavior.

  7. What is the anatomy of an HTML document?

<meta charset="UTF-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title></title>
1 Like
  1. What is HTML?
    It stands for Hypertext Markup Language.
  2. What is HTML used for?
    To build a website structure and to create content of that website in many different ways.
  3. Why are we learning HTML?
    To enable us to build a front-end for our smart contracts that we will develop
  4. What is an HTML tag?
    A tag denotes the start and end of a section in HTML, like a heading, paragraph, table…
  5. What is the structure of an HTML tag?
    Denoted in < and >, the end tag additionally starts with a /
  6. What is an attribute?
    A characteristic of a particular element to provide greater information and will help us later to write general CSS instruction for specific tag.
  7. What is the anatomy of an HTML document?
<html>
   <head>... </head>
   <body>...</body>
 </html>
1 Like
  1. What is HTML?
    HTML stands for hypertext markup language.
  2. What is HTML used for?
    It is mainly used to build a website and define its structure.
  3. Why are we learning HTML?
    To allow us to build front ends for our smart contracts and other things.
  4. What is an HTML tag?
    it defines the start and end of a section
  5. What is the structure of an HTML tag?
    It starts with a < and ends with a > and the end tag has an additional /
  6. What is an attribute?
    A characteristic for a specific element which will allow us to write CSS code for those tags later on.
  7. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hello Moralis</title>
</head>
<body>
    <h1>Hello Moralis</h1>
</body>
</html>
1 Like
  1. HTML is a markup language.

  2. It is used for defining the structure of your content.

  3. For managing the content we want to have our viewers see on our web page.

  4. An html tag is one of the main components in elements in html as it allows us to determine what kind of content we are putting in, where it starts, and where it ends.

  5. It has an opening tag which declares the start of an element, defined by opening and closing brackets and a closig tag which is essentially the same as an opening tag but has a forward slash / before the element name and determines the end of an elment.

  6. An attribute is the extra information you want an elemet to have but not appear in the content.

  7. doctype, html element, head element, body element

1 Like