HTML Reading Assignment

7. What is the anatomy of an HTML document?

Indeed sir(s)/miss, 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
  1. What is HTML?
  • HyperText Markup Language. It is a code that determines the structure of content on a page.
  1. What is HTML used for?
  • It enables creation of static pages with text, images and links.
  1. Why are we learning HTML?
  • It is the basics of web development. Without understanding the basics, it would be difficult to understand anything further.
  1. What is an HTML tag?
  • Each element (paragraph of text, image, link) begins and ends with a tag. The tag determines what kind of element it is and how it will behave.
  1. What is the structure of an HTML tag?
  • opening tag:
    – angled bracket open <
    – abbreviation of the tag
    – angled bracket close >
  • closing tag:
    – angled bracket open <
    – forward slash /
    – abbreviation of the tag
    – angled bracket close >

Generally, you have to close a tag you opened. However, <img doesn’t have a closing tag.

  1. What is an attribute?
  • It contains some information about the tag that doesn’t appear on the page. For example, it can identify the element.
  1. What is the anatomy of an HTML document?
  • Doctype - states the type of the document and thus makes sure it behaves correctly.
  • html element - wraps all the content (both shown and not shown).
  • head element - content you need on the page, but don’t want to show. Page description, keywords for search results, character set.
  • meta charset element - specifies the charset you will use for the page. UTF-8 is good for most cases.
  • title element - sets the title that appears on the tab of a browser. It doesn’t appear on the page.
  • body element - all the content you want to show.
1 Like
  1. It is a type of markdown language prominent on web pages
  2. The placement of things on webpages, and the formatting of text on web-pages
  3. We are learning HTML as a prelude to learning Javascript. Javascript is the intereactive elements on web-pages
  4. An example of an html tag would be a header

    which is what is making this text big bold and sexy

  5. it surrounds the text it is formatting with its opening like this <> and its closing like this </>
  6. appears in the element and allows for editing later
  7. the elementas and attributes are not useful on their own; An entire documnet of html will feature other headers and intformation. For example

<!DOCTYPE html>

it typically starts wiith the element and ends

1 Like

1.hyper text markup language
2.to write in language computer understand… . Punctuation
3. to read and write in a computer language
4.enclosed <>symbols
5.a descriptor of the content
6.1.document type in html, then 2. head for heading in html 3.language type attribute Utf-8 ,title, body,close tag

1 Like

What is HTML? What is HTML used for?
Hypertext Markup Language is the code used to structure and build a webpage. It consists of elements, tags that enclose or wrap the content to make it appear a certain way, so that the browser displays a webpage as designed.
Why are we learning HTML?
To be able to build our own websites as well as be able to read the HTML language and understand it on our own and to be able to work with it.
What is an HTML tag?
A set of characters comprising a formatted command for a webpage.
What is the structure of an HTML tag?
A tag consists of the name of the element wrapped in opening and closing angle brackets e.g. <ol>. There is an opening and closing tag.
What is an attribute?
An attribute contains additional information about the element and modifies or provides functonality to certain types of elements.
What is the anatomy of an HTML document?
HTML document consists of a number of standard individual elements that provide and define its structure e.g. the head and the body as its two main parts.

<html>
  <head>
    <title>This is my title!</title>
  </head>
  <body>...</body>
</html>
1 Like

Hyper Text Markup Language

Every web page you see on the Internet is written using HTML code.

You can create the perfect web page for yourself, without having to pay others for it.

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.

The beginning tag consists of the name whereas the ending tag consists of the same name preceded by a forward slash ("/"). For example, the HTML tag “” begins a paragraph, whereas “” ends that paragraph. This is a syntax in HTML.

All HTML elements can have attributes, provide additional information about an element.

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

1 Like

What is HTML?
Hypertext Markup Language

What is HTML used for?
For creating basic static web content like text and its formatting, images, links, etc.

