HTML Reading Assignment

  1. What is HTML?

HTML stands for Hyper Text Markup Language. HTML is not a programming language, but is used to structure web pages and content.

  1. What is HTML used for?

Giving structure and styling attributes to web content.

  1. Why are we learning HTML?

HTML enables us to create websites that serve as the front-end of a DAPP (decentralized app), allowing the user to interact with smart contracts.

  1. What is an HTML tag?

An HTML tag encloses the content you are structuring for the browser to read. It’s like labelling an element of your content for the web browser.

  1. What is the structure of an HTML tag?

The tag content

  1. What is an attribute?

An attribute is added inside an HTML tag to include additional information about an element, which for text content might be it’s colour, or font size.

  1. What is the anatomy of an HTML document?

Every HTML doc consists of head and body elements at a minimum.

The head tag encloses all information included about the tag which is not visible on the page, such as the Title tag, the Description, Keywords etc.

The Body tags enclose all the content visible on the page itself. Inside the Body tags you would find text in Paragraph elements, tagged ‘p’. Or image elements, enclosed within ‘img’ tags.

All elements are enclosed inside ‘html’ tags, with opening and closing tags at the beginning and the end of the document.

1 Like
  1. HTML is a markup language that defines the structure of your content on a website.

  2. We use HTML to enclose or wrap different parts of the content of websites to make it appear or act in a certain way. For example, make text bigger or smaller or add links and images.

  3. HTML is needed for any website and therefore is useful as most of the time you would need a website to interact with the blockchain or even just to provide information to the public about your product.

  4. Tags are used to create elements. 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. Begins with an opening tag, followed by the content and then the closing tag. <?>"Content"

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

  7. The anatomy of a basic HTML document starts with , then the element, then , then , then , then .

1 Like
  • What is HTML?
    —Hypertext Markup Language. It is the mark up language we use to properly display information on a webpage.

  • What is HTML used for?
    —To properly display information on a webpage on our computer screens from the internet.

  • Why are we learning HTML?
    —It is a great foundation to get your information on the web. HTML is the language we use to tell the computer what we want to put on a site. By learning HTML you are increasing your chances of being self sufficient when designing a webpage.

  • What is an HTML tag?
    —an HTML tag is used to create and name an element. such as

    for paragraph if you want to enclose a paragraph or written text to be displayed.

  • What is the structure of an HTML tag?
    —There are two types of tags in an element. An opening tag and a closing tag. The structure of an opening tag is as such “

    ” while the closing tag has a forward slash after the first angle bracket "

  • What is an attribute?
    —An attribute contains additional information about the element that you don’t want to appear in the actual content. It gives the element a non-unique identifier to the contents in the tag. such as <a href=""</a. in this case “href=”"" is the attribute, href stands for hypertext reference and this format is used to insert a link within a text.

  • What is the anatomy of an HTML document?

  • element: ensures the information behaves correctly.
  • element: wraps all the content of the entire page.
  • element: contains all the things you want to include on your page that is NOT the content you want your users to see. such as keywords in a search engine or a page description.
  • element : provides a wide variety of text that the computer is capable of reading.
  • : provides the title of your page in the web browser
: contains all the content you want to show web users when they visit your page.
1 Like

Cool, i didnt know that.
Thanks.

  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?
    to create and structure web page

  3. Why are we learning HTML?
    to understand how web page works so we can code something of our own

  4. What is an HTML tag?
    a tag is used for creating an element.

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

    , content, 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?

My test page My test image
1 Like
  • What is HTML?
    The code that is used to structure a web page and its content.
  • What is HTML used for?
    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?
    Will help learn and understand lingo down the line.
  • What is an HTML tag?
    Its used for creating an element.
  • What is the structure of an HTML tag?
    For beggining is the name of the element wrapped in opening and closing angle brackets and for the ending same as begining but with forward slash before the element.
  • 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
    Individual elements are combined to form an entire HTML page.
1 Like
  1. What is HTML?
    Hypertext Markup Language is the code that is used to structure a web page
  2. What is HTML used for?
    It is used for forrmating text and images and the basic structure of page (website) to display them to a custumer
  3. Why are we learning HTML?
    We are learning it so we can connect a back end (our smart contract) to a front end (web page)
  4. What is an HTML tag?
    tag is defining what type of content we are presenting on the website
  5. What is the structure of an HTML tag?
    We need to put content between a opening tag and a closing tag and it makes an element if put that way
  6. What is an attribute?
    Atribute provides an extra information for the given element that we dont want to apeare in the content
  7. What is the anatomy of an HTML document?
    HTML document must have
    doctype element - sets rules for the page to follow
    html element - wraps the content on the page
    head element - is a page informations that is not content that users see
    body element - is the content of the page that is shown to web users
    title element - is a title of the page that apears in browser tab
