HTML Reading Assignment

  • What is HTML?
    It stands for HyperText Markup Language is the code used to structure a webpage and its contents

  • What is HTML used for?

Is used to structure a webpage and the contents on it

  • Why are we learning HTML?

Because it is the most basic for learning the other programming languages and it is the root to learn and create your own webpage that you will be able to put your own business, crypto, or dapp on.

  • What is an HTML tag?

A tag is something the browser will look at and the tag will tell in in which way it has to show it and what it has to show in particular

  • What is the structure of an HTML tag?

Tags always come in pairs the first one which we will start with will be written like this <1> also called a Opening tag (the 1 will be changed to the command you want the specific content to do.) Once the content has been written the other tag will look like this </1> this is called a closing tag

  • What is an attribute?

An Attribute is something specific or an additional property inside the tag

  • What is the anatomy of an HTML document?
    It will always start with < html > then < head > then < body > where we will put all the content and then at the end we will have to close all of them so that will look like this
    < /body > < /head > < /html >
1 Like
  1. What is HTML? It is a markup language used to structure web page content.
  2. What is HTML used for? Used to create web pages
  3. Why are we learning HTML? To learn how to structure front end content and to interact with smart contracts
  4. What is an HTML tag? It is an element used to manipulate the content for web-presentation
  5. What is the structure of an HTML tag? It has arrow brackets with the tag name in the middle. Some tags are self-contained and some of them come in pairs: opening and closing tags. The closing tags have a forward slash to mark the end of any HTML element.
  6. What is an attribute? It is a piece of extra information used inside a self-contained or opening tag that is not directly visible to the content viewer. An attribute can be a hypertext reference that comprises a hyperlink
  7. What is the anatomy of an HTML document? It has the DOCTYPE tag at the top to alert browsers that this page is using HTML, therefore, render it accordingly. After that, we have the HTML tags which wraps all the details of the HTML page. The header element wraps additional information about the page. It contains information like the title of the page. The body element holds all the information of the content to be displayed and how the content will be formatted.
1 Like
  1. What is HTML?
    It’s a markup language that lets you structure your content on webpages.

  2. What is HTML used for?
    Structuring content on pages.

  3. Why are we learning HTML?
    So we have an understanding of the basics of the applications that will be communicating with our smart contracts. And it’s one of the foundations of web languages so it’s good to know.

  4. What is an HTML tag?
    It’s a way to organise your content the way you like. So for example, if you wanted to have a paragraph with a sentence in it, you would put an opening and closing p tag with your content in the middle.

  5. What is the structure of an HTML tag?
    You have an opening tag, some content and then a closing tag. These make up the element.

  6. What is an attribute?
    Attributes have extra information about elements. This doesn’t appear in the actual content. You can then give the element a label or non-unique identifier so that you can target it and any other elements with the same attribute.

  7. What is the anatomy of an HTML document?
    You need to first have which is a throwback to when HTML first started but doesn’t serve much purpose now. Still it is necessary to make sure your doc works.
    Then you need to have the html element which wraps the content on the entire page. The the head element which sets all of the things that you are not showing on your page but is necessary for ranking on search engines, related to CSS styling, setting a title for the browser tab (also what shows when people bookmark your page), setting character declarations and other stuff. Finally you have the body element which is everything you want to show on your page including text, images, video, other rich media, audio etc.

1 Like
  1. What is HTML?
    It is programming language

  2. What is HTML used for?
    With HTML we can structure webpages and its content.

  3. Why are we learning HTML?
    It is the baseline in all coding and we need to understand the basics before moving to coding smart contracts.

  4. What is an HTML tag?
    It is a part that comes before and after a paragraph. With tag we can specify what is content about.

  5. What is the structure of an HTML tag?
    Here is example for paragraph tags:
    Opening tag for paragraph:


    Closing tag for paragraph:

  6. What is an attribute?
    Attributes contains additional information that we don’t want to appear in the actual content.

  7. What is the anatomy of an HTML document?
    It compains all the different individual HTML elements to form an entire HTML page.

