HTML Reading Assignment

Ans.1 Hyper Text Markup Language.It defines the structure of content using a predefined semantics.
Ans.2 HTML is used to build web pages consisting of text, numbers , images and videos.
Ans.3 To understand how front end of websites are build and how block-chain programming can be used on websites.
Ans.4 HTML tag consist of element and its used on objects to appear in a specific format or act on specific event,.
Ans 5 Opening Angle Brackets followed by closing Angle Bracket </name of element>
Ans.6 Attribute is a user defined name given to element , its like unique identifier.
Ans.7 Anatomy consist of html element as top element and everything other element is defined in the boundary of html element.

<html> 
<head></head>
<title></title>
<body></body>
</html>
1 Like
  1. HTML is the language all websites are structed in.
  2. It is used to shape the website. it is the foundation of the website.
  3. The reason we are learning HTML is to help us get a better understanding of coding. For the front end of a website.
  4. An HTML tag is (<,>) the opening and ending of an element.
    5 the structure of an HTML tag is (

    ).

  5. Attributes are extra information of an element that you don’t want to be shown on the article website.
 <!DOCTYPE html>      
      <html> </html> 
       <head> </head>
        <meta charset="uft 8">
         <title> </title> 
           <body> </body>
1 Like
  1. HTML is a web page code structure
  2. To create web pages
  3. Because we need to know the basic structure of web based codes
  4. A tag is a word or letter used to create and encapsulate ‘elements’ structures and content such as a paragraph, title, heading, body, and images.
  5. opening tag <> closing tag </> (except for images do not have the closing tag)
  6. HTML attributes are modifiers used inside the opening tag to control the element’s behaviour.
 <html>
  <head>
   <title> xxx </title>
  </head>
  <body>
    <img src="xxxxx.png" alt="xxx">
  </body>
</html>
1 Like

What is HTML?
Hypertext Markup Language. A markup language that defines the structure of your content.
2. What is HTML used for?
HTML is used to structure a web page and its content.
3. Why are we learning HTML?
We are learning HTML to build web pages that will interact with blockchains.
4. What is an HTML tag?
A tag is part of an HTML element that encloses the content and can create a link, modify text attributes, display images, etc…
5. What is the structure of an HTML tag?
<p>content</p>, where the word ‘content’ is in its own paragraph. Chronologically:
Opening tag
Content
Closing tag
All of these comprise the HTML element.
6. What is an attribute?
An attribute, I believe comes from CSS, Cascading Style Sheets. They contain extra information within the tag, that isn’t shown in the actual content. Attributes allow you to give the element a non-unique identifier that can be used to target it, (along with any other elements with the same class value), with style info and other things. Example:

.

  1. What is the anatomy of an HTML document?
    Firstly, doctype. Followed by a series of elements, basically in this order:
    html, head, charset, title, body. An example is here:
< ! DOCTYPE html>
<html>
     <head>
        <meta charset=“utf-8”>
         <titile>My Test Page</title>
      </head>
      <body>
           <img src=“images/firefox-icon.png” alt=“My Test Image”>
       </body>
     </html>

Uh oh, since I used tags in my answers, they didn’t display correctly.

1 Like

Use Preformatted text while posting code so that it shows up in code format.

  1. What is HTML?
    HTML stands for HyperText Markup Language
  2. What is HTML used for?
    It used for structure a website.
  3. Why are we learning HTML?
    We need to know to create front end of blockchain.
  4. What is an HTML tag?
    A tag is used for creating an element with opening and closing tags.
  5. What is the structure of an HTML tag?
    opening tag < lower case>, closing tag </lower case>
  6. What is an attribute?
    Attribute is inside of the opening tag, modifies or/ and contains information about the elements, it doesn’t appear on the website. <tag, space, attribute name=“attribute value without space”>
  7. What is the anatomy of an HTML document?
    doctype - , required preamble
    html type- , wrap all the content on the website
    head element- , keywords, page description, style… its not for the users
    title element- appears on browser tab,
    body element- , contains all the content for the website users, included images, videos, text, games.
1 Like

