HTML Reading Assignment

HTML is Acronym for Hyper Text Mark Up Language.

It is the standard language used for creation and display of website content.

We are learning it because everything we are going to be building or displaying is going to operate from a web environment.

HTML tags are used to define the start and end of specific functions within an HTML document.

AN HTML tag has a start

(to define a paragraph) content…< /p> to define the end.

Atributes contain extra information for the developer that is not visible to the in the actual content of the document when viewed in a browser.

AN HTML document has a strict layout. Basically a document type difnition, header, title, body and ending.

indicating it is an html document
 <html>
        <head>
            <meta charset="utf-8">  (The most commonly used character set)
               <title>Your title< /title> 
          < /head>
      <body>
          <p>all the body here and or images< /p>
       </body>
end of document.

,

1 Like
  • What is HTML? hypertext markup language
  • What is HTML used for? structured content built from elements.
  • Why are we learning HTML? foundational component to a website.
  • What is an HTML tag? it something that can make up different parts on your site like words or images
  • What is the structure of an HTML tag?<> </> open and then closed with your content in between.
  • What is an attribute? something that stores more information that you don’t want to show on your established site.
  • What is the anatomy of an HTML document?
    doctype, html, head, meta charset=“utf-8”>, title, body.
1 Like
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>...........</title>
  </head>
  <body>
  </body>
</html>

1 Like
  1. What is HTML? HTML is a language used to design/organize websites with links, images, text that a user would typically interface with while browsing the Internet
  2. What is HTML used for? Same as above, it is used for web development
  3. Why are we learning HTML? To learn how to build front end webpages that users can interact with blockchain based games, NFT sites, smart contracts, I supposed html will be the first impression of our projects
  4. What is an HTML tag? A tag defines what follows, content, image, attribute etc. so the website can interpret and display in a useful manner
  5. What is the structure of an HTML tag? …
  6. What is an attribute? An attribute is information that is not displayed on the front end, notes some information for the developer
  7. What is the anatomy of an HTML document? The anatomy of an HTML document consists of elements defined by tags and combined to create a functional document
1 Like

:one: HTML is Hypertext Markup Language - the standard of scaffolding webpages. scaffolding of we

:two: HTML is used to provide the scaffold for a webpage. This includes placeholders which take on certain properties, such a Headings, lists, images etc.

:three: HTML is vital for any web development. It is used by web developers, from beginner stages to advanced. HTML is a prerequisite for any further skill in learning to be webpages and applications. Without HTML, CSS is more or less useless, and JS has limited functionality without showing it’s results in the HTML.

:four: A HTML tag indicates to the browser what the format of the enclosed content should be presented as.

:five: A HTML tag <tag> must either have a corresponding closing tag </tag>, or be self enclosing: <tag />

:six: An attribute is further information entered into a HTML tag to provide context, e.g. for an image tage, the developer can include the source attribute, to giv context as to what image should be shown. An image tag without a source (or href) is useless.

:seven: A typical HTML document will firstly declare its type <!DOCTYPE html> - that it is a HTML document,
followed by a <head> section, and a <body> section.
The head will contain page metadata, and the body will contain what the client sees on the page.

1 Like
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? To program documents to display information as required
  3. Why are we learning HTML? Because it is the basic form to display web pages.
  4. What is an HTML tag? They are the basic elements that organize the information contained in the web page
  5. What is the structure of an HTML tag? opening and closing
  6. What is an attribute? Aditional information of the element
  7. What is the anatomy of an HTML document?
Document

1. What is HTML?

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

2. What is HTML used for?

HTML consists of a series of elements, which are used 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?

Every developer needs a basic understanding of web development which includes HTML and CSS.

4. What is an HTML tag?

A tag is part of a HTML element, aside for a few exceptions, both an opening and closing tag is used in a HTML element.

5. What is the structure of an HTML tag?

  1. The opening tag: This consists of the name of the element, wrapped in opening and closing angle brackets. This states where the element begins or starts to take effect.

  2. 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.Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.

6. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content.

An attribute should always have the following:

  1. A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
  2. The attribute name followed by an equal sign.
  3. The attribute value wrapped by opening and closing quotation marks.

