HTML Reading Assignment

  1. Hypertext Markup Language
  2. It is the code that is used to structure a web page and its content
  3. All websites use HTML so by having an understanding of how it works allows us to better understand how to do things in web3 environment
  4. A tag indicates a section of the webpage and defines how that particular section is formatted.
  5. The tab element starts with an opening tag. For a paragraph it would be

    and ends with a closing tag

    In between these symbols are the tab content that you wish to have displayed on the page using the element.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy consists of: Document type, heading, meta, title and body
1 Like
  1. What is HTML?

A HTML stands for Hyperlink Markup Language

  1. What is HTML used for?

HTML is used for constructing your page

  1. Why are we learning HTML?

So that we can understand the basics of programming to then go on to more complex languages and eventually program on the blockchain. Either front end or backend.

  1. What is an HTML tag?

A HTML tag is a line of code

  1. What is the structure of an HTML tag?

The structure of an html tag includes the element and content. Ex:
<p>This is a paragraph</p>

  1. What is an attribute?

An attribute is used inside of a element to further customize the content. Ex:
<a href=”www.yahoo.com”>Yahoo</a>

  1. What is the anatomy of an HTML document?
> <!DOCTYPE html>
> <html>
>   <head>
>  <meta charset="utf-8">
>  <title>Anatomy Of HTML</title>
>   </head>
>   <body>
>   </body>
> </html>
1 Like
  1. Hypertext Markup Language
  2. HTML is used for arranging content on web pages.
  3. We are learning HTML because you need the ability to arrange your dapps/services in a presentable way. Making some kind of project with no layout/design is not going to be attractive for new users.
  4. A tag is something you have to open and close. It defines what type of content is going to appear.
  5. Open <> , Close </>
  6. An attribute is a piece of content you want to include but not for the user to see. It can be used in the case of having a image on a site but some users are not able to see. So you make an attribute with text for them to read. It can also simply be an editor note.
  7. You have to specify the DOCTYPE, and that its a html file with
    You also have to select which characters are valid with meta charset.
    Always open and close everything. Be it titles, paraghraps, headers etc.
1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    It is the code used to design a web page – to structure its contents.

  3. Why are we learning HTML?
    We are learning HTML because it is the default language for designing web sites, hence the web.

  4. What is an HTML tag?
    Tags enclose content to style it or link it to somewhere else.

  5. What is the structure of an HTML tag?
    The opening tag, the content, then the closing tag e.g.

<p>hello!</p>
  1. What is an attribute?
    It contains information about the element that you don’t want to appear in the content of the web page.

  2. What is the anatomy of an HTML document?
    It contains these things:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>First HTML Page</title>
</head>
<body>
    <h1>Hello, Moralis!</h1>
    <p>This is an update.</p>
</body>
</html>
1 Like

1.What is HTML?
HTML is an acronym for Hypertext Markup Language. It defines the structure of your content.

2.What is HTML used for?
Code language consisting of elements to create a webpage.

3.Why are we learning HTML?
To build a webpage.

4.What is an HTML tag?
Wraps elements to make content appear a certain way.

5.What is the structure of an HTML tag?
opening tag, enclosed content, 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.

7.What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
  </body>
</html>

1 Like

What is HTML?
hypertext Markup Language.

What is HTML used for?
defining the structure of your content.

Why are we learning HTML?
frontend and setting paramotors IDK

What is an HTML tag?
instruction for the following line of code etc.

What is the structure of an HTML tag?
elements surrounding the attributes and/or some content. or maybe its: atribute=“noob” Content

What is an attribute?
extra info not shown to user.

What is the anatomy of an HTML document?

<doctype HTML>
  <HTML>
    <Head>
       <meta></meta>
       <title></title>
    </head>
     <body>
       <img>
     </body>
 </html>
  1. What is HTML?
    HTML is a hypertext mark up language.
  2. What is HTML used for?
    It is used for creating web pages.
  3. Why are we learning HTML?
    We are learning HTML to be able to understand how the web works and perform the necessary work.
  4. What is an HTML tag?
    Tag (opening and closing) is a line that says what is going to appear in a browser.
  5. What is the structure of an HTML tag?
    It consists the name of an element and angel brackets.
  6. What is an attribute?
    An attribute is a all the information that forms an element but doesn’t appear on the web.
  7. What is the anatomy of an HTML document?
<!doctype html>
<html lang="en">
<head>
  <title>Sample Web page</title>
</head>
<body>
  <p>Hello Moralis World!</p>
