HTML Reading Assignment

  1. HTML stands for HyperText Markup Laungauge
  2. HTML is used to structure the content on a website.
  3. We are learning HTML to be able to make a simple website.
  4. HTML tag is used for determining characteristics of its enclosed content, like for example, that the content is Italized, or it is hyperlinked to a different web adress or that it is part of heading etc.
  5. There are two types of HTML tags - opening and closing tag:
  • opening tag: it consists of < h1 >
  • closing tag: < / h2 > spaces are used so that it isnt used as actual HTML here.
  1. Attribute is an extra information about the element, that you dont want to be seen on the website.

  2. Anatomy of the HTML document consist of all the content on the entire page.

1 Like

1. What is HTML?

HTML stands for “Hypertext Markup Language”.
It is not a programming language but rather a markup language.

2. What is HTML used for?

It is used to give structure to content on a web page.

3. Why are we learning HTML?

Because a basic understanding is needed in order to build a simple website to interact with a blockchain.

4. What is an HTML tag?

A tag is used to open/close a element.

5. What is the structure of an HTML tag?

  • The opening tag : The name of the element between <> it starts the element.
  • The content : Text, links, images, etc
  • Closing tag : Name of element between </> it closes the element.

6. What is an attribute?

Attributes are extra information on a element you don’t want to appear in the content.

7. What is the anatomy of an HTML document?

<html> 
   <head>... </head>
   <body>...</body>
 </html>
3 Likes
  1. HTML is an acronym for “Hypertext Markup Language”.
  2. It can be used to provide structure to content of web page and give is some basic functionalities.
  3. Because basic knowledge of HTML is needed for creating a website and understanding how it works.
  4. HTML tag is beginning or ending of HTML element. Some elements have only beginning tag e.g. image tag.
  5. HTML tag opens and closes with angle brackets, with element name and optional attributes between them.
  6. An attribute provides additional informations about the element that won’t appear in actual content of the website. They are used for example to identify elements or to specify a hypertext reference.
  7. Anatomy of the HTML document is the entire content structure. The document begins with declaration of document type and all of it’s structure and content is within an html element. The root element consists head (metadata, e.g title or keywords) and body (actual content of the web page).
2 Likes
  1. What is HTML?
    Answer: Hypertext Markup Language

  2. What is HTML used for?
    Answer: HTML is used for defining the structure of content for a webpage

  3. Why are we learning HTML?
    Answer: We are learning HTML so that we can communicate content to the internet.

  4. What is an HTML tag?
    Answer: An HTML tag wraps or surrounds information for it to be displayed and perform in a specified way.

  5. What is the structure of an HTML tag?
    Answer: The structure of an HTML tag consists of an opening tag, content, and a closing tag. The opening tag, content, and closing tag comprised together create the element.

  6. What is an attribute?
    Answer: An attribute includes information that you don’t necessarily want to be displayed in your content. An attribute allows you to give the element a non-unique identifier that can be used to target it with style information or other identifiers.

  7. What is the anatomy of an HTML document?
    Answer: The anatomy of an HTML document includes HTML elements doctype, html, meta, head, title, and body.

1 Like
  1. Hypertext Markup Language

  2. Code that is used to structure a webpage and its content.

  3. HTML allow us to display information on a webpage and it is important because since everything we do is on the web, HTML knowledge is crucial to help us maneuver in this space.

  4. Tag is used for creating elements.

  5. Opening tag , closing tag

  6. Attributes contains extra information about the element that we don’t want to appear in the actual text.

  7. Individual elements combined to form an entire HTML page.

1 Like
  1. HTML = Hyper Text Markup Language.

  2. To structure web pages (static). The bones or skeleton if you will that ensures formatting of text and pics.

  3. To set up the proper foundation to build further on. Without it there’s nowhere to go programming wise.

  4. Represent whatever comes within the tags such as images, text, links etc.

  5. Tag name (character) of the element within in angular brackets indicating the tag’s purpose, usually in pair, one opening tag one closing tag.

  6. Attributes are information inside the element in question. They come specified in the start tag.

  7. The head and body elements - everything on the web page. The head usually contains logo and navigation tools and the body everything else.

