HTML Reading Assignment

1 What is HTML?

HTML is a markup language that defines the structure of your content.

2 What is HTML used for?

HTML (Hyper Text Markup Language) is the code that is used to structure a web page and its content.

3 Why are we learning HTML?

for a base understanding of how web pages work and displayed.

4 What is an HTML tag?

tag is used for creating a oping and closing of information and how it is to be handled.

5 What is the structure of an HTML tag?

Opening tag then the content and the the closing tag this it the full element of the tag

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?

Doctype at top

HTML oping tag

head tag and information and closing head tag

body tag and information and closing body tag

closing HTML tag

1 Like
  1. What is HTML?
    Hypertext Markup Language is computer code used to structure a webpage (content), which uses a
    series of different elements.
  2. What is HTML used for?
    HTML is a markup language that defines the structure of your content on a webpage, so it can be
    seen on the world-wide-web.
  3. Why are we learning HTML?
    To obtain the knowledge on how to get familiar with coding by learning HTML.
  4. What is an HTML tag?
    A HTML tag is used to create an element by wrapping it with an opening tag and a closing tag.
  5. What is the structure of an HTML tag?
    An opening tag, the content, and a closing tag. Which comprises the element.
  6. What is an attribute?
    The attribute is information that might explain the code to someone who is looking over the code but
    will not show in the actual content.
  7. What is the anatomy of an HTML document?
    The anatomy of an HTML document is all the individual elements coming together to form an HTML
    Page, it consists of the doctype, html element, the head, the meta charset, the title, and the body
    which is the content you want to display.
1 Like
  • What is HTML?
    markup language that define a structure of a website content

  • What is HTML used for?
    allow a standard format from people using web browsers to read content

  • Why are we learning HTML?
    to understand the structure of basic websites where our main content would be display for crypto, videos, text.

  • What is an HTML tag?
    'html tag are enclosures and tags are used. as an element creator; elements consists of the tags, with or without attributes enclosed by angled brackets; and inside those tags the text, image or links that are required to to display as content.

  • What is the structure of an HTML tag?
    tags are assigned variables in html enclosed by angled brackets. the tag to work needs and opening and closing tag: exmaple

    for paragraph


    note that , inside the closing tag has a “slash” telling that is the closing of the particular tag.
  • What is an attribute?
    attributes are additional values for the elements but don’t show in the actual content, attributes are inserted inside the tag’s angle brackets

  • What is the anatomy of an HTML document?
    is the main structure of the html document where the desired elements would be inserted
    the basic anatomy consits of the
    html
    head
    title
    body
    all of those with their respective closing brackets

2 Likes
  • What is HTML? hypertext markup language - universal language for web page formatting and root element.
  • What is HTML used for? To display sentences and images and image documentation on a web page.
  • Why are we learning HTML? to properly display content on a web page
  • What is an HTML tag? code to let the browser know how to display the content
  • What is the structure of an HTML tag? beginning element and closing element, which includes a forward slash.
  • What is an attribute? additional information to be inserted and includes an equal sign, to be followed by the attribute value.
  • What is the anatomy of an HTML document? Head/Title elements and Body elements
1 Like
  1. HTML is a markup language that defines the structure of a set of text. The content can however be a hyperlink or an image as well.

  2. HTML is used for displaying content called “elements” in various ways through tags.

  3. We need to learn HTML because it is related to user interface through websites. This information is necessary to learn when going into web 3 development with smart contracts and such.

  4. HTML tags defines where an element will start or end.

  5. The opening tag consists of the the name of the element in angled brackets. . Then the closing tag consists of the same element but with a slash.

  6. Attributes contain more information in the element that will not be displayed with the content of the element.

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Document</title>
</head>
<body>
    <p>T</p>
</body>
</html> 
1 Like

What is HTML?

    1. Hypertext Markup language. A language that defines the structure of your content.
  • What is HTML used for?
    1. IT is used to structure a web page and it’s content.
  • Why are we learning HTML?
    1. It is a necessary foundation for web and blockchain development.
  • What is an HTML tag?
    1. A piece of the language used to indicate the beginning and end of an element.
  • What is the structure of an HTML tag?
    1. Opening tag, Content, Closing tag. <> content </>
  • What is an attribute?
    1. An attribute is additional information about the element which would not appear in the actual content (e.g. Bold or italicized font)
  • What is the anatomy of an HTML document?
    1. The anatomy of an HTML document consists of multiple elements. These include: < !DOCTYPE html> (links to a set of rules HTML page needs to follow), < html> (wraps all content on page), < head> (contains everything included in page that isn’t viewable content), < meta charset=“utf-8”> (allows any textual content for input), < title> (appears on browser tab), < body> (includes all viewable content on page),
