HTML Reading Assignment

  1. HTML is the code that is used to structure a web page and its content.

  2. HTML is used to edit and display information on a website.

  3. We are learning HTML in order to build and edit our websites, which will lead us to learn other languages and expand our knowledge, helping us understand the blockchain environment. HTML is needed to allow us the flexibility of creating our own web pages.

  4. A HTML tag is the section of code that goes at the start of the line and at the back of the line. This would be the name of the element, wrapped in opening and closing brackets.

  5. Wrapped in opening and closing brackets, at the start of the element and at the end. At the end however, the brackets also include a forward slash before the element name.

  6. Extra information about the element that one might now want to appear in the actual visible content.

  7. An HTML document consists of a doctype at the beginning. Then the root element is included which is the element. Next is the container element,. which is where you include all the information that the pages viewer cannot see. In this container, keywords are included. Next, the title element which sets the title of the page. Lastly, the body element, which contains all the information that can be shown to the visitors of the web page.

1 Like
  1. What is HTML?
    Hypertext Markup Language: “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.”
  2. What is HTML used for?
    It is used to display information on webpages such as text images, its like the skeleton of the front end.
  3. Why are we learning HTML?
    Because we are crazy!!! Also because it will be the final layout for the way our information will be displayed on our webpages.
  4. What is an HTML tag?
    It is a an acronym used to identify and recognize a particular section on the webpage
  5. What is the structure of an HTML tag?
    the open and opening tag ( < p > and < /p >) and between them the content
  6. What is an attribute?
    They are like adjectives that contain extra information about elements that you dont want to appear in the actual content
  7. What is the anatomy of an HTML document?
My test page My test image :slight_smile:
1 Like

HI @Diego_Sanin, fi you want to explains the html anatomy in code format, take a look at the picture below. :grinning:

Cheers,
Abel

2 Likes

What is HTML?
HTML stands for Hypertext Markup Language.

What is HTML used for?
It is language to structure the content of your webpage. You can change the “appearance” of your test on the website by kring HTML.

Why are we learning HTML?
To create a website/page.

What is an HTML tag?
tags provide the directions or recipes for the visual content that one sees on the Web.

What is the structure of an HTML tag?
Opening angle bracket, name of element, closing angle bracket. A closing tag also concludes a forward slash.

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?
The way a document is structured in a HTML page

1 Like

What is HTML?
HTML is a markup language that defines the structure of your content. 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.

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

Why are we learning HTML?
In order to format text as titles and headings, to arrange graphics on a webpage, to link to different pages within a website, and to link to different websites. HTML is a set of codes that a website author inserts into a plain text file to format the content.

What is an HTML tag?
HTML tags are used to format content on the webpage. Anyone who uses the Internet for marketing their services or even for personal use, uses this language to add creativity to their webpages.

What is the structure of an HTML tag?
HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content. HTML elements are represented by tags. HTML tags label pieces of content such as “heading”, “paragraph”, “table”, and so on.

What is an attribute?
Attributes contain extra information about the element that you don’t want to appear in the actual content. The class attribute allows you to give the element an identifier that can be used later to target the element 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.

What is the anatomy of an HTML document?
DOCTYPE declaration
Root Element
Head Element
Body Element
Putting it All Together
An Overview
Conclusion

1 Like
  1. HTML is the code that is used to structure a web page and its content.

  2. HTML are used to enclose, or wrap, different parts of the content of elemetns to make it appear a certain way, or act a certain way.

  3. Because it’s the basic steps for learning how to code.

  4. This element wraps all the content on the entire page.

  5. At the start <.>, at the end </.> .

  6. An attribute is a modifier of an HTML element type, which contain extra information about the element that you don’t want to appear in the actual content.

  7. It consist first on a single < !DOCTYPE html >, the < html > </ html > element, < head > </ head > element, < meta charset=“utf-8” > element, < title > </t itle > element and < body > </ body > element.