1 Like
  1. What is HTML?

  2. A series of elements(

    things modifying something) in order to make the modified object appear a certain way.

  3. What is HTML used for?

  4. Changing colors, font, design, appearance etc of a specific frase or image.

  5. Why are we learning HTML?

  6. To be able to edit websites

  7. What is an HTML tag?

  8. An opening and closing operation that gives instructions

  9. What is the structure of an HTML tag?

  10. <(text)> (Edited text) </(text)>

  11. What is an attribute?

  12. Extra information about the edited text that will not show up to people.

  13. What is the anatomy of an HTML document?

  14. It is the whole structure of the HTML document. Head, Body, Everything.

1 Like
  1. it stands for “hypertext mark-up language”
  2. it is used to give structure to a webpage and the content inside of it
  3. so that we will be able to our work eventually on a website/on the front end
  4. HTML tags are the opening and closing markers placed around the content that indicate what the content should look like or how it should be structured
  5. opening tag: <?> and closing tag:
  6. attributes give extra or special information about characteristics of an element
  7. it consists of a head (the information about what your page will display) and a body (the content of the website)
2 Likes

What is HTML?

HTML is a markup language consisting of different elements.

What is HTML used for?

HTML is used for structuring a web page and its content.

Why are we learning HTML?

It’s important to understand HTML when building websites and creating projects that can interact with each other on the blockchain.

What is an HTML tag?

A tag is used for creating an element.

What is the structure of an HTML tag?

opening tag: <p> closing tag: <p/>

What is an attribute?

An attribute is extra information that won’t be seen in the content.

What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
	<head>
		<meta charset=“utf-8”>
		<title></title>
	</head>
	<body>
	</body>
</html> ```
1 Like
  1. HTML ( hypertext markup language) is the code that is used to structure a web page and its content.

  2. Building a website and creating contents.

  3. Cause its the foundation of blockchain development

  4. The enclosing tag can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

<p> hi there <p>
opening tag - content - closing tag
The whole is called element

  1. Attribute contain extra information

  2. very HTML document starts with the doctype element. It further consists of at least the HTML element which includes the head and body elements. The head element also includes the title element and the meta element.

1 Like
  1. HTML is the acronym for HyperText Markup Language
  2. Is the language used to create web pages. This language tells browsers how to display the content of a web page.
    3.HTML is the foundation of every website. Although technologies that dispense with HTML knowledge are even used today, it remains essential since the web browser only understands HTML, CSS and Javascript, so any other tool will transform the code into HTML internally.
  3. HTML tags correspond to HTML elements in a web page. They are an integral part of the composition of the page, as they allow the content to be structured and shaped.

Content among many others
6.Attributes determine certain information about the label (or how it acts) and are generally associated with a particular value.
7. <! DOCTYPE html>
< html lang = "es" > < head > < title ></ title > </ head > `

< body >

< header >

</ header >

< p ></ p >`

< div >

 ` `</` `article` `>      `

</ section >