1 Like
  1. HTML is a markup language that defines the structure of your content.
    2.HTML is used to create the desired web page .
  2. We need to learn HTML so that we can create web pages by our own .
  3. a tag is used for creating an element.
  4. An HTML tag consists of an opening arrow bracket “<” and a closing bracket “>” with a desired command written in between them. There are two types of tags : an opening tag and a closing tag. For example

    and

    are opening and closing tags for creating a paragraph .
    6.Attributes contain extra information about the element that you don’t want to appear in the actual content.
  5. An HTML document consists of opening tags, closing tags, and the content.
1 Like
  1. Hyper-Text-Markup-Language
  2. Html is what gives structure to websites in the modern web age.
  3. We need html to create websites, which are the front-end of the dapps we will be making. This is how we get the information of smart contracts displayed onto a screen for users to interact with.
  4. an html tag is the syntax used for creating and storing html elements
  5. Almost every html element has an opening and closing tag, some html elements are self closing though.
  6. An attribute is meta data of an element. For example it can be a id, class, style information, input type, etc. It’s additional information about an html element, and what it can do.
  7. An html document starts with the tag that declares the type of code within the document. Then the html tag which contains all the html, then the head and body tags are on the next nevel, and the head tag contains metadata, stylesheets can be linked, and the website favicon, title, etc. The body contains the website you see, and is usually where all the code lives. Then under the body but before the html tag you place your javascript tags to link any js code you want as well.
1 Like

HTML is a markup language

HTML is used to define the structure of the content

To build websites and web apps

A HTML Tag names the Element

An opening HTML Tag is two angle bracket surrounding the tag name <p>
A closing HTML Tag is two angle brackets surrounding the tag name and a forward slash <p/>

An Attribute gives additional information to a tag

The anatomy of an HTML document starts with the <!Doctype HTML> tag
followed by <HTML> opening and <HTML/> closing tags
nested within the HTML tags are the opening <HEAD>, closing <HEAD/>
followed by the opening <BODY> and closing <BODY/> tags
nested within the HEAD you will find <TITLE><TITLE/> and <META> tags
nested within the BODY you will find <P><P/>, <OL><OL/>, and many more tags

1 Like
  1. HTML is a markup languaje that define the structure of the content.
  2. It is used to create a webpage
  3. It is basic understanding about website to be able to program in the blockchain later on.
  4. The tag can be use to hyperlink to a word or image, is part of the structure is always use to open and closed a line.
  5. Opening tag and closing tag. Typically with text in between.
  6. Attributes contain extra information about element but without appearing in the content. It can be use as identifier.
  7. Opening tag, closing tag, content and the element.
1 Like
  1. hyper text markup language
  2. 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.
  3. html is like the precursor to javascript.
    4.html tag is used to express what you are trying to do. example

    opening and closing tag.
    5.must have an open and close to express what you are doing.
    6.Attributes contain extra information about the element that you don’t want to appear in the actual content.
    1. 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.
  4. 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. The content: This is the content of the element, which in this case, is just text.
  6. The element: The opening tag, the closing tag, and the content together comprise the element.
1 Like

1. 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.

2. What is HTML used for?

  • HTML is used to apply content into the website which is then added CSS and Javascript and the likes to make a full website
    3. Why are we learning HTML?
  • HTML is the basic building block of creating a website because it contains most of the information present.

4. What is an HTML tag?

  • It is a line of code that is enclosed in less than and greater than symbols.

5. What is the structure of an HTML tag?
It starts with a “<” that is enclosed in a “>” and insert data here, then close it with another “<” but add a closing slash “/” and “>”

6. What is an attribute?

  • An HTML attribute is a piece of markup language used to adjust the behavior or display of an HTML element. For example, attributes can be used to change the color, size, or functionality of HTML elements.

7. What is the anatomy of an HTML document?

  • It consists of a head and body, and often includes a script and a style.
1 Like
  1. HTML is Hyper Text Markup Language
  2. HTML is used to structure a webpage and it’s content. It defines the structure of the content.
  3. It is the basics to then move on to bigger and better stuff.
  4. An HTML tag is something enclosed with < >. Also called HTML file. We put our content inside of the < >
  5. Simply written:

    My cat is very grumpy

    the ps enclosed are the opening and closing html tags.
  6. An Attribute is extra information about the element that you don’t want to appear in the actual element.
  7. An HTML document is made up of a bunch of elements.
    <! Doctype html>
1 Like

What is HTML?

HTML is the code used to create a web page and its contents.

What is HTML used for?

HTML is used to markup language that creates the structure of content.

Why are we learning HTML?

We are learning HTML so that we can structure content on a web page to appear a certain way, or act a certain way through wrapping elements.

What is an HTML tag?

An HTML tag can make a word or image hyperlink to somewhere else. It can italicize words and can change the size of fonts.

What is the structure of an HTML tag?

The structure of an html tag includes a series of elements:

