HTML Reading Assignment

  1. HTML stands for HyperText Markup Language. It is a page formatting language comprising of elements, whose content is bounded by opening and closing tags.

  2. HTML is used to format web pages; to define how the content will be displayed in a web browser.

  3. We need to learn HTML because it is required in a large part to create front ends for web applications.

  4. an HTML tag is what precedes (with the opening tag) and goes after (with the closing tag) the content of an HTML element.

  5. an HTML tag is an HTML keyword bounded by a < and a > the closing tag is bounded by a </ and >

  6. an attribute can be assigned to an HTML element and would be contained within the opening tag. It is another keyword used to define an extra property of that element, and would be set to a value. The attribute name and value would be separated by an = sign.

  7. an HTML document will have the following anatomy:

My test page My test image

a) Where the Doctype tag is a required legacy preamble.
b) the HTML tag contains the page
c) the head tag contains the and title tags, the former defines the character set to use.
d) the title tag defines what is displayed in then browser tag as the title of the page
e) then the body tag contains the rest of the page content.

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

  2. 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. Because it is a simple way of seeing a certain output changing accordingly with what we write in the input. It is simple, clean and prepares us for programming.

  4. HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.

  5. The structure of an HTML tag comprises of a pair to tags that include a “start tag” <> and a “end 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 includes all the elements and other instructions to structure the page. Each individual instruction is useless without the entire HTML anatomy. The anatomy of an HTML document consist of:

Doctype:

  • html
  • head
  • meta charset
  • title
  • body
1 Like
  1. What is HTML? It’s markup language that stands for HyperText Markup Language.
  2. What is HTML used for? HTML is used to create and structure web pages,
  3. Why are we learning HTML? To be able to create sites that allow for users to easily interact with our programs and the blockchain.
  4. What is an HTML tag? An HTML tag is used for creating an element.
  5. What is the structure of an HTML tag? <>opening tag, </> closing tag, that wrap the content.
  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: Required
  • : wraps all content on the entire page
  • : container for all the things you want to include on the html page that isn't the content you are showing to your page viewers.

*: sets the title of your page which appears in the browser tab.
*: contains all the content that you want to show to web users when they visit your page.

2 Likes

It stands for “HyperText Markup Language”: is a programming language for give the structure of a website

It is used to build the websites front-end structure

Because is the basement for the creation of a website

They are the instruments for dividing and structuring the website

Head and Title, body with his paragraph and other stuffs

They are extra informations that you want to show in the place but are helpful to developer or users in case of malfunctions

element = opening and closing tag + element

2 Likes
  1. It is a hyper text markup language
  2. It is used to build web content
  3. We are learning html because it can be used to design contents in web
  4. It is used to define content
  5. It starts with < > and ends with </>
  6. An attribute is a is that provide the information of a specific elements
  7. The anatomy of html is like head body
2 Likes
  1. hypertext markup language
  2. it is a code to structure website and their contents
    3.because you need to be able to creat a UI through a website so people can interact with smart contracts etc
  3. A html tag tells the browser that the contents between the html tags are the content of the website
  4. you have an opening tag and a closing tag
  5. an attribute identifies special content or some additional properties inside that attribute
  6. All sites have a head element and a body element however you can also have a footer element and within the body element you can also have sections etc etc
1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

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

  3. Why are we learning HTML?
    We’re learning HTML because of its significance to the internet; it’s everywhere.

  4. What is an HTML tag?
    The beginning and ending of an element in source code.

  5. What is the structure of an HTML tag?
    First, it’s the opening tag, second, the attribute and value, third, the content, fourth and finally, the closing tag.

  6. What is an attribute?
    An extension that changes an elements behavior.

  7. What is the anatomy of an HTML document?

<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></title>
1 Like
  1. What is HTML?
    It stands for Hypertext Markup Language.
  2. What is HTML used for?
    To build a website structure and to create content of that website in many different ways.
  3. Why are we learning HTML?
    To enable us to build a front-end for our smart contracts that we will develop
  4. What is an HTML tag?
    A tag denotes the start and end of a section in HTML, like a heading, paragraph, table…
  5. What is the structure of an HTML tag?
    Denoted in < and >, the end tag additionally starts with a /
  6. What is an attribute?
    A characteristic of a particular element to provide greater information and will help us later to write general CSS instruction for specific tag.
  7. What is the anatomy of an HTML document?
<html>
   <head>... </head>
   <body>...</body>
 </html>
1 Like
  1. What is HTML?
    HTML stands for hypertext markup language.
  2. What is HTML used for?
    It is mainly used to build a website and define its structure.
  3. Why are we learning HTML?
    To allow us to build front ends for our smart contracts and other things.
  4. What is an HTML tag?
    it defines the start and end of a section
  5. What is the structure of an HTML tag?
    It starts with a < and ends with a > and the end tag has an additional /
  6. What is an attribute?
    A characteristic for a specific element which will allow us to write CSS code for those tags later on.
  7. 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>Hello Moralis</title>
</head>
<body>
    <h1>Hello Moralis</h1>
</body>
</html>
1 Like
  1. HTML is a markup language.

  2. It is used for defining the structure of your content.

  3. For managing the content we want to have our viewers see on our web page.

  4. An html tag is one of the main components in elements in html as it allows us to determine what kind of content we are putting in, where it starts, and where it ends.

  5. It has an opening tag which declares the start of an element, defined by opening and closing brackets and a closig tag which is essentially the same as an opening tag but has a forward slash / before the element name and determines the end of an elment.

  6. An attribute is the extra information you want an elemet to have but not appear in the content.

  7. doctype, html element, head element, body element