1 Like
  1. HTML (Hypertext MArkup Language is the code that is used to structure a web page and its cotent. It is ot a progrmming language - it is a markup language that defines the structure of your content.

  2. HTML is used to structure a eb page and its content

  3. We are learning HTML to allow us to design the front end of a website or application, which is the most important for user experience.

  4. An html tag is the root of an HTML document, an is the container for allother HTML elements (except for the <!DOCTYPE> tag

  5. The structure of an HTML tag is
    The opening tag
    The closing tag
    The content
    The element

  6. An attribute contains extra information about the element that you don’t want to appear in the actual content. An attribute always has:
    A space between it and the element name (or previous attribute)
    The attribute name followed by an equal sign
    The attribute value wrapped by opening and closing quotation marks

7.!DOCTYPE html
html
head
meta charset=“utf-8”
titleMy 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 hypertext markup language
  2. What is HTML used for?
    It used to structure a webpage so that you can control the way it appears and acts
  3. Why are we learning HTML?
    We are learning HTML so that we can build a webpage/site so that there is an user interface for what we are going to program
  4. What is an HTML tag?
    An HTML tag opens and closes elements that make up the webpage
  5. What is the structure of an HTML tag?
    It a set of angular brackets containing the element type such as p for paragraph etc. can contain attributes, opens the element followed by content and then a closing tag which is the same as the opening tag but has a forward slash in front of the element type
  6. What is an attribute?
    An attribute contains extra information about the element that doesn’t appear in the content on the webpage. It has a name and a value with style information as well as other things
  7. What is the anatomy of an HTML document?
    An HTML document starts with the doc type element then the root element, head element, title element, body element which contains everything the user sees and interacts with a variety of elements within it. With the exception of doc type all elements need to be closed sequentially.
1 Like
  1. Hypertext Markup Language
  2. to define the structure of your content
  3. it is used for webpages which are necessary as front end. Also it is relatively beginner friendly
  4. this is what defines the structure of the content, could be or
  5. or

    , angle brackets always and th closing tags alsways with a forward dash
  6. extra information about the element
  7. it starts with a ```
``` then usually a and folllows, which always need to be opend and closed. Those elements can then have contents
1 Like
  1. ,2. HTML is a code that is used to structure a webpage. It defines a structure of the content
  2. To be able to put information and data into web structure
  3. Tag is a set of commands that defines the format of the web page. Have opening and closing
  4. Opening and closing and content in between
  5. Attribute is an extra information about the element
  6. Basically it is a header and a body
1 Like
  • What is HTML?
    It is a markup language that defines a structure of your content. it is a set of elements which you used to enclose or warp different parts of your content to make it appear certain way
  • What is HTML used for?
    It is used to structure paragraphs a list of bulleted points or using data tables
  • Why are we learning HTML?
    To have a better underestanding about coding and javascript
  • What is an HTML tag?
    it is a inline element that defines a hiperlink which it is used to link from one page to an other <a> links destiantion
  • What is the structure of an HTML tag?
  1. A tag starts with an opening <tag>, has usually an attribute inside and finishes with a closing </tag>
  • What is an attribute?
    An attribute contains a extra information about the elements that you don’t want to appear in actual content
  • What is the anatomy of an HTML document?
    That wraps up the basis of individual HTML element but they arent handeling their ow
1 Like
  1. HTML 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. To get into fronted development and then interact with back end blockchain ( Smart contracts etc)
    4)In HTML a tag is used for creating an element.

  4. There are 2 kind of tags: The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets and The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name.

  5. Is a part of HTML element wich contain extra information about the element that you don’t want to appear in the actual content.
    7)That wraps up the basics of individual HTML elements, but they aren’t handy on their own. Body and head elements

1 Like
  1. HTML is a markup language.
  2. It is used to structure websites.
  3. To create user interfaces that can interact with the blockchain
  4. A pair of HTML tags define start and the end of the content and define its type.
  5. < t >content< /t >
    tags + content = element
  6. An attribute is a variable that contains extra info about the element that you don’t want to see in the actual content.
  7. An HTML document consists of nested elements
1 Like
  1. HTML means Hyper text Markup Language
  2. HTML is used to create basic structure on a web page.
  3. Because in order to grasps deep in programming you need to learn the basics first.
  4. It consist the name of the element such as p, h1, br, etc.
  5. The opening tag- content- closing tag
  6. It is an extra information about the element.
  7. Every HTML uses two parts Head elements and body elements
    head elements consist of page title of the web page and general page formatting commands and the body elements consist of the content or the text of the web page.