The opening tag – the name of the element is wrapped in opening and closing brackets indicating where the element begins to take effect.

The closing tag – includes a forward slash before the element name indicating where the element ends.

The content - text

The element – combination of the opening and closing tag and content.

What is an attribute?

An attribute is extra information about the element that you don’t want to appear in the content.

What is the anatomy of an HTML document?

The anatomy of an HTML document combines elements such as doctype, html, head, UTF-8, title, body and image to create an HTML page.

1 Like
  1. A mark up language that defines the structure of content.
  2. Structuring a website
  3. So that both humans and machines can read our content
  4. It states the beginning and the end of an element.
  5. <html></html>
  6. It contains extra information about the element that you dont want to show up in the actual content.
  7. `
My test page My test image `
2 Likes

1 - Hypertext markup language
2 - create webpages
3 - as we still need to make new webpages, protoal has been updated over time
4 - In HTML a tag is used for creating an element
5 - used open anglebracket, then your text, the nforward slash and close anglebracket
e.g -
6 - Attributes contain extra information about the element that you don’t want to appear in the actual 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>
  • <!DOCTYPE html>doctype. It is a 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.
  • <html></html> — the <html> element. This element wraps all the content on the entire page and is sometimes known as the root element.
  • <head></head> — the <head> 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.
  • <meta charset="utf-8"> — 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.
  • <title></title> — the <title> 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/favorite it.
  • <body></body> — the <body> 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. What is HTML? hypertext markup language
  2. What is HTML used for? code that creates structure of a web
  3. Why are we learning HTML? basic thing to know how a code works
  4. What is an HTML tag? command in brackets
  5. What is the structure of an HTML tag? we have an opening tag and a closing.
  6. What is an attribute? extra thing to modify text or create a link
  7. What is the anatomy of an HTML document? opening tag, closing tag, content, element
  1. It is a code that is used to structure web pages and their contents
  2. It is used for presenting web pages in a browser
  3. As it is a base language for building web pages
  4. Tag is a part of an element which defines its purpose. There are two parts of a tag in an element. An opening tag and closing tag .
  5. Html tag is structured with angle brackets < and > and the name of the element, which is in between these brackets. Like
  6. Attributes are a part of the html tag that contains more information about the element which we do not want to be visible in the content.
  7. A set of html elements like,

1 Like
  1. What is HTML? The foundation of all web pages. Without it you won’t be able to organize text or add images or video to a web page . A more formal definition = HTML (Hypertext Markup Language) 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
  2. What is HTML used for? To structure a website (page) and consist of a series of elements which you use to enclose, or wrap , different parts of content to Make it appear a certain way , or act in a certain way .
  3. Why are we learning HTML? This is a foundation for webpage building, visualization , via specification of elements and tags for deploying smart contracts
  4. What is an HTML tag? A tag is used for creating an element . An element is the name used in angle brackets such as

    and that is an “empty” element The end tag is neither required nor allowed. If attributes are not mentioned default values are used in each case .

  5. What is the structure of an HTML tag? 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
  6. What is an attribute? An attribute extends an HTML or XML element, changing its behavior or providing metadata.
  7. What is the anatomy of an HTML document? Every HTML document consists of two elements:

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

Can be represented as follows >

  • < !DOCTYPE html>
  • < html>
  • < head>
  • < meta charset="…">
  • < title>
  • < body>
1 Like
  1. What is HTML?
    H yper T ext M arkup L anguage) is the code that is used to structure a web page and its content. HTML is a markup language that defines the structure of your content.

  2. What is HTML used for? To structure a web page and its content.

  3. Why are we learning HTML? HTML helps you to organize how you want your web page to look. It is like giving your web page a body/structure. Java Script will allow us to interact with the webpage. It is like giving your web page life.

  4. What is an HTML tag? A tag is used in creating an element. An element is a part of a webpage. In [XML] and [HTML], an element may contain a data item or a chunk of text or an image, or perhaps nothing. A typical element includes an opening tag with some attributes, enclosed text content, and a closing tag.

  5. What is the structure of an HTML tag? Opening tag: example:


    Closing tag: example


    An element: The opening tag, the closing tag, and the content together comprise the element.
  6. What is an attribute? Attributes contain extra information about the element that you don’t want to appear in the actual content. Example:

    My cat is very grumpy

  7. What is the anatomy of an HTML document?

  • <!DOCTYPE html> — It is a 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.
  • <html></html> — the [ <html> ] element. This element wraps all the content on the entire page and is sometimes known as the root element.
  • <head></head> — the [ <head> ] 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.
  • <meta charset="utf-8"> — 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.
  • <title></title> — the [ <title> ] 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/favorite it.
  • <body></body> — the [ <body> ] 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.

Below is a sample of the anatomy of an HTML Document.
image

1 Like