</body>
1 Like
  1. HTML stands for Hyper Text Markup Language
  2. It is used to provide the content and layout of a website page when viewed on a desktop or mobile screen via the internet.
  3. Because it is is a requirement to be able to understand and write HTML in order to build a website yourself rather than relying on a third party.
  4. A tag is used to create an element, nested element or empty element depending on the type of tag.
  5. This varies. Ordinarily there would be an opening and closing tag, for example

    , but if it is an empty element then there would only be a single tag, for example .
  6. An attribute provides a requirement within the HTML document, for example forcing the document to use non-default values such as charset (character set), providing a link to be followed such as href=https://academy.moralis.io/lessons/reading-assignment-html-2, or providing a value to be displayed, for example alt=Photo of zebra (alternative text)
  7. The basic anatomy of an HTML document will vary, but can include the page/title header followed by the document body, which in itself is likely to contain headings, paragraphs, links and images. ALl of these are set out in varied layouts as denoted by the individual developer, based on the requirements of each page.
1 Like

What is HTML?

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

What is HTML used for?

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

Why are we learning HTML?

To code and structure a webpage and content and the foundation for web and blockchain development

What is 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…

What is the structure of an HTML tag?

HTML tags contain three main parts: opening tag, content and closing tag. But some HTML tags are unclosed tags.

What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content. Here, class is the attribute name and editor-note is the attribute value. The class attribute allows you to give the element a non-unique identifier that can be used to target it (and any other elements with the same class value) with style information and other things.

What is the anatomy of an HTML document?

The way to code a website ;

1 Like
1. What is HTML?  

   Stands for "Hypertext Markup Language"	
	
2. What is HTML used for? 

   Used for web browser content layout formatting.
	
3. Why are we learning HTML?

   So that we can create a Web Browser Client for the application we will be creating in JavaScript
	
4. What is an HTML tag?

   It defines an HTML element such as a paragraph e.g "<p>"
    
5. What is the structure of an HTML tag?

   As in the paragraph example above e.g. "<p>Paragraph text</p>"

6. What is an attribute?

   Attributes contain formatting/style settings information for HTML elements. 
   These are commands only and their text does not appear as visible content on the page.

7. What is the anatomy of an HTML document?


a) <!DOCTYPE html> — doctype. It is a required preamble.
b) <html></html> the HTML main open/close tags
c) <head></head> Includes all information about the page that is not part of the content.
d) <meta charset="utf-8">  defines the character set you are using
e) <title></title> Sets the title of the page.
f) <body></body> Contains all of the content you wish to display for the page.

1 Like
  1. What is HTML?
    HTML is a markup language used to define the structure of content. It consists of a series of elements, which make parts of the content appear or act in a certain way.

  2. What is HTML used for?
    To structure content.

  3. Why are we learning HTML?
    To be able to create content for our page

  4. What is an HTML tag?
    A tag is what defines an element. Each element starts and ends with a tag, telling the whole element “what” it is.

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

  6. What is an attribute?
    An attribute contains additional information about the element, that doesn’t appear in the actual content. For example style information.

  7. What is the anatomy of an HTML document?

<!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
  • What is HTML?
    Hyper Text Markup Language. its code for the web.
  • What is HTML used for?
    its used for structuring a web page.
  • Why are we learning HTML?
    to give us a basic understanding of how code works.
  • What is an HTML tag?
    there is a closing and opening tag that is used to create an element.
  • What is the structure of an HTML tag?
<p></p>
  • What is an attribute?
    its used in an element to contain extra info.

  • What is the anatomy of an HTML document?

<!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
  1. Hypertext Markup Language
  2. It’s the code that is used to structure a web page and its content
  3. HTML is important to learn as a foundation for web development and blockchain development
  4. An HTML tag tells the browser what content to show and where
  5. An HTML tag consists of an opening tag which is the name of the element wrapped in opening and closing angle brackets, and a closing tag which is the same as the opening tag but includes a forward slash before the element name
  6. Attributes contain extra info about the element that you don’t want to appear in the actual content.
  7. The anatomy of an HTML document includes the doctype, the HTML element, the head element, and the body element.
1 Like
  1. What is HTML?
    HTML is a markup language made with different tags
  2. What is HTML used for?
    HTML is used to make web pages and mostly visual on a web page
  3. Why are we learning HTML?
    HTML is essential for web development
  4. What is an HTML tag?
    example My body it is used to add content of a specific type.
  5. What is the structure of an HTML tag?
    opening tag ,content, closing tag, and that makes the element
  6. What is an attribute?
    it is an identifier for a specific tag or tags
  7. What is the anatomy of an HTML document?
<html>
    <head>MyContent</head>