Why are we learning HTML?
So that we can build things that interact with blockchain that people can use on the web.

What is an HTML tag?
It precedes and comes after content and determines how the content will appear.

What is the structure of an HTML tag?
HTML tags consist various elements inside of opening and closing angle brackets.

and

are simple examples. They indicate that the content is a separate paragraph.

What is an attribute?
It provides extra information about an element that does not affect how the content will display, but may be used later to reference the element.

What is the anatomy of an HTML document?
An HTML document will have the following structure:

: A fossil from way back, but still necessary. : Wraps all other content. : Info like keywords, CSS, etc. : Sets character set. : Page title. : Page content, like text, images, etc.
1 Like
  • What is HTML?
    A: (Hyper text Markup Language) is the code that is used to structure a web page and its content.

  • What is HTML used for?
    A: HTML is used to structure a web page and its content.

  • Why are we learning HTML?
    A: To give a basic understanding of programming code. As we move to JS and C++ Solidity etc. it will make more sense.

  • What is an HTML tag?
    A: An HTML tag states where the element begins and ends.

  • What is the structure of an HTML tag?
    A: < HTML tag>
    for example: < p >

  • What is an attribute?
    A: Attributes contain extra information about the element that you don’t want to appear in the actual content. Attributes consist of name and value,

  • What is the anatomy of an HTML document?
    A: !doctype html> - sets rules for the HTML page to follow so it behaves correctly
    html> - wraps the contents on the page, also known as the root system
    head> - contains page info that is not content & that you don’t want the viewer to see. (keywords, page description, css, character set, etc…)
    meta charset=“utf-8”> - character set of the document, to handle textual content
    title> - sets the title of the page, which appears in the browser tab
    body> - contains the contents of the page ( text, images, video, etc…)

1 Like
  • What is HTML?
    Answer: Hyper Text Markup Language
  • What is HTML used for?
    Answer: It is used to structure a web page and the content of that page.
  • Why are we learning HTML?
    Answer: It is a great starting language. You see instances of other languages in it. In order to develop blockchain businesses you should know something about web pages.
  • What is an HTML tag?
    Answer: HTML consists of various “elements” to “enclose” and “wrap” information about a page. Elements are created by indicating at “tag” to start the element and the same “tag” with a / to indicate the element is closed.
  • What is the structure of an HTML tag?

I am hungry

|| or you could say element * What is an attribute? Answer: An attribute is extra information about the element which you don't actually want to have appear on the page. It is a kind of note to self or note to the program readers. For example: class "note to self" > element

The attribute “class” is indicated then the “note to self” is the content of the attribute.

  • What is the anatomy of an HTML document?
    Answer:
</body<
  1. HTML is a Hypertext Markup language that is used to code and structure web page. It also consist of series of elements.
  2. It is used to enclose or wrap different parts of the content to make it appear in a certain way or act a certain way.
  3. Learning HTML allows content creators to set up their web page in the way they want and understand how fun it is to build stuff on the web once they have the knowledge and tools.
  4. The HTML tag can make a word or image to hyperlink to somewhere else just like some one tag you FB so that you can view their image or writing.
  5. The structure of the HTML start with opening tag like this

    with content inside mainly text and end with closing tag

    including forward slash.
  6. The attribute are extra information about the element but don’t want to include in the content.
  7. The anatomy of an HTML document are doctypes that act as links to set of rules need to follow in order to consider good HTML. For instance, the < html> wrap all the content on the page known as root element The contains all of the stuff to display and contains all the content such as images, videos etc.
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.

5. What is the structure of an HTML tag?

HTML tags are like keywords which defines that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML content and a simple content. HTML tags contain three main parts: opening tag, content and closing tag. But some HTML tags are unclosed tags.

Structure:

<tag> content </tag>

Hope this gives you a clear picture of the subject.
If you have any more questions, please let us know so we can help you! :slight_smile:

Carlos Z.

