HTML Reading Assignment

Hi @Nev,

Apologies for the delay in getting back to you on this.

Your answers are mostly OK :ok_hand:

Just a few comments…

Yes… this is the <html> tag. More generally, an HTML tag is part of an HTML element. Most elements have an opening tag and a closing tag , which enclose (wrap around) a specific piece of content.

You may have had a formatting error here. Take a look at this post which describes how to format the code you are posting here in the forum.

HTML tag structure:
<elementName>The content</elementName>

Take a look at this post for a more specific approach this question.

Hi @Kieran,
… and welcome to the course!

Apologies for the delay in getting back to you on this.

Your answers are mostly OK :ok_hand:

Just a couple of comments …

Yes… and more specifically it is used to structure a web page’s content by marking it up with different elements , which define how the different parts of the content should be displayed and/or how they should behave.

I think you may have had a formatting error here. Take a look at this post which describes how to format the code you are posting here in the forum.
Can you try posting your answer to Q7 again?

1 Like

Hi @Misterpow,
… and welcome to the course!

I think we need a bit more detail with some of these answers :wink:

…more specifically, HTML is a markup language. It is used to structure a web page’s content by marking it up with different elements , which define how the different parts of the content should be displayed and/or how they should behave.

Basically, yes…
…in addition, the element name goes between the angle brackets.

The link or image itself is the whole element. The attributes, here, provide the web address or file path. More generally, attributes add additional information about an element, and they can also serve as an additional marker, which can then be used to target the content with specific styles in CSS.

Take a look at this post for a more detailed approach to this question.

Keep on learning! :slightly_smiling_face:

1 Like

Hi @EOS_Cafe,
… and welcome to the course!

Nice answers :ok_hand:

Just a couple of comments…

I think you may have had a formatting error here. Take a look at this post which describes how to format the code you are posting here in the forum.

HTML tag structure:

<elementName>The content</elementName>
opening tag             closing tag

Yes :+1:
Take a look at this post for a more detailed approach this question.

1 Like

Hi @umeshusoda!
…and welcome to the course!

Nice answers :ok_hand:

I think you may have had problems formatting your code for your answers to Q5 & 7. Take a look at this post which describes how to format the code you are posting here in the forum. It will then be visible, and displayed correctly.

1 Like

Hi @HenryVlll,
… and welcome to the course!

Your answers are mostly OK :ok_hand:

Just a few comments…

Yes… and more specifically, it is used to structure a web page’s content by marking it up with different elements , which define how the different parts of the content should be displayed and/or how they should behave.

What you are describing is an HTML anchor tag <a>
More generally, an HTML tag is part of an HTML element. Most elements have an opening tag and a closing tag , which enclose (wrap around) a specific piece of content.

Basically, yes… but most HTML tags don’t have to contain attributes — they are usually optional.

HTML tag structure:

<elementName>The content</elementName>

Take a look at this post for a more detailed approach to this question.

Keep on learning! :slightly_smiling_face:

1 Like

Hi @Belle3!
… and welcome to the course!

Your answers are mostly OK :ok_hand:

Just a couple of comments…

Yes…and it is part of an HTML element. Most elements have an opening tag and a closing tag , which enclose (wrap around) a specific piece of content.

What you’re describing is the structure of an HTML document, and is good detail, and all relevant to Q7).

HTML tag structure:
<elementName>The content</elementName>

Take a look at this post for an alternative approach to Q7 (about the anatomy of an HTML document).

Keep on learning! :muscle:

1 Like

Hi there, thanks for the reply . . .
I have edited, please take a look, thanks!

1 Like

That looks good now, @Kieran :ok_hand:

You may also be interested to take a look at this post which shows a more detailed approach to Q7 (about the anatomy of an HTML document).

Your answer is fine — this is just some extra information for you :slightly_smiling_face:

2 Likes

1.Hypertext Markup Language.
2.Used for web page structure and its content.
3.HTML works on front end where user interacts.
4.HTML tag controls the content e.g words or images to be displayed in web page or link somewhere.
5.structure of tag < > .
6.Attribute contains extra information about the element which we dont want to appear in actual content.
7. Anatomy of an HTML document is similar to a book where it shows the list of chapters, then pages linked with page number .
In HTML document it starts with the type of document, the root elements and the heads, sub head ,title and body .

1 Like

Thank you, Jon. :slight_smile:

1 Like
  1. Hypertext markup language
  2. To structure the content of the web page
  3. To be able to create your personal website which in future will be connected to the smart contract or other apps or some blockchain product.
  4. Is the beginning or closing of the element
  5. Is the container for all other html elements
  6. Extra information that you don’t want to appear in actual content
  7. Couldn’t add < >
    DOCTYPE
    html
    head
    /head
    body
    /body
    /html