` `<` `footer` `>`

</ footer >

</ body >

</ html >

1 Like
  1. HTML, hyper markup language is a markup language, not a programming language, and it is used to structure a web page and it’s content.

  2. It’s used for creating web pages and organizing the content.

  3. HTML has the basic building block we need to build websites and basic knowledge we will use in future programming.

  4. HTML tags are how Web pages are formatted it gives the browser instructions on what content to show and creating elements like italics, headings, embeded items etc.

5.The structure would have opening and ending tags with the content between them. < p >content< /p >

  1. Attributes modify elements and give extra information about the element that you dont want to appear in the content.

< html>
< head>

< /head>
< body>

1 Like

Thanks :pray: tell us all about that

  1. What is HTML?

HTML is a markup language, used in defining and structuring content within your webpage.

  1. What is HTML used for?

HTML is used in front-end web development, it assists in a clean construction of your webpage for user friendliness as well as capability of the page with the addition of elements.

  1. Why are we learning HTML?

Knowing HTML is integral to developing a full-product, that integrates fully with your webpage and others’ web browsers. It allows us to interface with the data and content much easier.

  1. What is an HTML tag?

Tags in HTML can modify words or images, allowing additional actions to be taken by users within the webpage.

  1. What is the structure of an HTML tag?

The opening tag, and closing tag, as well as the content within the element.

  1. What is an attribute?

Attributes contain extra information relating to the elements, but do not appear in the content seen within the webpage.

  1. What is the anatomy of an HTML document?

#1 Doctype, previously used as links to the HTML documents

#2. The HTML element, sometimes referred to as the Root Element.

#3. Head Element, which acts as a container for everything included in the webpage.

#4. Meta Charset, which is used to to standardize written language on the site.

#5. Title Element, which titles your webpage.

#6. Body Element, which contains all the content you wish to display to the user.

1 Like

1 & 2. HTML(HyperText Markup Language) is the code that structure websites. Text, pictures, and other static content.

  1. Though HTML is not a programming language, i’ts the entry level of CS languages. Great place to wrap your mind around the language of the web.

  2. HTML tag allows the static content to be viewed in different ways

  3. Moonshots

  4. Attributes are hidden(to the user) extra information about the content and how it appears.

  5. Wraps up the basics of the individual elements such as:

To write this, do this mean every attribute needs an = sign to equal the hidden info??

1 Like

What is HTML?
It is a markup language used to create content on the web

  • What is HTML used for?
    It is used to structure content and how the webpage is viewed by the user
  • Why are we learning HTML?
    Because HTML is the basics to understanding web and how it interacts with blockchain.
  • What is an HTML tag?
    A tag are used to make a word or image hyperlink to somewhere
  • What is the structure of an HTML tag?
    (OPENING TAG)

    CONTENT

    (CLOSING TAG)
  • What is an attribute?
    It adds other properties such as value that doesn’t appear in the actual content.
  • What is the anatomy of an HTML document?
  • followed by that wraps entire content on the page.
  • Then things included on the HTML page that act as the keywords
    and page description as it will appear in a search results.
  • this setst the title of your wbpage as it will appear in the browser tab
  • Which contains the core of what the user sees (text, images, videos, etc)
1 Like
  1. HTML is a markup language used in web pages.
  2. HTML is used to structure the web page
  3. HTML is used in the construction of web pages and it will help contain potential projects we build.
  4. HTML is used tags to open and close an element
  5. The structure of HTML has the content enclosed between opening and closing tags, tags are enclosed in greater than and lower than symbols.
  6. Attributes provide extra information about the element.
  7. An HTML document start with the declaration. Wrapped inside the element we have the content of the page.
1 Like
  • HTML is HyperText Markup Language
  • HTML is used to make page content look and feel a certain way.
  • We learn HTML to be able to make simple websites that can be displayed, which interacts with the blockchain.
  • an HTML tag is used to communicate to the browser the start and end of an element.
  • HTML tag structure has an opening tag, content, closing tag
  • an attribute gives information about an element but is kept hidden from displayed content
  • HTML document anatomy consist of the following elements:
    doctype html
    html (element)
    head (element)
    title (element)
    body (element)
1 Like
  1. HTML is a mark up language that defines the structure of your content.
  2. HTML is used to structure a web page and its content.
  3. So we will be able to design the front side of the dapp’s we will build.
  4. An HTML tag is used for creating an element in the web page.
  5. content </name of element> - opening tag, content, closing tag.
  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 is how all the individual elements are combined to form a entire HTML page.
1 Like
  1. What is HTML?
    Hypertext Markup Language. The language used to structure a webpage.

  2. What is HTML used for?
    HTML is used to structure website content.

  3. Why are we learning HTML?
    Websites are a big part of how users interact with the blockchain, therefor we need to know how to develop and maintain front end access points.

  4. What is an HTML tag?
    We use an HTML tag to create an element in the markup.

  5. What is the structure of an HTML tag?
    They have an open and close tag. Example:

<p>My cat is <strong>very</strong> grumpy.</p>
  1. What is an attribute?
    An attribute contains extra information about the element that you don’t want to appear in the actual content. For example a unique id can be assigned through an attribute that can provide power to apply style and other changes to the content with that unique id.

  2. What is the anatomy of an HTML document?
    An HTML document is composed of certain standardized elements that have elements within those elements that all browsers recognize.
    A basic structure of an HTML document is for example:

<!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>
1 Like