HTML Reading Assignment

  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    It allows the user to create and structure sections, paragraphs, headings, links, and blockquotes for web pages and applications.

  3. Why are we learning HTML?
    To get better understanding of building sites and aplications.

  4. What is an HTML tag?
    HTML tags are hidden keywords within a web page that define how your web browser must format and display your content

  5. What is the structure of an HTML tag?
    The opening tag, content, and closing tag.All together they make up the element.

  6. What is an attribute?
    Attribute will allow you to customise a tag.

  7. What is the anatomy of an HTML document?
    Doc type Head, body

1 Like
  1. It stands for Hypertext Markup Language.
  2. It is the language to write webpages
  3. It is the building block for JavaScript
  4. A tag is how you define information so that a webpage knows how to read and display it.
  5. Put text here

    Using angle brackets to open and close each element.
  6. An attribute is unique identifier for an element that won’t appear in code but will allow the writer the ability to group like elements together so formatting and other changes can be made easily.
  7. An HTML document will always start with the DOCType and then proceed to HTML, Header, Meta, Title, Body.
1 Like
  1. What is HTML?
    a HyperText Markup Language

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

  3. Why are we learning HTML?
    so we can put our information or business onto the web. we know both the front end and back end operations of creating a webpage and connecting it to the blockchain

  4. What is an HTML tag?
    a pair of brackets with information inside that make a browser understand the content and how it is formatted

  5. What is the structure of an HTML tag?
    attribute inside, finish with closing (sure to put the forward slash in the closing tag or weird things might happen)

  6. What is an attribute?
    something used to show special features of an element or tag

  7. What is the anatomy of an HTML document?
    HTML tag, head section (head section contains meta tags, title tag and linking of stylesheet/css files) and then head section closes. Body section starts and its the visible part of html and we put all our code/text/images in it and then body tag closes. And then HTML tag closes. We can link javascript files before ending body tag.
    (this last answer copied from javedkhalil - this phrasing made sense to me)

1 Like

1: Hypertext Markup Language
2: To structure webpages and it’s contents
3: We want to build webpages on the front end, that will interact with the blockchain and smart contracts on the back end
4: A tag is an instruction on how present the content or ‘element’ that the tag is wrapping
5: opening tag; content; closing tag.
6: Attributes contain extra information about the element that you don’t want to actually be in the content
7:

<!DOCTYPE HTML>
 <html>
   <head>
     <meta charset="utf-8">
        <title>
        <title>
    <head>
  <body>
  <body>
<html>
1 Like
!DOCTYPE html>
html>
  head>
    meta charset= "utf-8">
    
  head>
  body>
 
  body>
html>
1 Like
  1. What is HTML? ( Hypertext Markup Language )
  2. What is HTML used for? ( It is used to structure content on a web page )
  3. Why are we learning HTML? ( To understand a basic knowledge of the structure of a
    website which can give you an understanding for further knowledge of smart contracts)
  4. What is an HTML tag? ( An HTML tag is used to make a word or image hyperlink to somewhere else,can make text font bigger or smaller etc)
  5. What is the structure of an HTML tag? (The structure of an HTML tag has an opening and a closing )
  6. What is an attribute? ( An attribute contains additional information that you do not want to appear on the web page)
  7. What is the anatomy of an HTML document? ( Basically wraps up individual HTML elements)
