HTML Reading Assignment

1 what is html: hyper text markup language
2. what is html used for: to give structure to a webpage and its content
3. why are we learning html: to learn the basic of coding
4.What is a html tag: you can specify an element between <…> you can accent with an attribute to make a text to bring it out and or make an image stand out with a text
5.What is the structure of an HTML tag? an opening tag, the content, closing tag
6.What is an attribute? it gives extra information about the tag that you want to give to a content within an element
7. What is the anatomy of an HTML document?

content

1 Like
  1. What is HTML?

HTML is short of H yper t ext M arkup L anguage, so it is not a programming language.

  1. What is HTML used for?

It is used to structure data on a certain way on web page.

  1. Why are we learning HTML?

We are learning this language so that we can structure text for JAVA script. The goal is that content appear a certain way, or act a certain way.

  1. What is an HTML tag?

An HTML tag is one of elements we use to structure appearance of txt. HTML tag consists of the tag name in angular brackets. It marks the begins and the end of each section (title, heading, paragraph… it can italicize words, make the font bigger or smaller…). By reading tags, browser will know how to show the content.

  1. What is the structure of an HTML tag?

Opening tag - <>

Closing tag - </>

  1. What is an attribute?

Atributes contains additional information about elements we don’t won’t to show in visible content. Each attribute has name and value.

  1. What is the anatomy of an HTML document?

Anatomy is a layout of HTML, its structure. It consist of preamble part, root element, head element (things we want to include in HTML but not to be shown in content), character set, title element (will be visible) and body (all visible content) element.

2 Likes
  1. A markup language for organizing the outline of a website
  2. Program the fixed part of a website or rather tell how the website should be rendered
  3. Front-end for programming. You need it yourself or you pay someone else to deal with that
  4. Marking of the beginning and the end of a piece of instruction, note that there are empty element tags which contain all the information it need within its singular brackets
  5. unless its an empty element tag: <stuff (potential attributes and values) > content
  6. modifiers to the element of a tag
    7.more or less something like this:
<html></html> // Consists of the Entire webpage along with the header contents titles etc. 
<head></head> // Is the container of elements such as CSS, more of things that are vital for the page but only reflects it on the webpage in one way or the other.
<title></title> //Title of a webpage
<body></body> //Consists of the elements you want to show your page viewers
1 Like
**strong text**
1. What is HTML? 
**strong text**
HTML is a  *markup language*  that defines the structure of your page content
 **strong text**
 2 What is HTML used for?
**strong text**
HTML (HyperText Markup Language) is the code that is used to structure a web page and its content
 
**strong text**
 3 Why are we learning HTML? 
**strong text**
We are learning HTML to structure pages

strong text4 What is an HTML tag? strong text

an HTML tag is the structure of an element in a web page

each element in a web page is between one opening tag and one closing tag 
 

strong text
5 What is the structure of an HTML tag?
strong text

 one opening and one  closing angle brackets

**strong text**
6. What is an attribute?
**strong text**
Attributes contain extra information about the element

**strong text**
7 What is the anatomy of an HTML document?
**strong text**

one doctype to specify the type of a document
one header
one title
the content of the document with elements between tags
one body
1 Like
  • What is HTML?

HTML (HyperText Markup Language)

  • What is HTML used for?

HTML is used to structure web pages and their content.

  • Why are we learning HTML?

We are learning HTML in order to get a basic understanding of how the web works and to create a front end for Smart Contracts to interact with.

  • What is an HTML tag?

An HTML tag is and identifier containing the name of the element.

  • What is the structure of an HTML tag?

An HTML tag is used in pairs, an opening at the beginning <p> and a closing at the end </p>

  • What is an attribute?

An attribute contains extra information about the Element that will not appear in the content.

  • What is the anatomy of an HTML document?

The anatomy of an HTML document is how all the elements together work in conjunction to output a working web page.

<!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>Document</title>

</head>

<body>

    <h1>Hello, Moralis!</h1>

    <p>This is an update.</p>

</body>

</html>
1 Like
  1. HTML stands for HyperText Markup Language and acts as the skeleton of a website providing structure.
  2. It is the standard language used for pictures, text, videos and other media tools.
  3. We are learning this because the same structure applies when developing smart contracts
  4. Tags are the instructional piece of an HTML element
    5.Structure of a tag: <?><?/>
  5. An Attribute modifies or adds information to an element
    7.HTML, Head, and Body
  1. What is HTML?

HTML ( H yper T ext M arkup L anguage) is the code that 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. As the title suggests, this article will give you a basic understanding of HTML and its functions. 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. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

  1. What is HTML used for?