ah ok, thanks, will do .

  1. HTML is a markup language.

  2. HTML is used to structure a webpage and its contents.

  3. We are learning HTML to be able to create simple webpages at will be able to interact with the blockchain.

  4. An HTML tag is used to define the contents and tells the webpage how the contents should appear.

  5. An HTML tag has an opening and a closing tag. Each tag uses angle brackets and the closing tag uses a forward slash.

  6. An attribute is used to add extra information that you don’t want to appear in the content.

  7. HTML webpages start with the tag and is closed at the very end of the code with
    It also has a section which is tagged and has to be closed before with , in this section you will include information that you do not want seen on the actual page of content but as a description in the tab in which it is opened or where it is saved as a bookmark.
    In the section which must be closed with you will include all of the content for the webpage, including an text, images, games, music, etc.

1 Like
  1. What is HTML?
    Hypertext Markup Language.

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

  3. Why are we learning HTML?
    To understand the basic fundamentals of program development.

  4. What is an HTML tag?
    A tag which wraps and presents the text in a specific manner.

  5. What is the structure of an HTML tag?
    <> </>

  6. What is an attribute?
    Contains extra information about the element that doesn’t appear in the actual content.

  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>
2 Likes
  1. What is HTML?
    HTML is the coding language used to organize a web page.
  2. What is HTML used for?
    HTML is used to structure the content of a website in a way that will allow users to understand the content, and interact with the web.
  3. Why are we learning HTML?
    HTML is a fundamental, basic language used to create websites. It will provide the foundational knowledge before learning javascript.
  4. What is an HTML tag?
    Code that defines everything on an HTML webpage, including text (and all attributes of the text including: size, style, placement, etc.), images, and links.
  5. What is the structure of an HTML tag?
    HTML tags require a <, and end with a >.
  6. What is an attribute?
    Attributes provide more information re: an HTML element.
  7. What is the anatomy of an HTML document?
    The skeleton of a simple html document may look like this:
    Doctype alerting the browser that this is an html document, a head and body tag, and a closing html tag.
<!DOCTYPE html>
<head><title></title></head>
<body>
<p></p>
</body>
</html>
1 Like
  1. HTML is one of the computer language for developing webpages. HTML stands for Hyper Text Markup Language

  2. HTMLis used as a programming language for website development.

  3. HTML is the base building block for web development.

  4. An HTML Tag is what the computer uses to understand your command.

  5. The structure of an HTML tag is the opening symbol < > followed by the command or text followed by the close of the tag </>

6.Attributes are additional information for an element or command. More specific to the command. also attributes will always be in quotations

  1. The Anatomy of an HTML document is first the HTML language, then this has a and , inside the is the and the text you want to display at the top of the browser. The can have text inside and various attributes also space for pictures.
1 Like
  1. What is HTML?

Hypertext Markup Language

  1. What is HTML used for?

To structure and organize content for web pages

  1. Why are we learning HTML?

Because it is fundamental in developing website, and is useful to learn before javascript since the work together in front-end development.

  1. What is an HTML tag?

An element that wraps the corresponding content you wish to display on a web page, such as a paragraph of text, an image, or a link.

  1. What is the structure of an HTML tag?

opening tag, optional attributes, content, closing tag

  1. What is an attribute?

A method to contain extra information within an element, such as its class

  1. What is the anatomy of an HTML document?

Doctype declaration, followed by a header containing information not directly presented on the web page, such as the web title and information to help it appear in search results, followed by the body which contains all the content to be presented on the web page.

1 Like
  1. HTML, also known as HyperText Markup Link, is a markup coding language that defines the structure of your content in a web page.
  2. To structure a web page and its contents.
  3. To incorporate it with JS to make a web page that’s easy to understand why things look and act as they do.
  4. Used to create an element.
  5. < element_used >
  6. Used to extend an element by changing its behavior or providing metadata.
  7. doctype, html element, head element, meta character set, title element, body element.