1 Like
  1. HTML is the code that is used to structure a web page and its content.

  2. HTML is used to define the structure of content. Making it appear, or act, in a certain way.

  3. We are learning HTML so that we can create basic web pages.

  4. A HTML tag is what is used for creating an element. They are what makes a word or image hyperlink to somewhere else, italicize words or change the font size etc.

  5. The structure of a HTML tag is as follows;
    The opening bracket, element (or end of element), closing bracket.

  6. An attribute is what contains extra information about the element that isn’t wanted in the actual content.

  7. The anatomy of a HTML document is as follows;
    doctype
    html
    head
    meta chartset
    title
    /title
    /head
    body
    /body
    /html

2 Likes
  1. HTML stands for hypertext markup language.
  2. It’s a programming code used to structure and organize websites.
  3. We need to know HTML because that is ultimately the design of the front end that users end up seeing even with dApps.
  4. tags serve to wrap an element, defining what type of element it is.
  5. The tag goes at the opening and closing ends of the element, surrounding the content of the element.
  6. An attribute is an additional structure you can add inside of an element, which can have varying use cases. The value/information of the attribute is something that won’t show up in the content seen by the end user, but can nevertheless serve useful functions for the overall website.
  7. The entire website document has to be wrapped by the element. Then, we have the head and title at the top. The head contains all the info about your site that you don’t want showign up to the end user. The title element is where you set the title of your site, which shows up in browser tabs, bookmark tiles, etc. Next we have the character set element, which defines what types of characters are supported by the website. Finally, the body element is where the bulk of all the content that you want displayed is found.
1 Like
<!DOCTYPE html>

<html>
   <head>
       <title> My Test Page </title>
   </head>
   <body>
      ADD INFORMATION... List, Tables, other Information, etc.
   </body>
</html>
1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup language, which is used to structure a webpage and its content.

  2. What is HTML used for?

    HTML is used for making websites. It allows the user to create structures, headings, paragraphs, links, images etc.

  3. Why are we learning HTML?
    So we can use the HTML/ Website that we build to transact with the future application that we will build.

  4. What is an HTML tag?
    HTML tags are hidden key words in a webpage that structure the content. Some come in pairs that open and close an element. For example < p > opens the paragraph and < /P > closes the paragraph.

  5. What is the structure of an HTML tag? < !DOCTYPE html > is the opening. < html > before the heading < head >; < meta charset =“uft-8” > for the language; < body > and the to close.

  6. What is an attribute?
    Contains extra information about the element that you don’t want to appear in the content.

  7. What is the anatomy of an HTML document?
    It is the markup language that defines the structure of the content of website consisting of elements and tags.

1 Like

7. What is the anatomy of an HTML document?

Indeed sir(s), you can check this example so you can have a better picture on the HTML anatomy: HTML Anatomy example.

Hope this gives you a clear view of the subject, keep learning! :slight_smile:

Carlos Z.

2 Likes
Oh, very cool!  Was just wondering how everyone else was doing that, lol.
1 Like

1 . HTML = Hyper text Markup Language. Defines the structure of your content. By coding in HTML, you make your website to look the way you want.
2. HTML is used to display particular content in your website.
3. We are learning HTML in order to be able to display a Simple GUI= graphic user interface in order to interact with the program behind, which we wrote.
4. HTML TAG = defines how your web browser must format and display the content. “TAGS” = identifying how the document should behave in a certain way.
5 .Attributes are a MODIFIER of an Element type. Attributes contains extra info about the element.
6. Anatomy of HTML document.
TAGS= are wrapping all codes
HEAD = CONTAINER for all the things you want to include in HTML page but isn’t the content you are showing to your viewers.
BODY= CONTAINER for all the thins you want to include in HTML page and content you are showing to your pages’s viewers

2 Likes

Welcome to the discussion about the first assignment.

Leave your answers to the questions below in this thread. If you have any questions or you want to discuss something connected to the assignment feel free to do it in this thread as well, but please everything to the topic of HTML!