7. What is the anatomy of an HTML document?

Example :

<!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>Hello, Moralis</title>
</head>
<body>
    <h1>Hello, Moralis</h1>

        <p>Lorem ipsum dolor sit,
        amet consectetur adipisicing elit.
        A dicta vitae dolor possimus, ea illo?</p>

        <p><a href="https://academy.moralis.io/" target="_blank">Visit Moralis!</a> and start <b>Buidl</b>ing</p>

</body>
</html>
  1. What is HTML? HTML (HyperText Markup Language)
  2. What is HTML used for? It is the code that is used to structure a web page and its content.
  3. Why are we learning HTML?
  4. What is an HTML tag? A tag states where an element begins and ends.
  5. What is the structure of an HTML tag? Opening tag, closing tag, content, element, and can contain an attribute.
  6. What is an attribute? Extra information about the element that you don’t want to appear in the actual context.
  7. What is the anatomy of an HTML document? Doctype, , , , , .

HTML is meant to structure the content of your webpage like and outline.

HTML is used to outline and structure your webpage like a basic rule set.

Basics of structuring a webpage and coding

Tags are used for creating an element

You have an opening tag i.e.

and a closing tag i.e.

An attribute is a way to add notes that will not appear on the webpage and can be easily search and targeted.

<!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. HTML is the the body of code that is read by robots.
  2. HTML is used to make software do what you want it to do.
  3. This is how we speak to the robots and whoever else understands HTML.
  4. A tag is how we control the code we’re inputting with HTML
  5. An element of opening and closing tags with the content inside if any.
  6. An attribute is extra information that you don’t want to be seen.
  7. Opening tags, closing tags and content, which creates an element.
  1. HTML stands for HyperTextMarkupLanguage, it is used to give browsers instructions on how to structure and display our websites.

  2. Creating and structuring websites for browsers.

  3. HTML is crucial to learn how to create websites and is needed to display any product you want to create as website.

  4. An HTML tag is an HTML element which provides preset value changes or functionality to your text. Html tags are enclosed in “<” and “>”. Some need closing tags “</>” and some dont.

  5. every HTML file starts with the Doctype followed by the html tag, head and body

  6. an attribute gives additional changes to an existing html tag.

1 Like

Homework - HTML

What is HTML?
Hyper text markup language.

What is HTML used for?
HTML is the basic markup language for making websites.

Why are we learning HTML?
Because without HTML there would not be JavaScript. And JavaScript would not be included on websites.

What is an HTML tag?
An HTML tag is a piece of code that a web browser can translate to a piece of text or or image on a website.

What is the structure of an HTML tag?
It opens with a < tag, closes with an > tag next is a attribute like “img” and behind that is the value placed within the “ symbol.

What is an attribute?
And attribute is something to be included or linked into the website.

What is the anatomy of an HTML document?
Opening tag - content - closing tag

1 Like
  • What is HTML? Hyper text markup language
  • What is HTML used for? its used to structure content on a webpage
  • Why are we learning HTML? I have always wanted to learn coding
  • What is an HTML tag? tags are used to make a hyperlink or text appear a particular way
  • What is the structure of an HTML tag? the tag has an element and within that it starts with the opening tag, content, closing tag
  • What is an attribute? attribute contain extra information about the element
  • What is the anatomy of an HTML document? Individual elements are combined to make an HTML page
<!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>
2 Likes
  1. HTML is a markup language used to design web pages and its content

  2. HTML is used defines content using elements and tags

  3. to have a better understanding of Web development

  4. to state where an element takes effect and where it stops

  5. the name of an element wrapped in a opening tag ex

    content

    then wrapped in a closing bracket as shown

6.extra info you dont want to appear in the content
7. the combination of elements to form a HTML page

1 Like

1.hypertext markup langauge
2.code used to structure a web page and its content
3. A foundation for web and blockchain development
4.a html tag is the open and close instructions of a piece of information
5 info
6.An attribute specifies some additional properties regarding the content included inside a tag.
7.The anatomy of an HTML document includes:
doctype> - sets rules for the HTML page to follow
html> - wraps the contents on the page
head> - contains page info that is not content. (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
  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