HTML Reading Assignment

  1. Hypertext markup language, a language that defines the structure of your content.
  2. To structure a web page and its content.
  3. To learn how to program front end web that interacts with various block-chains.
  4. tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller.
  5. the opening tag, the closing tag, the content, the element.
  6. The attribute allows the element to be identified.
  7. the opening tag, the closing tag, the content, the element.
1 Like

7. What is the anatomy of an HTML document?
Hello sir, you can check this example i post days ago so you have a better understanding on the HTML anatomy: HTML Anatomy example.

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

Carlos Z.

1 Like

Still not getting much anatomy coming through :wink:
Is it a copy and paste, formatting issue?

In case you didn’t know, before you type in your code to post it here in the forum, click on the </> icon in the menu at the top of the text editor. You will see 2 sets of 3 back ticks.
```
```
If you now input your code between these, you will end up with nicely formatted code, which is then also easier for you to organise with the correct spacing and indentation etc.
You should end up with something like:

<!DOCTYPE html>
<html>
    
   <head>   
      <meta charset="utf-8">  
      <title>Text appearing in browser tab or when page bookmarked</title>
   </head>
  
   <body>

   </body>

</html>
1 Like
  1. What is HTML?
  • hypertext markup language
  1. What is HTML used for?
  • a workable layers to build on and to format what the end user sees on webpages browsing the internet.
  1. Why are we learning HTML?
  • Javascripts can bridge smart contracts and websites built with html together knowing basics of one of the main use cases for projects.
  1. What is an HTML tag?
  • a basic instruction usually formatting
  1. What is the structure of an HTML tag?
  • content

  1. What is an attribute?
  • extra information that you dont want exposed or shown in the actual element, usually a short hand identifier to be used to call back to later for style and other changes.
  1. What is the anatomy of an HTML document?
  • everything together the tags elements and attributes

@jon_m Much better articulated. Thanks for being so kind to drop your feedback!

1 Like

Q1 and Q2: HTML stands for Hyper Text Markup Language and is used to structure the content and text of a webpage.

Q3: To build up or knowledge and work our way up from the basics if we cant script a simple static website learning how to program games on ETH will be much harder.

Q4 & Q5: From what I gather a tag is used to name an element. In this example the opening tag contained the letter p meaning a paragraph and the closing tag also contained the letter p but since it is the closing tag it must first be followed by a forward slash to tell the computer it is the end of that element.

Q6: Attributes are extra info about the element that you dont want to show on the front end.

Q7: The anatomy of a HTML doc contains 6 different elements I should say. 1st is the doctype which when HTML was young was used as a ruleset to make sure the code was structured properly but now it is just needed as a starting point. 2nd is the root or HTML element and is used to wrap all the content on the entire page. 3rd is the head element and is used as a container for everything on the page that you do not want viewers to see. 4th is the meta chartset =“utf-8” element which I believe is used to allow the computer to understand most programming languages making it more universal throughout. 5th is the title element which just sets the title you see in the search bar and when you bookmark a site. The 6th and final element is the body which contains all the content that you do want viewers to see AKA the front end I believe.

2 Likes
  1. What is HTML? (Hypertext Markup Language) is the code that is used to structure a web page and its content.
  2. What is HTML used for? Programming websites and describing them so they can be rendered by browsers.
  3. Why are we learning HTML? So we understand the foundation of programming and then easier to employ on SC.
  4. What is an HTML tag? A tag deploys the start and end of sections in HTML
  5. What is the structure of an HTML tag?

    hello

  6. What is an attribute? Attributes contain extra information of a feature of an element or tag that you dont want to appear in the actual content.
  7. What is the anatomy of an HTML document?
    Doctype> sets the rules for the HTML
    HTML> strings the contents of the page
    Head> contains is the info Page description etc
    Body> is the content of the page text , images, video etc
1 Like

What is HTML?
What is HTML used for?
HTML is a markup language for defining the content of web pages.

Why are we learning HTML?
Web pages are used as an user interface to dapps.

What is an HTML tag?
They are used to mark content that is made to appear certain way.

What is the structure of an HTML tag?

  1. Opening tag wrapped in agle brackets. It can also contain attributes. They contain attribute name, equal sign, and the attribute value wrapped in quotation marks. 2) Closing tag is similar to opening tag, exept it contains forwad slash before the element name. 3) The content itself. 4) Opening tag, content and closing tag are called element.

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?

  1. Doctype definition 2) html-tag wraps all the content . 3) head-tag contains content that is not shown in the actual page, like keywords, page description etc. it also contains command, that sets the charset to UTF-8. 4) title-tag sets the title of the html page that is shown to the viewers. 5) body-tag contains all the data that is shown to the viewers.