1 Like
  1. What is HTML?

HTML is not a programming language, but a markup language. It basically tells a web browser what to show on a website and how to show it, with basic functionality.

  1. What is HTML used for?

It defines the structure of content (mainly in websites), for example the size of font for some text or telling a browser to display a certain image in a certain spot.

  1. Why are we learning HTML?
  • To be able to program simple websites and front-ends

  • To prepare for JavaScript and Solidity

  1. What is an HTML tag?

An HTML tag defines how a certain piece of content is displayed. It signals the browser “show this specific piece of content in this specific way.”

  1. What is the structure of an HTML tag?

Most HTML tags consist of a starting and a closing tag, that “wrap around” (are placed before and after) the content that they influence. Inside these tags can be additional information about how to handle and display the content.

  1. What is an attribute?

A piece of code that specifies an HTML tag further. One could say the HTML tag tells the browser the general action that it’s supposed to to, while an attribute tells the browser more details (which are often essential) about the action.

  1. What is the anatomy of an HTML document?

1 Like

HTML stands for HyperText Markup Language

HTML is simple code used to build the structure of a website.

It’s important to learn HTML to know the basics and most simplistic form of coding for a website, where we will be able to create a simple user interface for our blockchain smart contracts to interact with.

An HTML tag is text that is enclosed in angle brackets at the beginning and the end of an element.

Opening Tag -> Content -> Closing Tag
All of the above are included as an Element

An attribute is extra information for the element that you don’t want included in the content.

1- The DOCTYPE, and then opening tags.
2- the “root element” (<html>) ,
3- the Head element, which provides information not meant for the viewers
4- <meta charset= ___ > which sets the character set of the content
5- the <title> element which sets the text for the top of the browser page/tab.
6- the <body> element which contains all the content meant for the users to see, including images, links, text, etc.
7- then all the closing tags.

2 Likes

Thanks Jon, that’s great. We needed that feedback. We are, Piran 13, Odin 10 and old dad lol. We are at dad’s week on week of and doing this course every other week.
Many thanks Piran, Odin and dad

Miles lavers

2 Likes

1.What is HTML?
Answer: Hypertext markup language - is the code that is used to structure a web page and its content.
2.What is HTML used for?
Answer: it is a markup language that defines the structure of content of web pages.
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.
3.Why are we learning HTML?
Answer: For our purposes HTML will be used to create a user interface for a system we wish to have accessible on the web
4.What is an HTML tag?
Answer: Tags define boundaries for an element on a web page. Elements can be nested.
5.What is the structure of an HTML tag?
Answer: Opening tag , content (for instance text or image), closing tag
6.What is an attribute?
Answer: Attributes have extra information about the content of the element
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?
Answer:

— the doctype. It is 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. — the element. This element wraps all the content on the entire page and is sometimes known as the root element. — the 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. — 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. — the 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/favourite it. — the 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

Hey Jon, Thank you for your reply to my lazy answers. :slight_smile: It was late and I run out of juice! :smile:
Keep up the good work!

Mario

1 Like
  1. HyperText Markup Language, a language for structuring websites
  2. To structure websites, defining the structure of the content of the page
  3. to be familiar with the very basics of websites
  4. the start and end of an element, between the brackets with a name of the tag.
  5. content
  6. extra information about the element, not appearing in the actual content
  7. the structure of individual HTML elements, standard format - head elements and body elements
1 Like
  1. HTML is Hyper Text Markup language.
  2. It is used for creating the basic structure and a websites content.
  3. So we can grasp the basic foundation of the front end of a website.
  4. A tag is the beginning and the end of an element.
  5. Opening tag-Content-Closing tag
  6. Extra info about the element that you do not want included in the content
    7.Doc. Type
    Header
    HTML
    Meta Char Set
    Title
    Body
1 Like
  1. HTML or Hyper text markup language defines the structure of content for web pages displayed in browsers.
  2. HTML is used for laying out the structure of content on web pages
  3. We need to know HTML to understand how the front end or web facing content of our projects work & are received by those who view them.
  4. An HTML tag is a defining set of characters that determines where an element begins & ends.
  5. An HTML opening tag is a pair of angle brackets that define where an element begins. < >
    They are always followed by a closing tag < /> that define where the element ends.
  6. An attribute is a sub set of information within an element that is visible within the code but not displayed on the web page.
  7. The anatomy of an HTML doc consists of elements, markup, text, tags & hyperlinks.
1 Like