HTML Reading Assignment

  1. What is HTML?
    HTML (Hyper Text Markup Language) is the code that is used to structure webpages along with its contents

  2. What is HTML used for?
    HTML is used to display webpage contents

  3. Why are we learning HTML?
    We are learning HTML in order to learn how to develop webpages it is also a gateway to learning CSS, Javascript due to certain similarities.

  4. What is an HTML tag?
    An HTML tag is an element of a webpage for example <p>This is a paragraph</p> has the entire element and structure which is used to display webpage content on the web

  5. What is the structure of an HTML tag?
    An HTML tag starts with an opening tag for example and ends with a closing tag </html> there are though some elements which do not follow the same path such as <img src ""> it completely wraps itself around its own without closing brackets this is called an empty element.

  6. What is an attribute?
    Attribute consists of extra information that you do not want to appear in the actual webpage content for example

 <h1 class="This is a welcoming message>Hello!</h1>
  1. What is the anatomy of an HTML document?
<html></html> // Consists of the Entire webpage along with the header contents titles etc. 
<head></head> // Is the container of elements such as CSS, more of things that are vital for the page but only reflects it on the webpage in one way or the other.
<title></title> //Title of a webpage
<body></body> //Consists of the elements you want to show your page viewers
1 Like
  1. HTML is a markup language that defines the structure of your content.

  2. HTML is used to structure a web page and its contents.

  3. We are learning HTML to be able to structure a web page.

  4. A tag is used for creating an element.

  5. <?>Content
  6. Attributes are extra information about the element that are not desired to appear in the actual content.

  7. a) DOCTYPE
    b)
    c)
    d)
    e)
    f)

What is HTML?
Hypertext Markup Language - code that defines the structure of your content on a webpage.

What is HTML used for?
Used for coding webpages with content.

Why are we learning HTML?
So that we can learn to code websites w/ content.

What is an HTML tag?
This defines the start and ending of your elements.

What is an attribute?
This is additional information about the element. This allows easier sorting of elements.

What is the anatomy of an HTML document?
<!doctype html> - syntax needed to start

- root element that wraps around everything isn't content - it's meta data for seo <meta charset ="utf-8" this allows it to handle text from all major languages title in browser tab and when you bookmark it contains all the content you want people to see
1 Like
  1. It is code used to structure a webpage and it’s content within paragraphs, list of bulleted points or images and data table.
  2. HTML elements are used to enclose for example a phrase, to make it appear or act a certain way.
  3. HTML is basic coding language to design frontend websites.
    4.Tags are parts of an element that specify where an element will begin and end.
  4. The opening tag, the closing tag, the content, and element.
  5. An attribute is extra information about an element that wont appear in content.
  6. Doctype, html, head, utf-8, title and body element.
1 Like
  1. What is HTML? HTML stands for Hypertext Markup Language. This is the code that is used to structure a web page.

  2. What is HTML used for? It is a Markup language used to define the structure of your content. It consists out of a series of elements to make your content appear and/or act a certain way.

  3. Why are we learning HTML? We Learn HTML to learn the basics of programming

  4. What is an HTML tag? In HTML a tag is used for creating an element. The enclosing tags can for example make a word or image hyperlink to somewhere else, it can italicize words, can make fonds bigger or smaller, and so on.

  5. What is the structure of an HTML tag? Opening tag: <> 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. An attribute should always have a space between it and the element name (or the previous attribute, if the element already has one or more attributes).

The attribute name followed by en equal sign (=)

The attribute value wrapped by opening and closing quotation marks

  1. What is the anatomy of an HTML document? it is the combination of elements in a specific order that defines the whole html page, its sections (e.g. header and body) and the the elements within each section
1 Like
  1. HTML stands for hypertext markup ledger.

2.HTML is the code used to develop a website

3.HTML is used to host some blockchain applications.

  1. An HTML tag is what allows you to designate what the specific text does.

  2. HTML tags consist of the opening tag content and closing tag.

  3. An attribute contains info about the element that you dont want to appear in the content.

7.HTML documents contain
a. <!DocType html>
b
c.
d.

1 Like
  1. What is HTML?

Hyper Text Markup Language - is code that is used to structure your web page and its content.

  1. What is HTML used for?

It’s used to structure your web page and its content.

  1. Why are we learning HTML?

Because it is the fundamental basis on which every web page is built - provides basic structure and formatting of texts and images

  1. What is an HTML tag?