1 Like
  1. HTML is a language used to describe the basic structure of a webpage.
  2. HTML is one of the ingredients used to build a website.
  3. We need HTML to build a webpage, which is an important part of any project (interface).
  4. A tag is the basic unit of HTML code, it describes a piece of the page.
  5. There is usually an opening and closing tag enclosing the content, and there can be attributes within the opening tag.
  6. An attribute is a parameter that can be passed to certain tags.
  7. The html documents consists of a head and a body; the head contains metadata and general formatting information, whereas the body is for the main content.
1 Like

Hi @Wevlin!

Some good answers :ok_hand:
We just need to add some more detail for Q5 & Q7 :

5. What is the structure of an HTML tag?
We need something that shows, or describes, this:

<elementName>The content</elementName>

7. What is the anatomy of an HTML document?

We need something like this (but don’t worry, we wouldn’t expect you to include the same amount of detail):

<!DOCTYPE html>
<html>     <!-- root element: encloses all of the content -->
  <head>   <!-- encloses everything that is not content displayed
                directly on the web page -->
    <meta charset="utf-8">   <!-- allows text containing most characters
                                  from most languages to be displayed -->
    <title>Text appearing in browser tab or when page bookmarked</title>
  </head>  
  <body>
    <!-- encloses all content displayed directly on the web page
         for users to see and read i.e. text, images, videos etc. -->
  </body>
</html>
1 Like

Hi @elez!

Nice answers! :ok_hand:

I think you had a formatting problem with Q5, and didn’t mean to just say hello! :wink:

Have a look at this post, which explains how to format and display your code in the forum. For Q5 you should end up with something similar to this:

<elementName>The content</elementName>
1 Like

Excellent answers, @tmalk! :muscle:

1 Like
  1. HTML, or (HYpertext Markup Language), is the code that is used to structure a page on the web and its content. HTML is not a programming language that many might believe at first sight.

  2. It consists of a number of “elements”, that you use to use in different ways to make your content appear in the way that you want it to.

  3. We are learning HTML so that we have a way of creating front-end code for our applications.

  4. A tag in HTML is used to define content on the web-page specified.

  5. An element is the entire section showed on the webpage. It consists of an opening tag, followed by the content, and then by a closing tag.

  6. Attributes contain extra information and/or instructions about the element that should not be visible on the front-end.

  7. The anatomy of an HTML document, is as following.
    1: Doctype
    2: Element
    3:head
    4: body

1 Like
  1. HTML is defines the structure of content. It’s markup language not programming language.
  2. HTML is used for structure a web pages and it’s content.
  3. It’s allways good to lern something new.
  4. Tags are creating (begin or end) an element.
  5. The opening tag, the closing tag, the content, the element.
  6. Atribute is charakteristic property of the element. Atribute contain extra information about element.
  7. doctype
    html
    head
    body
1 Like

What is HTML - Hypertext Mark up Lanuage

1 Like

What is HTML used for? To structure a web page ( code )

1 Like
  1. Hypertext Markup Language it is a markup language that defines the structure of your content.

  2. HTML is used to structure a webpage and its contents

  3. So we can integrate webpages into our code and have a place to display our work.

  4. HTML Tag tells the browser that this is an HTML document.

  5. The beginning tag consists of the name whereas the ending tag consists of the same name preceded by a forward slash ("/").

  6. An attribute specifies some additional properties regarding the content included inside a tag.

  7. Head elements – provides page title and general page formatting commands
    Body elements – put the main HTML text in this part.

1 Like
  1. What is HTML?

Commonly mistaken for a programming language, HTML is a markup language. Used to define the structure of content.

  1. What is HTML used for?

Used to wrap parts of the content to make it appear in a certain way. Such as making text more communicative and optimising parts of the page for SEO.

  1. Why are we learning HTML?

To understand the front end and optimise the user experience. All other programming languages needs a front end user interface that communicates with the observer.

  1. What is an HTML tag?

Tags are used to define the content to the web-browser.

  1. What is the structure of an HTML tag?

A tag starts with opening tag and a closing tag

  1. What is an attribute?

Extra information in an element, such as size and placement.

  1. What is the anatomy of an HTML document?

The combination of the proper tags and elements that together define a website.

1 Like

Hypertext Markup Language.
It is used to structure a web page & it’s content.
We r learning it to familiarize ourselves what code looks like & how it works.
An HTML tag is used to create an element.
Opening tag then a closing tag.
Attribute contains extra information about an element that you don’t want to be seen.
Anatomy of a html document has the doc type, html element, head element, meta character set, title element & body element.

1 Like
  1. What is HTML?
    HTML is a type of code

  2. What is HTML used for?
    HTML is used to structure text on a website

  3. Why are we learning HTML?
    To understand the basics of how a website’s content is created

  4. What is an HTML tag?
    A HTML tag determines how text should look on a website. Eg bolded words or paragraphs, bullet points etc.

  5. What is the structure of an HTML tag?
    A tag always has an opening and closing component. Eg. For bolded text Add text here

  6. What is an attribute?
    Attributes contain extra information that you don’t want to appear on the webpage

  7. What is the anatomy of an HTML document?
    Opening tag, closing tag, content and element