HTML Reading Assignment

  1. Hypertext Markup Language
  2. Used for all web pages to display content from the internet
  3. In order to display our work on the web as it can not be done with javascript (or others) by themselves
  4. An indicator telling the browser what type of document it is reading as well as indicating how to display text, background, or other variables that can have different appearances.
    5.use < and > with tag in question between them followed by the same thing but with a / before the tag word.
  5. an indicator specifying additional information for the element it pertains to
  6. It starts with and with at the end. Everything else falls between the latter 2 tags.
1 Like

An HTML is a hypertex mark up language that is a code that is used to structure a webpage and its contents. The content can be structured in a form of paragraphs, bullet points or images.

An HTML are codes used to build a web page, codes that create content that is readable for the web page viewers and some not readable but only for the developers notes.

We are learning HTML to understand how to code a web page.

An HTML tag is part of the elements of the complete HTML that has an opening and a closing

The structure of an HTML tag is an enclosed <> and </_>

Attribute is an additional information of the element that you dont want to show in the actual content.

The anatomy of an HTML , has an opening tag, a attribute, a value, a closing tag all of which makes up the element.

1 Like
  1. Hyper text markup language
  2. It s the coding language for the content of websites
  3. So we can create basic content for websites
  4. An html tag is in between a greater and less than sign
  5. inner content
  6. It is used to denote special charateristics of a tag
  7. It consists of the head, which proivdes the page titile and general page formatting and a body, which is the main HTML text
1 Like
  1. HTML is a markup language that defines the structure of the web page content.
  2. HTML is used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
  3. If there is a plan to create a cryptocurrency there should be a website to provide the connection between the user and the currency. That can be a website for the currency or some kind of websites that could be used as trading platform.
  4. HTML tag is a way to define where to put the content of each element. It is a code that opens and closes space for the content.
  5. The structure of the HTML tag consists the name of the element , wrapped in opening and closing angle brackets.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy of an HTML document wraps up the basics of individual HTML elements.
    The individual elements are combined to form an entire HTML page.
1 Like

1 HTML (Hyper text markup language)
2 Creating webpages
3 HTML is the prerequisite for the solidity course.
4 A tag tells the browser what type of content it is and how to display.
5 A tag starts with an opening <tag> and ends with a closing </tag>
6 An attribute specifies properties in the tag
7 An HTML page starts with the base <html> tag, with the <head> and <body> tags within.

1 Like

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