HTML Reading Assignment

  1. Hypertext Markup Language
  2. It’s a language that uses text to structure the information on the Internet.
  3. Because it’s one of the fundamental building blocks of the world wide web.
  4. It’s a symbolic way of grouping elements into certain categories.
  5. Element:
    opening tag


    content
    closing tag

  6. An attribute has the extra information about the element (it does not appear in the actual context).
  7. The anatomy of the HTML document is all the individual elements combined to form an entire HTML page.
1 Like

Jon_m

I thought that i had answered the question on html Structure

html Structure includes
html open and close tags with the head and body open and close tags and inside the head body you have your nested tags

1 Like

Hi @Gae_mon,

My understanding is that ASCII keys are only for encoding characters — which is still text. Sorry, if I didn’t make myself very clear, but I meant that HTML tags can enclose a much wider range of content than just text/characters e.g. images, videos etc.

Also, have another quick look at your updated anatomy: most of the closing tags have back slashes instead of forward slashes :wink:… and <meta> elements should be nested within the <head> element. Other than that it looks good :ok_hand:

2 Likes
  1. What is HTML? HTML is not a programming language, it’s a markup language that defines the structure of the programmers content. Hyper Text Markup Language.

  2. What is HTML used for? It brings to life a webpage by taking a series of elements, that are used to enclose different parts of content to make it appear and work a certain way.

  3. Why are we learning HTML? Its important to understand HTML as it is the canvas for your masterpiece.

  4. What is an HTML tag? Two types of tags. Opening and closing, opening states where the element is to begin, and the closing states where the element will end.

  5. What is the structure of an HTML tag?

    for the opening tag and

    for the closing tag.

  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 have a space between it and the element name, be followed by an equal sign, and be value wrapped by opening and closing “quotations”.

  7. What is the anatomy of an HTML document? Combining individual elements to form an entire HTML page.

1 Like

7. What is the anatomy of an HTML document?

Indeed sir(s), 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
  1. What is HTML? Hypertext Markup Language. The code used to structure a web page and its content.

  2. What is HTML used for? It is used to define the structure of content using a series of elements.

  3. Why are we learning HTML? HTML Programming is a requirement for building web pages.

  4. What is an HTML tag? A tag in HTML is used for creating an element. There are Opening Tags and Closing tags, featuring the name of the element in the middle.

  5. What is the structure of an HTML tag? content

  6. What is an attribute? An attribute is any additional information about the element but not visible as actual content. An attribute is defined by a Name and a Value.

  7. What is the anatomy of an HTML document? when attempting to write out the anatomy, it seems that the “<” opening tag is making the rest of the element invisible once saved in this box. Therefore unable to write it as it would be coded but the anatomy consists of; Doctype -HTML-head-Meta charset=“utf-8” - title - body

1 Like

Good @Nalig4food :ok_hand:
You may also be interested to take a look at this post for a useful summary, with some more detail.

1 Like

Hi @C_P!
…and welcome to the course!

Yes, because it needs to be formatted:

To format your code in your forum posts, click on the </> icon in the menu at the top of the text editor. If you are on a new line that will give you 2 sets of 3 back ticks for a code block…
```
```
If you now input your code between these, you will end up with it nicely formatted.
To format a piece of code in-line you just need to do the same thing and you will get 2 single back ticks to wrap your code in.

I can see you had the same problem with Q5…

To practise formatting in these posts (you’ll need it a lot throughout the course, especially for posting your programming exercise solutions) either edit your original post (and let us know when you’ve done it) or submit a new post just with Q5 & 7 :slightly_smiling_face:

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

  2. What is HTML used for?
    Web and browser can display the web context properly

  3. Why are we learning HTML?
    Building web or else stuffs that related to web of web context

  4. What is an HTML tag?
    a tag is used for creating an element. such as <p> for paragraph, and there are opening tag and closing tag

  5. What is the structure of an HTML tag?
    a pair tags opening tag and closing tag in a html structure

  6. What is an attribute?
    Attributes contain extra information about the element. 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. What is the anatomy of an HTML document?
    That wraps up the basics of individual HTML elements to form an entire HTML page
1 Like
  1. HTML is a markup language.
  2. In difference to a programming language it only defines the structure of a content. It consists of a number of elements.
  3. To build and understand frontend structure for blockchain dapps.
  4. It consists of the element name and starts and ends a specified element.
  5. Consists of name of element wrapped in opening and closing brackets
  6. Attributes contain extra information and can assign values
  7. It is the specified sequence that an html document ist written in.
    i.e. html, head, meta, title, body