1 Like
  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?
    It is used for all web pages to properly display web page content

  3. Why are we learning HTML?
    To be able to combine this knowledge with JS so we will be able to create Smart contracts (back end) and simple web pages (front end) or at least to understand how exactly these are created and works.

  4. What is an HTML tag?
    A tag is what makes the browser recognize what type of content it has to show and in what way.

  5. What is the structure of an HTML tag?
    A tag starts with an opening , has usually an attribute inside and finishes with a closing </tag

  6. What is an attribute?
    Specifies some additional properties inside a tag

  7. What is the anatomy of an HTML document?
    The way and structure how to write the code
    like head body

1 Like
  1. Hyper-Text-Markup_Language is the code used to structure a web page and its content.

  2. Used to help make content appear or act in a certain way.

  3. So we start to have a basic understanding of how code is utilized and how it was used in the beginning of web 1.0

  4. A HTML tag is used in creating an element

  5. open tag with angle brackets followed by the content followed by closed tag which has angle brackets and a forward slash (element). e.g. < P>Text</ P> this together comprise the element.

Note: in the example you wouldn’t have the spaces in the opening/closing tags i just had to do that so you guys could see it :slight_smile:

  1. Attributes contain extra information about the element that you dont want to appear in the actual content.

  2. wraps up the basics of individual HTML elements.

1 Like
  1. Hypertext markup language
  2. HTML is the code used to structure a web page and its contents
  3. To give us the knowledge to put our information/application, etc. on the web
  4. An HTML tag is considered the root element in the code and wraps all the content in between it together
  5. Denoted in < and >, with the end tag starting with a / (forward slash)
  6. Attributes contain extra information in the element that you don’t want to appear in to the viewer
  7. All HTML documents start with a preamble part, root element, head element (things we want to include in the HTML, but not be shown in content), character set, title element (will be visible) and body (all visible) element
1 Like
  1. HTML - Hyper Text Markup Language, is a computer programming language used to build web pages.

  2. HTML is used to build web pages with a fixed content.

  3. The reason why we are learning HTML is to allow a front end website that can go on to create a bridge to a back end blockchain.

  4. A tag represents the root of an HTML document. The tag is the container for all other HTML elements (except for the <!

  5. The structure of a tag consists of a head and body & gives the the start and end of a function in HTML. An element is placed inside the tag, and sometimes in pairs.

  6. An attribute is a piece of information that determines the properties in a field or tag in a database or a string of characters in a display.

  7. The opening tag consisting of the name of the element, wrapped in < > , then the closing tag with a forward / before the element name.

1 Like
  1. What is HTML?
    HTML stands for Hyper Text Markup
  2. What is HTML used for?
    It is used to build website
  3. Why are we learning HTML?
    to be able to build websites
  4. What is an HTML tag?
    It is used to define different types of content in the websites
  5. What is the structure of an HTML tag?
    The beginning has element between an opening and closing angle brackets and the ending is also between between an opening and closing angle brackets but with forward slash before the element.
  6. What is an attribute?
    A characteristic of a particular element
  7. What is the anatomy of an HTML document?
    Different elements that constitutes the document such as Head and Body
1 Like
  1. HTML stands for Hyper Text Markup Language.
  2. HTML is used for creating websites, more specific to structure a webpage document and its content.
  3. We need to learn HTML in order to be able to have a frontend for the smart contracts we are creating as backend. With HTML we can create a website that is able to show the work we have done with coding in smart contracts.
  4. An HTML tag is used to define content on the website.
  5. The structure of an element is that is begins with an opening tag, followed by the content, followed by a closing tag.
  6. Attributes point to the HTML tags and contain extra information about the element that we do not want to appear on the content.
  7. 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?
    H yper T ext M arkup L anguage
  2. What is HTML used for?
    Used to structure a web page and its content.
  3. Why are we learning HTML?
    To create a structure for a website so Java Script language will be added
  4. What is an HTML tag?
    Tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller.
  5. What is the structure of an HTML tag?
    Opening tag, Closing tag, Content, and Element
  6. What is an attribute?
    Attributes contain extra information about the element that don’t appear in the actual content.
  7. What is the anatomy of an HTML document?
    Doctype, html, head, character set (UTF-8), title, body.
1 Like