To define the structure of the content of a web page

  1. Why are we learning HTML?
    To learn how to give structure to a web page and make sense of its content.

  2. What is 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.
  • 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.
  1. What is the structure of an HTML tag?

    The main parts of our element are as follows:
  • 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.
  • The content: This is the content of the element, which in this case, is just text.
  • The element: The opening tag, the closing tag, and the content together comprise the element.
  1. What is an attribute?

Elements can also have attributes that look like the following:


Attributes contain extra information about the element that you don’t want to appear in the actual content. Here, “class” is the attribute name and “editor-note” is the attribute value. The “class” attribute allows you to give the element a non-unique identifier that can be used to target it (and any other elements with the same “class” value) with style information and other things.

An attribute should always have the following:

  • 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 equal sign.
  • The attribute value wrapped by opening and closing quotation marks.
1 Like

HTML?
Hyper text markup language

Use?
Used to define the structure of your content. Defines its appearance.

Why Learn it?
It is the basic code used to structure a web page and its content.

HTML Tag
Tags enclose the element name for example P which is used to define paragraph.
most tags are used with opening and closing tags where the content is placed in between the tags.

content


closing tags include a / this marks where the content of that element ends.

HTML structure
opening tag <>
closing tag </>
content goes between opening and closing tags
element is defined by the combination of these including the name of the element which is placed on the opening tag

ATTRIBUTE
gives additional information about the element. could define a class, the location of an image, different properties, etc.

ANATOMY of HTML doc
<!doctype html> defines the rules that are used in set document

tags wrap entire content of site. sometimes referred to as root element tags include additional information that in not included in the content of the site. could things such as description of site when looking in search engine. could define general attributes such as the css file that define how the site looks. defines the characters that your content uses. common characters used in most languages. defines the title that is visible in the websites tab where all the visible content of the site is placed.
1 Like
  1. What is HTML? HTML is a markup language that defines the structure of your content.

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

  3. Why are we learning HTML? To structure a web page and its content

  4. What is an HTML tag? Used to make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

  5. What is the structure of an HTML tag?opening and closing angle brackets: <> </>

  6. 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 the following:

    • 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 equal sign.
    • The attribute value wrapped by opening and closing quotation marks.
  7. What is the anatomy of an HTML document? 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.

1 Like

1. What is HTML?

It is a markup language that defines the structure of your content

2. What is HTML used for?

It is markup language that are used to create and structure a web page and its content.

3. Why are we learning HTML?

It is the possbility that we will need to create websites for ourselves or others in the near future and HTML is the markup language to define the content of the websites, not only for humans to read but for bots eg; google indexing robot.

4. What is an HTML tag?

Tags can make a word or image hyperlink to somewhere else, can italicize words, can make font bigger or smaller.

5. What is the structure of an HTML tag?

It starts with an opening tag, content then closing tag to make an element complete.

6. What is an attribute?

It contains 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 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>

This is an example of HTML tags/ Elements and what an anatomy of an HTML document should look like or have and will always have to start off with. These combination of elements will make an HTML document functional.

1 Like
  1. What is HTML?
    Hyper text markup Language

  2. What is HTML used for?
    It is used to structure your language to make it act or behave a certain way

  3. Why are we learning HTML?
    It is the starting point for all developers and any future web developments

  4. What is an HTML tag?
    Tags are used to form elements. They can also specify what type of content you are writing

  5. What is the structure of an HTML tag?
    The structure of an html tag can contain content, attributes, img, etc. Tags start with <?> and end with opening and closing tags

  6. What is an attribute? Attributes contain extra information about the element that can be hidden. ex. class and then a value. It reminds me of a variable

  7. What is the anatomy of an HTML document?

It contain s DOCTYPE html> makes sure the document behaves correctly,html> this contains keywords for search engines and all other things you would like to include on the html page, meta charset=“utf-8”> sets the character set, title page body>all the content headbody>

1 Like

Answers:

  1. HTML stands for Hyper Text Markup Language, it is the code that is used to structure webpages.
  2. HTML is used to structure the content of a webpage.
  3. We are learning HTML because we want to create functional webpages.
  4. Tags are used to create elements and looks something like this: f.e.:

  5. To make sure the webbrowsers correctly executes the HTML code we structure tags with opening and closing tags, to define where the element starts and ends in the document.
  6. An attribute is used to add extra details to an element, these details do not appear in the actual document / webpage
  7. The anatomy is the combination of elements to make a functional HTML page.
1 Like
  1. HTML - HyperText Markup Language.
  2. HTML gives a structure to the content.
  3. HTML is a bone structure of the whole web page.
  4. HTML Tag is an element that defines how a specific part will look on the web.
  5. An opening Tag is <“opening tag”> , closing Tag is </“closing tag”>
  6. Attribute is extra information about the element.
  7. First there is a Doctype element, then goes Html, then Head, then element that defines languages characters, Title and Body.
1 Like