An HTML tag is a modifier to make your text appear a certain way (italicize or bold, for example)

  1. What is the structure of an HTML tag?

It has an opening bracket, a closing bracket, content and an element.

  1. What is an attribute?

An attribute contains extra information about an element that you don’t want to appear in the readable text.

  1. What is the anatomy of an HTML document?
  • A space between it and the element name before it
  • Attribute name followed by an equal sign
  • Attribute value wrapped by opening and closing quotation marks
1 Like
  1. What is HTML?
    HTML (Hypertext 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 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?
    We need it to create rich webapplication in addition with js and css. It acts like a skeleton for our visual representation of specific data for humans.

  4. What is an HTML tag?
    A tag is an element inside the html document wich gets rendered in the browser as document object model. A tag can have multiple attributes like a class, id, placeholder, styles and many more.

  5. What is the structure of an HTML tag?
    A tag starts with an open tag and a closing tag, inbetween we have the content wich can be another tag or mediatypes like embedded videos, images or audio and links to differents sites. The whole “thing” is called element.

  6. What is an attribute?
    An attribute describes a tag and acts like metainformation. For example <p id="name">John</p> “id” is an attribute and you can read the value inside the by calling js functions on id =name and print it to the console or send it to the server. So if you have multiple tags with the same id where the value is name you could for example color them with css.

  7. What is the anatomy of an HTML document?
    Html documents contains -> documenttype, meta information, head, body and often links to js scripts or stylesheets which should be loaded.

<!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?
    Hyper Text Markup Language - used to structure and organize a webpage document

  2. What is HTML used for?
    To create and structure a webpage. It uses a collection of elements to customize the look and function of the document

  3. Why are we learning HTML?
    To be able to create interactable webpage document and applications

  4. What is an HTML tag?
    An actual HTML element with an opening and closing tag. example

  5. What is the structure of an HTML tag?
    opening


    content “stinky diapers smell stinky”
    closing

Stinky diapers smell stinky

  1. What is an attribute?
    extra information or characteristics of the element that will not appear in the document

  2. What is the anatomy of an HTML document?

-Doctype which sets the type of HTML document
-HTML root tag open and close
-Head which contains attribute information which is not part of the visual content. This is keywords and descriptions for search engines

  • <meta charset="utf-8"> contains all needed text setting
    - contains text for the title of the browser tab and bookmarks
    - everything that will impact the actual visual and performance of the HTML document
1 Like
  1. HTML (Hypertext Markup Language)

  2. HTML is a coding language that is used to provide structure to a web page and its contents.

  3. We are learning HTML in order to build a UI (user interface) for users to interact with web3 decentralized applications.

  4. HTML tags are used to indicate the beginning and end of an HTML element in an HTML document.

  5. <tag> element </tag>

  6. HTML attributes are special words that contain extra information about the element that you don’t want to appear in the actual content. It can control the elements behavior.

  7. The anatomy of an HTML document contains the following:
    a) Line containing HTML version.
    b) Header section.
    c) Body section which has the content of the 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?
    It is not a programming language but a mark up language that is used to structure a web page and content.
  2. What is HTML used for?
    To create websites.
  3. Why are we learning HTML?
    To create frontend for our blockchain applications.
  4. What is an HTML tag?
    An HTML tag is to define a word or image and hyperlink to somewhere else. It can define several things such as paragraph or font size etc.
  5. What is the structure of an HTML tag?
    Starting and ending.
  6. What is an attribute?
    An Attribute is the property of a tag that contain extra information about the element that you do not want in the actual content.
  7. What is the anatomy of an HTML document?
    A line containing HMTL tag, a header section, a body which is actual content and an image then a tag closing.
1 Like
  1. HTML is a markup language that defines the structure of your content.

2)It is used to program websites with a fixed content

3)It’s good to learn HTML as a foundation for web development and blockchain development

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

  2. A tag starts with an opening , has usually an attribute inside and finishes with a closing

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

  4. That is the right anatomy of Html:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>  </title>
  </head>
  <body>
    
  </body>
</html>
1 Like
  1. What is HTML? HTML is a markup language that defines your content
  2. What is HTML used for? It´s used to create web pages and web applications
  3. Why are we learning HTML? To be able to create your own web page
  4. What is an HTML tag? Hidden keywords that define how your web browser display the content
  5. What is the structure of an HTML tag? Opening tag < > and closing tag </ >
  6. What is an attribute? Attributes provide addtional information about HTML elements
  7. What is the anatomy of an HTML document? Doctype, Head, Element and Body element