1 Like
  1. HTML is a Hypertext Markup Language

  2. HTML is used for websites to put information on the website properly.

  3. To learn how to put whatever we want about crypto or the blockchain on the internet.

  4. A tag tells the browser know what type of content to show and how to do it.

  5. It starts with the name of the element then the content of the element you want to put there then at the end you put the name of the element again but with a forward slash before it.

  6. A tag you put in an element or tag

  7. It starts with the tag then the opening tag. After that the page title then the closing element. Which then opens the page.

1 Like

1.- HTML is a markup language. 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.- Is used to structure a web page and it’s content.

3.- Is basic to create a web site so it can interact with smart contracts.

4.- Where an element starts and ends to take effect.

5.- For beggining is the name of the element wrapped in opening and closing angle brackets and for the ending same as begining but with forward slash before the element.

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

7.- Individual elements combined to form an entire HTML page

1 Like
  1. A Markup Language
  2. Describe the structure of a webpage
  3. Every webpage relies on HTML
  4. Used to indicate an HTML element
  5. The name of the element is enclosed by angle brackets
  6. Describes additional information about the element, that will not be displayed
<!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 Hyper Text Markup Language and is a major building block for websites.

2. What is HTML used for?
HTML some of the contents on a webpage.

3. Why are we learning HTML?
To learn how front-end web interfaces can communicate with back-end services in the new Web 3.0 space.

4. What is an HTML tag?
An HTML tag is used to create an HTML element.

5. What is the structure of an HTML tag?
The structure of an HTML tag has an opening bracket and a closing bracket.

6. What is an attribute?
An attribute is extra informat placed inside an element that is not visual on a webpage.

7. What is the anatomy of an HTML document?
The anatomy of an HTML document is:
1.< !DOC TYPE html >- the doc type declaration tells the browser the html version.
2. <html opening tag - wraps all of your webpage content.>
3. <head opening tag - acts as a container.
4. <meta tag - sets your web content to UTF-8
5. <title tag - sets title of page
6.</title tag - tells browser where title ends
7. </body tag - tells browser where body ends
8. </html tag - end html tag

1 Like
  1. What is HTML?
    A: Stands for “Hypertext Markup Language”.

  2. What is HTML used for?
    A: It is code that is used to add simple content to a web page. It’s not a programming language in itself, it’s a markup language that defines the structure of the content. It consists of “elements” that cause the text to act or appear a certain way.

  3. Why are we learning HTML?
    A: HTML is the basis for where we are going within programming in the crypto space. It is the basic part of the front end where we will later add more dynamic substance through JavaScript. Bringing development and fleshing out the front end is important to where we are going because it’s the front end that will represent part of the DApps we will develop, by being able to interact with the back end smart contract protocol that we will write.

  4. What is an HTML tag?
    A: The tags are essentially instructions for the text/content. Use them to add a link or change font characteristics.

  5. What is the structure of an HTML tag?
    A: It uses a diagonal bracket with the desired tag function. When the tag is opened it also needs to be closed in a certain order (with multiple tags present). Such as a paragraph tag structure would look like this

    content

    .
  6. What is an attribute?
    A: An attribute is part of an element that the programmer does not want to show up within the content.

  7. What is the anatomy of an HTML document?
    A: - describes the set of rules that are expected to govern the document to ensure that good html is being put forth. They are a required part.

- The "root element" that wraps all the content on the page. - " 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](https://developer.mozilla.org/en-US/docs/Glossary/keyword) and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more." - "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." - Sets the title of the page that appears in the browser. - Contains the content that your site visitors will see.
1 Like
  1. HTML is Hypertext markup language
  2. HTML is used to define the structure of the content you want to produce.
  3. To be able to create websites and learn how to read and write simple code.
  4. A tag is where you write you content.
  5. opening tag, content and closing tag.
    6.The attribute gives extra information to the tag.
  6. It is a list of instruction on how the page should look i.e. links, images, font type, lists, format.
1 Like

HTML stands for Hyper Text Markup Language, this code to format your web pages contents to behave and show your content has you would intend.

To provide intended content formatting to make your web pages act and appear a certain way.

We are learning about HTML to build upon our knowledge, and concepts of programing. Keep mind HTML is not programming language, but is code used to format web pages that you can create.