1. What is HTML?

  • Is not a programming language, it is rather a markup language, to structure a content in HTML

2. What is HTML used for?

  • To design a web site with a limited functions such as texts, images, and links. It is STATIC.

3. Why are we learning HTML?

  • Its is essential and a basic necessity for designing own web site, which enables us later to communicate, with the dapps in blockchain. (Frontend <-> Backend).

4. What is an HTML tag?

  • it is an opening an enclosing element, wrapped in an angel bracket < > , </ >.

5. What is the structure of an HTML tag?

  • It wraps all the content in the entire page, sometimes is known as the root element.

6. What is an attribute?

  • It is an information in the element hidden for viewers.

7. What is the anatomy of an HTML document?

  • When different individual elements combined to form a structured HTML page. Such as html, heading, subheading, title, body…
1 Like
  1. HTML is a hypertext language not a programming language. It is arranged in a series of elements that wrap around content to present or behave in particular manner in a web page.
  2. The creation of page of text or images on a website.
  3. To get the building blocks to present an idea or construct one on the web. In effect creating a
    home/address for your endeavor.
  4. Tags are the components that create elements to present text and images on a web page.
    5 opening tag - content- closing tag. Opening tag is angle bracketed, content is hyphened and closing tag uses a slash /.
  5. Attributes are extra information about the elements that you do not want to see when presenting content.
  6. < ! DOCTYPE html > Protocol to insure proper html.
    < html > < /html > Root element that wraps all content.
    < head> < /head> Headers
utf-8 is a character set that covers most languages. Opening and closing a header. main body of content you want to present on a web page.
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.

  1. markup language that defines the structure of your content
  2. code to structure web page and content
  3. to make content appear a certain way, or act a certain way.
  4. to identify and element and signal the opening and closing of that element
  5. name of the element wrapped by angle brackets and in case of closing tag a forward slash in addition.
  6. extra information that you don’t wanna have appearing in the content of the element.
    • doctype
    • html element
    • head element
    • optionally: metacharset element
    • title element
    • body element
1 Like
  1. What is HTML?
    HTML is a markup language, which means it defines a structure in the form of elements for the layout of a webpage. A sort of a mapping of elements of content you put together in your webpage/site to which defines how you wish to present your page.
  2. What is HTML used for?
    It is used to create webpages, by formatting text in your arrangement of titles, headings, graphics and links. your page layout in code.
  3. Why are we learning HTML?
    As per your video we are going to create a website in which to incorporate blockchain protocol.
  4. What is an HTML tag?
    Is an HTML element/code to format content of your webpage, a container for HTML elements. Tags provide a direction on how you wish to provide the visual content of your webpage.
  5. What is the structure of an HTML tag?
    Opening and closing tags of your content presentation. Tells the computer in code opening tag then this is what I wnat yo to present, in element then closing tag. A sort of rap of elements.
  6. What is an attribute?
    An attribute is a way of describing the characteristics of an HTML element. Provides extra information about a element like an image-text size, color, font style, size, and more.
  7. What is the anatomy of an HTML document?
    DOCTYPE HTML, <html></html> root element that wraps the content on the entire page.
container for all the stuff you want to include on the HTML page that isn't the content, keywords, page description, CSS, character set declarations <meta charset="utf-8" handle any textual content you might put on it. incloses you page title as ti appears on your browser tab. Describes page content. code of all the content you want to present in your webpage. meat an bones of your website.
1 Like

sorry ran out of space. Bobchain

  1. A markup language
  2. To arrange elements on a website
  3. We are learning HTML to make static websites
  4. Something designating where the element is
  5. Opening tag, content, closing tag (tags have names inside)
  6. Info about the element you don’t want to appear
  7. Doctype, html/root, head (content not shown on page), charset utf-8 (to make it run), title, body (everything on page)

Hi there, great answers!, But one number 5, we have empty tags , they do not have closing like and
.

2 Likes