1 Like

HTML is a markup language that defines the structure of your content.

It’s used to enclose, wrap all the content to make it appear in a certain way.

Because it’s part of creating a web page. Using HTML we can structure a web page and its content.

It’s a character that has two parts in an element. and opening tag and a closing tag of a content.

An opening tag and a closing tag.

this is an example

It’s the extra information about the element. It can be more than one attribute per element.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
  </head>
  <body>
  </body>
</html>
1 Like
  1. HTML - (Hypertext Markup Language) programming language…
  2. Used to structure a web page and it’s content…
  3. So we can create our own web page.
  4. A tag is used to create an element. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
  5. < p > text. < p >
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content. And come in name=“value” format.
  7. Anatomy of an HTML document wraps up the basics of individual HTML elements.
1 Like
  1. it is code to structure a web page and its content
  2. It is used to make content appear and act a certain way.
  3. We need to understand the basic structure of a website so that we can efficiently interact with it with the blockchain
  4. the structure/language of what you want to manipulate and how you want to do it
  5. Opening tag:
    Closing tag: </name of element>
  6. its extra info about the element that you don’t want to appear on the actual content. i.e. a hyperlink
  7. its the combination of all the individual elements that form an entire HTML page.
1 Like
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? it’s a programming language used to structure a web site.
  3. Why are we learning HTML? so we can build a simple website that interacts with the blockchain
  4. What is an HTML tag? it’s the part of html that defines the element
  5. What is the structure of an HTML tag? opening and closing
  6. What is an attribute? attributes allow you to add additional information to a tag that you do not want to appear in the content
  7. What is the anatomy of an HTML document? you have six tags. the DOCTYPE tag goes on the first line. All tags are enclosed in the html tag. The meta tag and title tag are enclosed by the head tag and the head tag closes before the body tag opens. the body tag opens after the head tag and closes before the closing html tag.
1 Like
  1. It’s a Hypertext Markup Language.
  2. It’s used to structure a web page and its content.
  3. To have a good understanding how web page and its content is broadcasting to a user.
  4. A tag is a name of the element wrapped in angle brackets. It shows where the element start and end.
  5. opening ,

    closing
  6. Attribute is additional information to element that I don’t want it to appear on the web and can be used to target the element.
  7. Anatomy of an HTML document is the way we wrap the code with the tags where each tag is responsible for something else:
<!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. HTML is the code that is used to structure a web page and its contents.
  2. Hypertext Markup Language
    3.We learning HTML to give structure to a web page we want to create along with learning how to learn languages on our own.
  3. A tag is used for creating an element(part of a webpage).
  4. The structure of a tag is the tag has to be enclosed in angle brackets before and after the content.
  5. Attributes contain extra information about the element that the programmer doesn’t want to appear.
    7.The HTML document first contains the doctype which sets the rules of the page, then element which wraps up everything within the page, after that is the element which contains everything inside the page both visible and invisible to the page viewer, to define the languages used for the elements contained on the page, for the title of the page and finally the element for the main body of the web page.
1 Like
  1. What is HTML? A web page programming language
  2. What is HTML used for? To generate web pages
  3. Why are we learning HTML? To later use it with java script and blockchain tech
  4. What is an HTML tag? The opening and closing parts of an element
  5. What is the structure of an HTML tag? Opening bracket, name of the element, closing brackets or forward slash, closing brackets when it is the 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.
  7. What is the anatomy of an HTML document?

Preamble, html wrapper, header, header content (title), body, body content, closing brackets in the right order.

2 Likes
  1. HTML is a markup language.
  2. It is used to order the contents of a webpage.
  3. It will be necessary to know how to order webpages in order to design them to interact with smart contracts.
  4. Tags define the type of element.
  5. Opening tag which may or may not contain attributes, contents, then closing element.
  6. Attributes contain extra information about an element that you don’t want to appear in the actual content.
  7. The anatomy or structure of an HTML document consists of the following
    a. Doctype
    b. Root element
    c. Character set
    d. Title
    e. Contents
2 Likes