Tags are used to identify what purpose the element is to be shown and behave. Tags are a part of code that the browser will execute has to what actions are coded.

The structure of Tags will wrap or sum up beginning to end of particular actions coded to the element. Element is the entirety of actions, behavior, and style specified of content between the Tags.

Attributes are notations in the tag , or reference usually not seen unless by viewing properties of the web page.

HTML anatomy are elements that set, use,and define the creation of content or contents being.

1 Like
  1. HTML H yper t ext M arkup L angauge is the Code that is used to structure a webpage and its content. Html is no programming language. Html consists of a series of elements which you can form the text like you want.
  2. It is used to program websites with a fixed content.
  3. To enable us to build a front -end for our smart contracts/dapps that we want to develop.
    4.A Tag donates the start and the end of the section in HTML, like a heading, paragraph, table…
  4. Denoted in , the end tgag additionally starts with a /
  5. An attribute in HTML/XML is used to denote special features/ characteristics of an element or tag
  6. . . . . . .
1 Like
  1. A markup language used to organise a webpage
  2. To assign various attributes to text,create links and add pictures by way of various tags and content to form a series of different elements.
  3. To understand how to set up a basic webpage in order for us to at a later date introduce crypto functionality to the page.
  4. Used to open and close content in a perticular kind of element
  5. There is a number of ways to fill a tag depending on the desired effect however they generally all start with < followed by a letter then > unless its the closing tag and it would be </ then the letter then>
  6. Extra info about the element that you don’t want to appear in the actual content. It consists of an attribute name and an attribyte value.
  7. All the parts of a webpage
1 Like

1 - HTML stands for HyperText Markup Language and it is the code that defines the structure of a content.

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

3 - We are learning HTML because it’s the basic step in understanding how a web page is made and how it can interact with the users.

4 - A HTML tag, usually is used in pairs (opening and closing tags, an exception is the tag) and forms the structure of a web page.

5 - An HTML tag is made by an opening tag like

, attributes, content and closing tag like

6 - An attribute cointains extra information that we don’t want to appear in the content.

7 - An HTML document contains the following elements: , , , and the relative closing tags.

1 Like
  1. HTML (Hypertext Markup Language) is a markup language that defines the structure of your content.
  2. It is used for structuring a web page and its content.
  3. We’re learning HTML to eventually be able to create our own website that can interact with a smart contract in a blockchain (ex. a smart contract on the Ethereum Blockchain).
  4. It is the start and end of an HTML element.
  5. Starting tag: name of element wrapped in opening and closing brackets.
    Closing tag: same as starting tag, but with a forward slash before the element name.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. It consists of the:
  • Doctype that doesn’t do much, but is needed to make sure the document behaves correctly.
  • HTML element that wraps all the content on the entire page.
  • Head element that acts as a container for all the things you want to include on the HTML page that isn’t the content you are showing to the web user.
  • Title element that sets the title of your page that appears in the browser tab.
  • Body element that contains all the content that you want to show the web user.
1 Like
  1. Hypertext markup language
  2. It is used to define the structure of your content.
  3. We are learning HTML to build a simple front end website that can be improved with Java and be interacted with on the backend with blockchain.
  4. A tag, like the paragraph tag is wrapped in angular brackets and need an opening and a closing tag.
  5. The opening tag is wrapped in angular brackets and the closing tag needs an additional / within the angular brackets.
  6. An attribute is additional information about an element, that are specified in the start tag and contain name and value information. they have 3 rules in the article.
    1)space between it and the element name. 2) attribute name followed by =. 3)attribute value wrapped by “”.
  7. Anatomy of an HTML document:
    !DOCTYPE, head, and body.
1 Like
  1. What is HTML?
    It stands for Hypertext Markup Language

  2. What is HTML used for?
    HTML is used to design how content is organized and presented on web pages.

  3. Why are we learning HTML?
    We are learning HTML as it is an introductory step to learning programming using different languages. It’s basic but provides a good building block for future programming languages.

  4. What is an HTML tag?
    A tag is used to dictate how a piece of information is displayed.

  5. What is the structure of an HTML tag?
    A tag has has angled brackets with a named element on the inside of these. Close tags have a forward slash in them to designate them as closing tags.

  6. What is an attribute?
    An attribute is is an extra piece of information contained in an opening tag that alters how the element is displayed on the web page.

  7. What is the anatomy of an HTML document?
    The anatomy of an HTML document is all of the elements and attributes put together with the content to be displayed on the web page

1 Like