1 Like
  • What is HTML?
    –> “HTML is a markup language that defines the structure of your content.”
  • What is HTML used for?
    –> “which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.”
  • Why are we learning HTML?
    –> To be able to develop trough browsers.
  • What is an HTML tag?
    –> It’s used to make the elements of the code behave or appears on a particular way.
  • What is the structure of an HTML tag?
    –> Opening tag + content + closing tag
  • What is an attribute?
    –> “Attributes contain extra information about the element that you don’t want to appear in the actual content.”
  • What is the anatomy of an HTML document?
  • <!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 Like
1. What is HTML? HTML = Hyper Text Markup Language = the structure of a web pages content
2. What is HTML used for? To build the structure of an website
3. Why are we learning HTML? To have a basic understanding to connect our Dapps to the frontend.
4. What is an HTML tag? It defines what type of content we have on the website. For example <p>A paragraph </p>
5. What is the structure of an HTML tag? The basic structure is opening tag> Content</closing tag>
6. What is an attribute?  Attributes provide additional information about elements
7. What is the anatomy of an HTML document = Every 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. What is HTML?
    Hypertext Markup Language, which is a markup language.
  2. What is HTML used for?
    HTML is used to structure content on a web app.
  3. Why are we learning HTML?
    Because It’s a fundamental language to frontend development in order to build web apps.
  4. What is an HTML tag?
    An HTML tag is a word inbetween <> </> that tells the browser what kind of element you’re displaying and where the content starts and begins for that given element.
  5. What is the structure of an HTML tag?
    The structure of an HTML tag is opening tag -->
    content
    <-- closing tag
  6. What is an attribute?
    An attribute is extra information about the tag you’re using to create an element.
  7. What is the anatomy of an HTML document?
    The anatomy of an HTML document is
<!DOCTYPE HTML>
<html>
   <head>
      <title></title>
   </head>
   <body>
   </body>
</html>
1 Like

1: HTML is hypertext markup language
2: it is used to format and form a webpage
3: Knowing html is useful and you’ll be able to build your own webpages and not have to have someone else do it
4:a tag starts and ends a part of the document
5: an opening tag <>, a closing tag </ >
6:something that wont be see on the actual page but want in the page
7: the beginning html tag, followed by the head tag, followed by the body tag

1 Like

1.HTML is a markup language used to structure your content
2. It is used to structure content. You can use it to change text size, italicize text, hyperlink imgaes, etc.
3. To help gives us a better understanding of coding before we learn harder things.
4. A HTML tag states where an element begins and ends.
5

content


6. An attribute is a structural change you want done to the content that isn’t shown on the web page
7. HTML, head, then body start by writing
1 Like
  1. What is HTML? It’s a hyper text markup language.
  2. What is HTML used for? It’s used to display pages on the internet.
  3. Why are we learning HTML? Without an understanding of it, it will be difficult to display crypto on the web.
  4. What is an HTML tag? A tag is what tells the browser how to display the content in the document in the proper way.
  5. What is the structure of an HTML tag? Starts with an opening tag i.e.

    and ends with a closing tag i.e.

  6. What is an attribute? An attribute is whats used to set properties for the content inside the tag.
  7. What is the anatomy of an HTML document? Starts with a tag a tag which is where the title of the document and properties exist. Finally a body tag is where all the content displayed on the page exists. The end tags for all these tags all have to close them out.
1 Like
  1. HTML is Hypertext Markup language.
  2. It is used construct and define content that is being presented via web.
  3. How to properly format all aspects of HTML so that our webpage will acessible and viewable to nagavite for the user on the other end.
  4. HTML tag is two angle brackets , which includeds an element inside to hyperlink an image or words to its destination elsewhere. It creates an effect when there are open tag followed by a closing tag.
  5. The structure of a tag consist of an open bracket angle ( < ) followed by a tag name. Ending with ( > )bracket angle. Most of the time with a foward slash ( /).
  6. An attribute is a piece of markup language used to adjust the behavior or display of an HTML element.
  7. It consist of < !DOC.TYPE.HTML > inserted followed by HTML lang , head tag , body tag ending with a closing html tag…
1 Like

assignment 1

  1. HTML hypertext markup language= code used for structure & content of a webpage.
  2. used to define the structure of the webpage’s content
  3. In order to learn the basics of web development/ how to create webpages.
    4.A tag is used to create an element, an element contains an opening & closing tag
  4. structure: opening tag

    closing tag


    6.attribute: extends an element, changing its behaviour or providing metadata, contains extra info about the element that doesn’t appear in the content of the page. eg. class=“editor note”
  5. anatomy: individual elements are combined to form an entire HTML page.
1 Like
  1. Is a mark up language for that defines the structure.
  2. To structure a web page.
  3. Because Web 2 is connected to Web 3.
  4. Is a tag that tells the browser that is a HTML file.
  5. An opening tag, the content and then the closing tag.
  6. Is extra information that you don’t want to put in the actual content.
  7. Is the HTML tag ,the Head , the Body and last the HTML closing tag.
1 Like
  1. HTML (Hyper text markup language) is a markup language that defines the structure of you content.
  2. It is used to create a website which defines the content in order that humans and computers can read it.
  3. We learn about HTML because it is the foundational language for website development. If we can understand these fundamentals, it will go a long way in developing smart contracts.
  4. A tag indicates the beginning and end of an element.
  5. The structure is:

    This is an update.

  6. An attribute contains extra information about the element that you do not want to appear in the actual content.
  7. I have the anatomy submitted here but it does not show up in post.
1 Like