</html>
1 Like
  1. What is HTML?
    Hypertext Markup Language
  2. What is HTML used for?
    HTML is the language used to build and structure a web page
  3. Why are we learning HTML?
    HTML is fundamental, as it is the first step towards web development, and a foundation to upcoming programing learnings
  4. What is an HTML tag?
    It defines an element in a web page. Every element in an HTML code is opened and closed by a tab
  5. What is the structure of an HTML tag?
<tag>  
element 
<tag>
  1. What is an attribute?
    Attributes are special characteristics given to an element but are not actually shown
  2. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language
  2. What is HTML used for?
    It is used to define the structure of your content.
  3. Why are we learning HTML?
    Learning HTML is one of the basics to learn web development
  4. What is an HTML tag?
<p>The weather is nice</p>
  1. What is the structure of an HTML tag?
    Opening tag, your content, closing tag.
  2. What is an attribute?
    Extra information about your element that you don’t whant to appear in the actual content
  3. What is the anatomy of an HTML document?
<!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
  1. What is HTML?
    A. Hyper Text Mark-up Language
  2. What is HTML used for?
    A. 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. Why are we learning HTML?
    A. To enable us to show content we create on the web.
  4. What is an HTML tag?
    A. Is the element that wraps all the content on the entire page and is sometimes known as the root element.
  5. What is the structure of an HTML tag?
    A. Is the beginning & end, in which a number of instructions, attributes are listed which are displayed on the page.
  6. What is an attribute?
    A. Are a list of instructions that you do not want to display on the page.
  7. What is the anatomy of an HTML document?
    A. The header & body in which a set of elements are placed to display on the page.
1 Like
  1. What is HTML?
    Hypertext Markup Language
  2. What is HTML used for?
    HTML is the code/protocol used to define the structure and content of a webpage.
  3. Why are we learning HTML?
    HTML is the foundational protocol to webpage design, which is integral to interaction with other components of the internet and its progression into the Web 3.0 space and blockchain technology.
  4. What is an HTML tag?
    Opening and closing HTML tags are used to enclose content (text or images) to create an element, which can then be integrated into the structure of a webpage.
  5. What is the structure of an HTML tag?
    An opening tag is comprised of brackets enclosing a name element (), whereas a closing tag is comprised of the same format, but with a forward slash following the first bracket (</name element>).
  6. What is an attribute?
    An attribute is a piece of extra information that defines/modifies an element that one may not want to appear in the content of the webpage itself. It is generally enclosed within the opening tag.
  7. What is the anatomy of an HTML document?
    An element is comprised of an opening tag (which may or may not contain attributes), content (text or an image) and a closing tag. Keep in mind that images technically do not need a closing tag.
1 Like

What is HTML?

Hypertext Markup Language is the code that is used to structure a web page and its content.

What is HTML used for?
HTML is used to define the structure of the content a web developer creates.

Why are we learning HTML?
HTML is an essential part of creating web application and since we are learning about Web3
technology. We need to learn how to format the data we want to present to the public.

What is an HTML tag?
An HTML tag is a code how the web browswer will format and display your content. For example,
to italicize a content would be italicize.

What is the structure of an HTML tag?
The anatomy of an HTML tag consists of CONTENT</closing tag>. The opening and
closing tag, and the content comprise the element.
What is an attribute?
An attribute allows you to give extra information about an element that is not seen on the
web page. You can call this unique identifier and assign style information. For example,

Sources for the study includes:
.

What is the anatomy of an HTML document?

- A required preamble and to show what document type the file is. - Element that wraps the entire page or root element. - Information that is included in the web page that is not the content shown to the viewer's page. It includes the keywords and page description that will appear in the search results, CSS for styling, character set declarations, and more. - Sets the character in the document using UTF-8. It can handle any textual conent. - The content that will appear on the browser tab. - Contains the content that will be shown to the web surfers which includes text, images, videos, games, audio, links, etc.
1 Like

What is HTML?
its short for Hypertext Markup Language, and is basicaly code

What is HTML used for?
used to structure a webpage and its content

Why are we learning HTML?
because its an easy coding language to start with, also will need to understand html as may need it it to do frontend developer work

What is an HTML tag?
<>

What is the structure of an HTML tag?
<>, it is used to contain content as is part of the element

What is an attribute?
an attribute contains extra information within the elenment but is not part of the content

What is the anatomy of an HTML document?
!DOCTYPE html -makes sure your document behaves correctly.
html -wraps all the content on the entire page
head-acts as a container for all the stuff you want to include
meta charset=“utf-8” -sets the character set your document should use
title -title of your page,
body- contains all the content that you want to show

1 Like