1 Like
  1. What is HTML?
    HTML is not a programming language, it is a markup language that defines the structure of your content.

  2. What is HTML used for?
    HTML consists of a series of elements, which can be used to enclose or wrap different parts of the content to make it appear or act a certain way.

  3. Why are we learning HTML?
    It is important for any developer to learn because regardless of what you are building, you want people to be able to find a description (at the very least) of what you built. You can then show them on a website.

  4. What is an HTML tag?
    HTML tags are at the center of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.

  5. What is the structure of an HTML tag?
    A tag starts with an opening , has usually an attribute inside and finishes with a closing

  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?
    Opening tag, closing tag, content and element.

1 Like

7. What is the anatomy of an HTML document?

Indeed sir(s), you can check this example i post days ago so you have a better understanding on the HTML anatomy: HTML Anatomy example.

If you have any doubt, please let us know so we can help you!

Carlos Z.

1 Like

Thanks so much for explaining this, @jon_m much appreciated :slight_smile: See Questions 5 and 7 answered below:

  1. What is the structure of an HTML tag? The element is structured as the Opening tag, content and Closing tab as follows;
<Element> Content </Element>

7.What is the anatomy of an HTML document? See below:

<!DOCTYPE html>
<html>
<head>
<meta >
<title> content </title>
</head>
<body> content </body>
</html>


1 Like

What is HTML?
Hyper text markup language
What is HTML used for?
It is the markup language used to create static sites which consists of basic text, links, and images
Why are we learning HTML?
it is the absolute basic coding language used for a website
What is an HTML tag?
the name of the element typically has on open and a close
What is the structure of an HTML tag?
content for a typical tag structure
What is an attribute?
a way of controlling an element’s behavior
What is the anatomy of an HTML document?
html

1 Like
  1. HTML is a markup language that defines the structure of the content.
  2. HTML is used to make content appear or act in a certain way.
  3. We are learning HTML so we can create static web pages to later link blockchain programs to.
  4. Tags are markups that makes words or an images appear or act in a certain way.
  5. Structure of an HTML tag is name of tag wrapped in opening and closing angle brackets.
  6. An attribute is a extra info about the element that does not appear in content.
  7. HTML document consists of the following:
"image
1 Like
  1. it is a markup language that defines the structure of your content.
  2. you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
  3. gives us a basic understanding of HTML and its functions. It will help us with web development and blockchain in the future.
  4. 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.
  5. Might this be the structure

  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. You have the opening and closing tags with the content (text) and element within this.
1 Like

Thanks for pointing it out. I think it’s an unintentional formatting error.
Your answer to the 7th question is very helpful. Thanks!

1 Like

1 - What is HTML?

Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. 

2 - What is HTML used for?

HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.

3 - Why are we learning HTML?

HTML is used to create the web pages, hosted on a web server, that will call backend a blockchain and other online services(ex:DEX) via their APIs. 

4 - What is an HTML tag?

An HTML tag is a set of characters constituting a formatted command for a Web page.

5 - What is the structure of an HTML tag?

An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag that frame a particular piece of code, text or other tags. The beginning tag consists of the name, optionally followed by one or more attributes, whereas the ending tag consists of the same name preceded by a forward slash ("/"). For example, the HTML tag "<p>" begins a paragraph, whereas "</p>" ends that paragraph

6 - What is an attribute?

An HTML attribute is a characteristic of a page element, such as font size or color. Attributes are used to amplify a tag.

7 - What is the anatomy of an HTML document?

	<!DOCTYPE html>
	<html>
	  <head>
		<title>IB</title>
	  </head>
	  <body>
		<p>Being here, we are winning!</p>
	  </body>
	</html>
1 Like

Thanks for your correcting!

1 Like

1
HTML is the Hypertext Markup Language that gives structure to web pages.

  1. HTML is being used for giving structure to websites which include several media and structures like fotos videos etc

3 We need HTML as a base for going further in the interaction with smart contracts such as Ethereum, NEM. The back end and the front end connected.

  1. A tag is being used as a recognizeable peace of code in a website that can be used inside a browser for making a link to fotos, videos, structures

  2. An HTML tag consists of the name of the element , wrapped in opening and closing angle brackets.

  3. Attributes contain extra information about the element that you don’t want to appear in the actual content.

  4. the anatomy of a HTML document consists of the next pieces;

  • opening html-tag;
  • header and body element;
  • closing html-tag.
1 Like