1. What is HTML? - Markup language, hence the name.
2. What is HTML used for? - Used to create the structure of a web page.
3. Why are we learning HTML? - We learn it both in order to be able to create the frontend of a blockchain application and to have an easy introduction to further concepts.
4. What is an HTML tag? - The markers used to signal the beginning and ending (in some cases just the beginning) of a piece of content - or in better words of the HTML element.
5. What is the structure of an HTML tag? - Most tags are made up of a beginning and end tag, but some of them only need a beginning tag (see the tag).
6. What is an attribute? - A property of an HTML element, used in the opening tag to provide extra-information about that element. They are structured as name of the attribute and value of the attribute. Ex.: class=”button-secondary”.
7. What is the anatomy of an HTML document? - The first piece of info is the doctype, which nowadays is needed but serves little purpose. This is followed by html tags, inside which are nested the head tags, which contain meta tags and other pieces of info like CSS or links, and lastly the body tags which contain the actual content of the page.

LE: So it seems that HTML tags don’t go inside this text editor and weren’t displayed when the message was posted. My paragraph was a bit dumb saying tags go inside of tags and then you have some more tags :))

1 Like
  1. What is HTML?

HTML stands for HyperText Markup Language. It is the language / code used to structure a webpage and its contents.

  1. What is HTML used for?

HTML is used to create a web page that is readable to humans as well as robots (eg. Google search algorithm).

  1. Why are we learning HTML?

We are learning HTML to create the front-end of the web page / application where users can interact with our smart contract.

  1. What is an HTML tag?

Tags are used to create elements.

  1. What is the structure of an HTML tag?

HTML tags should have both and opening tag and closing tag. An opening tag includes an element wrapped in angle brackets and the closing tag is the same except there is a slash ("/") in front of the element name.

  1. What is an attribute?

An attribute provides extra information about the element that is not shown on the web page. It is made up of an attribute name and attribute value (eg. class=“xxx”).

  1. What is the anatomy of an HTML document?

There are 6 main elements in the anatomy of an HTML document:
(1) doctype - doesn’t do much but required to make sure document functions correctly
(2) html - wraps all contents of the web page (root element)
(3) head - container for collection of metadata for the document (stuff that you want to include that isn’t the content)
(4) meta - represents metadata that cannot be represented by other HTML meta-related elements (eg. character set)
(5) title - title that appears on the browser tab
(6) body - contains all the content to be shown to users

1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    It is used to structure a webpage and its content

  3. Why are we learning HTML?
    to learn how to build the front end of a website

  4. What is an HTML tag?
    It is used to format the content of a web page.

  5. What is the structure of an HTML tag?
    It starts with an opening tag, the content(element), then the closing tag.(e.g.

    content

    )

  6. What is an attribute?
    It provides extra information in the element that the user cannot see.

  7. What is the anatomy of an HTML document?
    It begins with a !DOCTYPE html tag, header(usually with an html boilerplate enclosed) followed by a body.

1 Like
  1. Hypertext Markup Language
  2. HTML is used to structure a web page and its content.
  3. In order to create frontend interfaces.
  4. A tag is used for creating an element. Content between two tags can be changed or manipulated, ie bigger, smaller, hyperlink, etc.
  5. Opening tag, content, closing tag. Both tags have element in. Closing tag has a / before the element.
  6. Attributes contain information about the element that you dont want to appear in the actual content.
  7. Doctype, html, meta charset, title, head, body, img src, body, html
1 Like
  1. Hyper Text Markup Language
  2. HTML is used to structure a webpage and it’s content.
    3.So we can create and structure our own webpages.
    4.a bit of information on a website
    5.opening tag <> content closing tag </>, so for example

This is my first coding in html

6. an attribute contains more information about the element we dont want to show on screen 7.looks like this and then and wrapped in between the two tags is the head and body and other content
1 Like
  1. HyperText Markup Language
  2. HTML is used to structure a web page.
  3. We’re learning HTML because it is a building block for web development
  4. An HTML tag is an enclosing that wraps around content.
  5. The structure of an HTML tag is an opening tag and a closing tag.
  6. An attribute is extra information about the element that doesn’t appear in the actual content, but that helps you identify and use the element in some way.
  7. The anatomy of an HTML document consists of the doctype, element, element, character set element, element, and the element.
1 Like
  1. HTML ( Hyper Text Markup Language) is the code that is used to structure a web page and its content.
  2. To structure a web page and it’s content
  3. Because it is a basis programming language which is used everywhere, thereby it’s linked to CSS and javascript.
  4. A tag is used to open and close content.
  5. A tag consists of the name of the element, opening and closing angle brackets, the closing tag has a forward slash before the element name. Elements can also have attributes in them, these are included in the tag.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. the anatomy consists of doctype, the html element, the head element, an element to set the character set of the document, the title element and the body element.
2 Likes