1 Like
  1. HTML is HyperText Markup Language
  2. HTML is code used to structure a web page and its content
  3. We are learning HTML because it is good foundation for web and blockchain development.
  4. An HTML tag are enclosing tags that make words/images hyperlink to somewhere else, italicize words, change font, etc.
  5. structure of an HTML tag is
    content </closing tag>
  6. An attribute is extra information about the element that you don’t want to appear in the actual content.
  7. Doctype, opening html tag, content (header, body, etc), closing html tag
1 Like
  1. HTML is a markup language that defines the structure of the content.
  2. HTML is used for creating homepages and structuring its content etc.
  3. To make sure we can build a front end to our smart contracts.
  4. Its a element of the structure.
  5. Starts with an opening tag, ends with a closing tag.
  6. Its a quality or characteristic of a tag.
  7. HTML DOCTYPE! a few elements and a close tag.
1 Like
  1. What is HTML?
    HTML is a Hypertext markup Language that is kind of like a template to structure content for a web page.

  2. What is HTML used for?
    HTML is used for displaying content on a web page

  3. Why are we learning HTML?
    We are learning HTML to start process of creating a web page.

  4. What is an HTML tag?
    An HTML tag you have an opening and closing tag. Tags are used to display content on a webpage

  5. What is the structure of an HTML tag?
    An HTML tag you have an opening and closing tag. In the middle of each tag you can put content.Some tags, such as for images, only have one tag as no content to be wrapped in two tags but just an image is is to be displayed on the screen.

  6. What is an attribute?
    An attribute is found in first tag and is used as an identifier, and is not displayed on the webpage

  7. What is the anatomy of an HTML document?

Anatomy of an html document is that it has root tags, html tags, where all content is wrapped into it. In between the html tags consists of other tags such as the head and the body tags.

is required at top of document before html root tags.
1 Like
  1. HTML ( Hyper Text Markup Language) is the code that is used to structure a web page and its content.
  2. It is used to structure a web page and its content.
  3. to know how to code and structure a web page.
    4.used for creating an element
    5.opening tag. Content. closing tag. creating an element
    6.class=“editor-note”
    7.`
My test page My test image `
1 Like
  1. HTML is a markup language which stands for Hypertext Markup language.
  2. It is used to structure a webpage properly
  3. It helps us to put our ideas into a structure to put it on the web so that people can easily interact with it.
  4. HTML tags are two elements consisting of angular brackets which define the content of that element.
  5. A tag consists of an element inside angular brackets and definite attributes if necessary.
  6. Attributes are used to define additional element for a content suchas italics, bold, height, width, size etc
<!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?
    html is a mark up language that defines the structure of your webpage. 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 for structuring the contents of your webpage. its helps organize headings, paragraphs, containers where you can add stuff in like pictures, videos, buttons and much more.

  3. Why are we learning HTML?
    Because without HTML we cannot showcase information or create interaction between the application and code base that executes some business logic functionality through rest API or database requests.

  4. What is an HTML tag?
    An HTML tag is a piece of markup language used to indicate the beginning and end of an HTML element in an HTML document.

  5. What is the structure of an HTML tag?

this is my paragraph

  1. What is an attribute?

HTML elements can have attributes. attributes provide additional information about an element. attribtes are always specified in the start tag not the end tag! attributes usually always come in a name & value pair

  1. What is the anatomy of an HTML document?
<​!DOCTYPE html>
<​html>
<​head><​/head>
<​body><​/body>
<​/html>
1 Like
  • What is HTML?
    HTML Stands for Hyper Text Markup Language.

  • What is HTML used for?
    HTML is the basic structure of a webpage.

  • Why are we learning HTML?
    It is important to know how webpages are put together and is how information can be displayed for anyone to see.

  • What is an HTML tag?
    Tags are how the webpages tell what style and how to display information on the page using < >, < / > to enclose attributes and content.

  • What is the structure of an HTML tag?
    “< >, </>”

  • What is an attribute?
    Extra info for the content but doesn’t appear on the page.

  • 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>MoralisDEX_.0</title>
</head>

<body>
    <h1>Hello, Moralis!</h1>
</body>

</html>
1 Like