1 Like
  1. HTML(Hypertext Markup Language is the code that is used to structure a web page and its contents. It is not a programming language, it is a markup language that defines the structure of your content.
  2. It is used to structure content on your web page.
  3. To understand how web pages work and how they are structured.
  4. An HTML tag is an HTML element that is used via enwrapping around hypertext that allows for manipulation of the enwrapped content, so to make it look or act a certain way.
  5. The element name wrapped in opening and closing angle brackets.
  6. Attributes are an optional part of an element that contains information that you don’t want to appear in the actual content(ie an href that references the link that you have hyperlinked in your content)
  7. (doctype)
(html element that wraps entire page) (head element that holds all the info you dont want to be seen) (calls the UTF-8 character set to be used) (title element) (holds all the content you want to show users when they visit your site)
1 Like
  1. A markup language that enables you to organize and structure the content of a website.

  2. Proper structure and formatting of the website’s text and and images.

  3. HTML is the foundation of all languages and programming in general.

  4. A demarcation to define the type of content in the site (and what the content does).

  5. an opening tag content of the element and a closing tag

  6. A portion of the content that gives extra information about the the element that you don’t want to appear in the actual content.

  7. Opening tag, closing tag, content, and element.

1 Like
  • What is HTML? HyperText Markup language
  • What is HTML used for? Web design
  • Why are we learning HTML? to create a place to market our product
  • What is an HTML tag? infomation that provides the browser the format and attribute
  • What is the structure of an HTML tag? , content,
  • What is an attribute? an attribute is more information provided about the element that does not appear in the actual content
  • What is the anatomy of an HTML document? The anatomy of a HTML document are comprised of all the individual elements including doctype, html, head, meta, title, body. All elements are opened an closed respectively in the document content
1 Like
  1. What is HTML?
  • Hypertext Markup Language is a code or markup language that is used to structure a web page and its content.
  1. What is HTML used for?
  • Is used to enclose, or wrap different parts of the content to make it appear a certain way.
  1. Why are we learning HTML?
  • HTML will help us to learn how coding in order to create your own web page instead of paying someone else to do it.
  1. What is an HTML tag?
  • HTML tag can make a word or image hyperlink to somewhere else, can italicize (Italic) words, can make the font bigger or smaller.
  1. What is the structure of an HTML tag?
  • HTML contain two structure Opening and closing, opening tag is an element wrapped in opening and closing angle brackets e.g.:

    and closing tag is the same as opening tag but it includes a slash before the element name e.g.:

  1. What is an attribute?
  • The attribute is an extra information about the element that you don’t want to appear in the actual content.
  1. What is the anatomy of an HTML document?
  • That wraps up the basics of individual HTML elements, but they aren’t handy on their own
1 Like
  1. Hyper text Markup Language
  2. HTML is the code that is used to structure a web page and its content.
  3. To enclose, or wrap, different parts of content to make it appear a certain way, or act a certain way.
  4. This element wraps all the content on the entire page and is sometimes known as the root element.
  5. A tag starts with an opening , has usually an attribute inside and finishes with a closing .
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. It consists of 2 elements:
    • Head elements: provides page title and general page formatting commands
    • Body elements: put the main HTML text in this part
1 Like
  1. HTML stands for Hypertext Markup Language, and it is the language used to build the front end of websites.
  2. HTML is used to set up the structure of a webpage and includes editing/creation functions that places text, pictures and links in the creative way that the designer intends.
  3. We are learning HTML so that we understand how the displayed pages or front end of a website works in relation to the JavaScript code that we will be learning.
  4. Tags are the markups that include the information that one wants to display on their webpage.
  5. The structure of an HTML tag begins with a opening tag, the content, and then ends with the closing tag. The entire tag is referred to as the “element.”
  6. An attribute is the information that one can include in a tag which expresses how one would want their tag element to appear such as font style, color, size, and style.
  7. The HTML anatomy begins with it’s doc type, then HTML element, then head element, then character set, then title, and then body.
1 Like

1 Hypertext markup language
2 HTML is the code that is used to structure a web page and its content.
3 HTML & CSS are the basic programming language for web development and design
4 The tag defines a hyperlink which is used to link from one page to another
5 its composed of 3 parts a line containg HTML version information, a declarative header, and a body which contains the documents actual content
6 attributes define additional characteristics or properties of the element
7 the body is used to show your viewers all the content within your HTML document

1 Like
  1. HTML is a markup language that defines the structure of your content.
  2. It’s used to sctructure a webpage and it’s content
  3. We learn HTML because is it the very base of code for web dev. In order to understand other language it’s important to know the basic one
  4. A tag is an element inserted in documents or files that changes the look of content or performs an action.
  5. <p> (opening tag) the content </p> (closing tag)
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
  7. 
    
<!DOCTYPE html>
<html>
  <head>
    <title> content </title>
  </head>
  <body>
    <p> content </p>
  </body>
</html>
1 Like
  1. HTML is code that is used to structure a webpage.

  2. HTML is used to code or wrap, different parts of the content to make it appear a certain way.

  3. It is a starting point that we will be building on. We have to walk before we can run.

  4. The tags specify how the content of the element will act.

  5. An opening tag has the name of the element wrapped in angle brackets, whereas the closing tag starts with an angle bracket, then a forward slash, then the name of the element and another angle bracket.

  6. An attribute contains extra information about the element that you don’t want to appear in the actual content.

  7. The anatomy is referring to the different parts of the document.

1 Like
  1. HTLM stands for Hypertext Markup Language.
  2. HTLM code is used to structure a web page and its content.
  3. We are learning HTML because the basic logic of this language is preparatory for learning the
    languages used for coding in the crypto world (like Solidity).
  4. An HTLM tag is a string of text enclosed into angle brackets that gives instructions about:
    • how to show the content of an element on a web page
    • actions to perform such as showing an image on a web page
  5. The structure of an HTLM tag is the following:
    • for an opening tag:
    • for a closing tag:
    • an entire HTLM element is structured as below:
      content
  6. An HTLM attribute contain extra information about an element
    that we don’t want to include in the actual content shown to the users of a webpage
  7. That anatomy of an HTLM document consist of 6 parts:
    • : is the preamble of the HTLM text;
    • element: it wraps up all the document and it’s the root element;
    • element: it contains all the stuff that we want to include in the HTLM page without being shown to the web page viewers;
    • : this element sets the character set for the HTLM document
    • element: it sets the title for the web page, this is shown in the browser tab where the page is loaded in;
    • element: it contains all the stuff that we want to be seen by the users that visit the webpage.
1 Like

1)Hypertext Markup Language

2)It is used to structure a web page and it’s content.

3)To create the front end for our Blockchain applications.

4)Code that defines how to display content.

5)An opening and closing tag which surrounds the content. Ex.- < p >text< /p >

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

7)Various individual elements that combine to form an HTML document.

1 Like

1. What is HTML?
A: It is Hyper Text Markup Language which is code that defines the structure of a webpage and its content.
2. What is HTML used for?
A: It si the means to create a UI/UE by arranging elements on the webpage to appear and function in a certain way.
3. Why are we learning HTML?
A: In order to build a frontend website that can interact with the blockchain tech on the backend of the system.
4. What is an HTML tag?
A: A tag is the protocol for creating an element.
5. What is the structure of an HTML tag?
A: <opening tag">" followed by content followed by </closing tag>
6. What is an attribute?
A: An attribute is the extra information in the element that you don’t want to appear in the actual content.
7. What is the anatomy of an HTML document?
A: The arrangement of individual HTML elements in a specified order to form a complete HTML page.

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. Hypertext Markup Language
  2. It is used to structure a webpage and its content.
    3.To be able to build and structure websites in order to further become a blockchain developer.
  3. A tag is used to show the start and end of an element.
  4. A tag starts with and ends with
  5. Extra information about the element that you don’t want showing up in the actual content.
  6. consists of a doctype, html element, heading, title, and body.
1 Like