1. What is HTML?
Hyper Text Markup language
2. What is HTML used for?
To structure the content on the web page
3. Why are we learning HTML?
To learn front end development
4. What is an HTML tag?
A element that holds the content
5. What is the structure of an HTML tag?
<> HTML tag </>
6. What is an attribute?
Information that won’t 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>
2 Likes
  1. What is HTML?
    It is a markup language that defines the structure of your content.
  2. What is HTML used for?
    You use it 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?
  4. What is an HTML tag?
    A tag that tells the browser that this is an HTML document.
  5. What is the structure of an HTML tag?
    opening tag, content then closing tag
  6. What is an attribute?
    attribute-provides additional information about an element.
  7. What is the anatomy of an HTML document?
2 Likes

1 HTML is a markup language that defines the structure of content
2 HTML is used for structuring web pages
3 To provide the front end UI of dapps
4 A tag is the name of an element
5 Opening tag, content, closing tag
6 Attributes contain extra information about the element that is not displayed with the content
7

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

I have decided to wait one day after reading the article to see what I remember, let’s see how it goes.

1 and 2. HTML stands for HyperText Markup Language, it’s the markup language used as base layer to describe layout, contents and characteristics of a web page (for example title, paragraphs, texts, images, hypertext references a.k.a links, etc.). It is NOT a programming language.
3. It is important to learn HTML (as well as Javascript) in order to acquire the skills needed to design and create the front-end interface that allows users to easily interact with our back-end blockchain.
4. HTML tags define elements with their type and properties. These tags can be nested in case, for example, an object is hierarchically “children” of another.
5. An HTML tag must be always encapsulated between opening and closing angle brackets. The closing brackets are the same as the opening with the addition of a forward slash, for example MY_TITLE .
6. An attribute is a property of a tag and it is defined in the opening angle brackets. A tag can have multiple attributes.
7. Doctype, root. The root contains head and body. The head contains charset and title, while the contents of the body can vary (for example paragraphs, images, lists, etc.).

1 Like
  1. HyperTextMarkupLanguage
  2. To build websites
  3. It is a foundational tool to use for blockchain development
  4. It communicates with the browser to determine how content is displayed
  5. The structure of a tag varies depending on what you want to accomplish, it will be encapsulated in <>.
  6. An attribute adds properties to the content included in the tag
  7. a. doctype, is required at the beginning
    b. the element, sometimes called the ‘root element’
    c. the element, things you want to include on your page that aren’t actually content
    d. the , sets the character set to UTF-8
    e. the element, sets page title
    f. the element, is the actual content you want displayed
1 Like
  1. What is HTML?

is a markup langue that defines the structure of your content

  1. What is HTML used for?

Html is the coding langue that is used to structure web page and its content

  1. Why are we learning HTML?

iti is a good starting off point for programming and a building block for other programming langues

  1. What is an HTML tag?

It is the root of the html document

  1. What is the structure of an HTML tag?
    this is the structure

    …

  2. What is an attribute?

are extra information about the element that doesnt appear in the actual content
7. What is the anatomy of an HTML document?
V=

My test page My test image

this is the example listed in the reading the combination of these above is the anatomy of Html, however not all these have to be invovled for instance My test image

  1. HTML = Hypertext Markup Language
  2. HTML is used for defining the structure of content on a webpage, which it can do through elements.
  3. We’re learning it to have a good foundation for building our own websites in the future.
  4. An HTML tag is something that specifies the kind of element you’re using. Some examples would be tags for specifying paragraphs or for embedding an image onto the webpage.
  5. The structure of a tag has the name of the element within angle brackets. If there is a closing tag (such as for the paragraph element) then there is a forward slash before the element name. Otherwise, if it is “empty” element, such as the img element, then there is a bracket at the end but no closing tag.
  6. An attribute is some additional information about the content in an element that doesn’t show up on the content of the webpage.
  7. An HTML document has the doctype and the following elements: html, head, meta charset=“utf-8”, title, and body
1 Like