HTML Reading Assignment

My answers:

  1. Hyper text Markup Language. It’s code

  2. Used to structure a Webpage

  3. So we can build, edit, and read different webpages
    4 Tells the browser what kind of document it is and what content to show

  4. They are structured with the beginning Tag consisting of a specific name and the ending Tag consisting of that same exact name, but with a forward slash
    Ex: beginning with q and ending with /q

  5. They provide extra information about the element and must always have 3 things

  6. All HTML doc a 2 elements Heading (Titles and general page formatting commands) and Body (the main HTML text)

1 Like
  1. Hypertext Markup Language. - code used to structure a webpage and it’s content.
  2. HTML is used to define the structure of the content of a webpage. Ensures the proper formatting of text and images so they appear as desired when viewed.
  3. To have a basic knowledge of how to connect DAPPS to WEB.
  4. HTML tag signifies the beginning or ending of a line of code
  5. <> content </>
  6. contain information about the element that is not displayed on web page.
<!doctype html>
<html>
<head>
<meta charset>
<title>
<body>
1 Like
  1. HyperText Markup Language
  2. HTML is used to structure and code a website and its contents
  3. We are learning HTML to get a basic understanding of computer language in order to be a better builder and well-rounded.
  4. An HTML tag opens and closes the content of an element
  5. The structure of an HTML tag opening is <> and closing is </>
  6. An attribute contains extra information about the element that you don’t want to show in the element.
  7. The anatomy of an HTML document consists of basic elements including a preamble, html, head, title, body, and image elements.
1 Like
  1. What is HTML? Markup Language

  2. What is HTML used for?
    Creating structure of webpage and contents.

  3. Why are we learning HTML?
    To be able to creat website and use it to test/interact when building smart contact or blockchain applications

  4. What is an HTML tag?
    It uses when opening and closing the element.

  5. What is the structure of an HTML tag?
    It starts with Opening tag then elements followed by closing tag.

  6. What is an attribute?
    It contains information about the elements that you don’t want to appear in the actual content.

  7. What is the anatomy of an HTML document?
    It wraps up the basic of individual HTML elements. The doctype declaration is a must have in your HTML document before you do anything else.

1 Like
  • What is HTML? It’s a HyperText Markup Language, a code which helps to structure a web with it’s content
  • What is HTML used for? To structure a web as we would like to have it
  • Why are we learning HTML? It’s a frontend part of the developers, backend it’s about smartcontract. It’s kind of entrance for future chapters.
  • What is an HTML tag? It’s an element in an angle brackets.
  • What is the structure of an HTML tag? Element between angle brackets. Firsly opening tag, ending with closing tag
  • What is an attribute? Extra information, not visible to the user of the web.
  • What is the anatomy of an HTML document? DOCTYPE, HTML, HEAD, META CHARSET, BODY
1 Like
  1. What is HTML?
    HTML is Hyper Text Markup Language.

  2. What is HTML used for?
    HTML is code to structure a webpage and it’s content. The language consists of a series of elements, which can enclose or wrap different parts of the content, to make it act or appear a certain way on a webpage.

  3. Why are we learning HTML?
    We are learning HTML as a foundation for programming.

  4. What is an HTML tag?
    An HTML tag enables a word or image to link somewhere else (hyperlink), or can italicize words, make words big or small, etc.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag consists of the name of the element, wrapped in opening and closing angle brackets.

  6. What is an attribute?
    An attribute is extra information about the element that a coder does not want to appear on the actual content. An attribute should have a space between it and the element name (or, the pervious attribute, if the element already has one or more attributes.

  7. What is the anatomy of an HTML document?
    The anatomy of a HTML document contains the following:

HTML— This element wraps all the content on the entire page and is sometimes known as the root element.

HEAD — This element acts as a container for all the stuff you want to include on the HTML page that isn’t viewable on the actual webpage (viewable via page-source on the web browser). This includes things like keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.

META CHARSET — An element that sets the “character set” of your document to UTF-8 (which included a cast majority of written languages). It can handle any textual content put into the coding of a webpage. Always add this element, as it helps avoid problems later on in the coding process.

TITLE — The title element is viewable on the browser tab of the webpage. Also viewable when bookmarked or favorited on a browser.

BODY — Contains all the content on the webpage viewable by the public (text, video, links, audio tracks, video games, etc).

1 Like
  1. What is HTML?
    - Hypertext Markup Language
    - A markup language that defines structure of content in a simple and basic way.

  2. What is HTML used for?

    • It is used to structure content on a webpage.
  3. Why are we learning HTML?

    • To be able to see the whole picture containing a web page connected to a block chain.
  4. What is an HTML tag?

    • A tag open or close a an element.
  5. What is the structure of an HTML tag?

    • open tag —> attribute —> content —> closing tag = Element.
  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?

    • html open and close tag
    • head open and close tag
      - html wraps the whole page
    • head open and close tag
      • a container for stuff not readable for visitors like keywords and descriptions only showing in search results.
    • meta charset=”utf-8”
      • sets the page to language standard
    • title open and close tag
      • Sets the title of the page
    • body open and close tag
      • Content that users/visitors can read and see.
1 Like
  1. What is HTML?

it is hypertext markup language

  1. What is HTML used for?

to structure a web page and its content

  1. Why are we learning HTML?

for us it is the reflection of the backstage development happening on blockchain - easy to use and understand for common folks

  1. What is an HTML tag?

its editing tool for html developer to make the content look as we wish

  1. What is the structure of an HTML tag?

< p > … < / p > - without spacing
p - is the element of the tag, angle brackets are without space

  1. What is an attribute?

extra information that is not meant to appear in the actual content

  1. What is the anatomy of an HTML document?

doctype
html - root element
head - container - hides the stuff thats visitor not supposed to see used by search engines
charset element - setting for most written languages
title - title of the page
body - all content visible to visitor of the website

1 Like

HTML stands for Hypertext Markup Language, and its function is to define and organize the structure of a website through the use of tags. These identify and format different elements of the content’s structure. Why is learning HTML relevant to this course? So that we can create the front-end of the dapps we strive to create through smart contracts.

An HTML tag is added before and after a piece of content of a website (around it) in order to identify it and format it. For example, around the title of the page or around a paragraph. There are also stand-alone tags which don’t require content to enclose, therefore don’t need a closing tag. For example, to include a picture. The combination of both tags and the content are known as an element.

HTML tags look like this: An opening HTML tag has a specified name (e.g. a) which goes between angle brackets (). The closing tag is similar, but adds a slash right after the opening bracket (). Note that stand-alone tag is just like an opening tag. If the tag has attributes, they go right after its name and an empty space. The structure of an attribute is as follows: its name, an equal sign, opening, quotes, its value, and closing quotes. Note that no empty spaces are used ().

So, what is an attribute? Additional information about an element that you don’t want to be displayed on the final site, or information that modifies that element.

The most basic anatomy of an HTML document is the following: a stand-alone tag that identifies the whole document as HTML; then an opening and closing “html” tag. Nested within it: an opening and closing “head” tag, where other elements for information that affect the whole document but should not be displayed go. After the “head” tag, an opening and closing “body” tag, where the elements that are to be displayed go.

1 Like
  1. HTML stands for HyperText Markup Language. It is code used to structure a webpage and its content.

  2. HTML is a markup language that web browsers use to interpret and compose text, images and other material into visual websites.

  3. HTML is the foundation of all webpages, it is the basic programming language for web development and design.

  4. HTML tags wrap content to form an element. The opening tag states where the element begins or starts to take effect. The closing tag states where the element ends.

  5. The opening tag consists of the name of the element, wrapped in opening and closing angle brackets. The closing tag is the same as the opening tag except it includes 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 text. It’s made up of an attribute name and attribute value e.g. href = " https://cardano.org/ "

  7. Anatomy of an HTML document:

  • Every HTML document should begin with a DOCTYPE declaration to be compliant with HTML standards.

  • html element - this element wraps all the content on the entire page and is sometimes known as the root element.

  • head element acts as a container for metadata about the HTML document, it is not displayed and typically define the document title, character set, styles, scripts, and other meta information.

  • meta charset = “utf-8” 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.

  • title element sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.

  • body element contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks etc.

1 Like
  1. Hyper text markup language
  2. To markup content, define structure of a webpage
  3. it is the basics on which browsers display webpage content.
  4. An element which is part of the DOM syntax used to mark content or define structure. Can be nested
  5. open<, name, attribute(s)=value(s)>,close
  6. A property of a tag
  7. HTML, Head, Body
1 Like

What is HTML?
HTML is a programming language used to structure web pages

What is HTML used for?
HTML is used to structure the content of a web page

Why are we learning HTML?
We are learning HTML in order to learn how to create web pages and to gain a basic understanding of programming concepts that can help when moving on to learn other programming languages

What is an HTML tag?
An HTML tag is a piece of code that tells a website to structure content in a specific way such as a paragraph, italics, etc.

What is the structure of an HTML tag?
content

What is an attribute?
An attribute adds extra information to modify an element

What is the anatomy of an HTML document?
< !DOCTYPE html>
< html>
< head>
contents of the head such as < meta charset=“utf-8”> and < title>page title< /title>
< /head>
< body>
contents you want to actually display on the web page
< /body>
< /html>

2 Likes
  1. HTML is an XML-based mark up language developed to describe hyper text websites

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

  3. In order to create front for blockchain applications

  4. An HTML tag is used to define content on the website

  5. A sequence of letters (> = 1) with tags (< and >) , including the symbol / when its a closing tag

  6. An attribute contains extra information above an element that you don’t want to appear as content.

Test page

stuff

1 Like
  1. Hypertext Makeup Language
  2. HTML is the code to structure a web page and its content.
  3. Because a formatting structure for a web page is basic.
  4. The HTML tag is used to make sure that your content appears/act a certain way.
  5. A HTML tag structure = (x=the action you want to put in) CONTENT
  6. An attribute is a “note” you can put next to the element which describes the element (for example an explanation or description) in order got the code more transparent.
  7. <html> <head> <title> </title> </head> <body> </body></html>
1 Like
  1. Hyper text markup language
  2. used for building web pages
  3. to be able to create the face for blockchain apps
  4. Tag - the root of the html document
......

6) a property of an element 7) Head and Body
2 Likes
  1. What is HTML? - Hyper Text Markup Language is the language used to structure the content on a website.
  2. What is HTML used for? - HTML is used to make the content appear a certain way, display images, link to different content within/out the web page etc…
  3. Why are we learning HTML? - So we will be able to build an interface that can interact with smart contracts. HTML represents the front end, the smart contract represents the back end. It is also a useful way to begin the journey to learning programming. I hope…
  4. What is an HTML tag? - Tags denote the start and end of an element.
  5. What is the structure of an HTML tag? - Opening Tag < > content < / > Closing Tag
  6. What is an attribute? - Attributes are used inside the element tag to control the elements behaviour and does not appear in the actual content.
  7. What is the anatomy of an HTML document? -

DOCTYPE html tag
Open html tag
Open head tag
meta charset=“utf-8” tag
Open title tag. Description of HTML document, appears in browser tab, bookmarks and favourites. Close title tag
Close head tag
Open body tag
Content Insert images, text, tables etc… here.
Close body tag
Close html tag

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content.

  2. What is HTML used for?
    It’s the basic language used for building websites

  3. Why are we learning HTML?
    To have a basic knowledge and understanding of it. Which later will be useful when building frontend interface for our backend programming.

  4. What is an HTML tag?
    A set of instructions that will tell the browser how to display the content

  5. What is the structure of an HTML tag?
    The opening tag, followed by your content and closing tag.

  6. What is an attribute?
    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?
    The element wraps all of the content from the entire page and makes sure the page behaves correctly. Doctype, HTML, Head, Meta charset, title, body

1 Like
  1. What is HTML?
    A markup language that gives structure to the content of your webpage.
  2. What is HTML used for?
    Create websites in a structured way.
  3. Why are we learning HTML?
    So that the GUI can interact to the outside world with the smart contract.
  4. What is an HTML tag?
    This is used to enclose content to make that content appear in the way you want or make it interact in a desired way.
  5. What is the structure of an HTML tag?
    Content wrapped by an opening and a closing tag. This whole sequence is called an element.
  6. What is an attribute?
    This gives extra appearance instructions to an element, without this information being displayed on the webpage.
  7. What is the anatomy of an HTML document?
    This includes: Doctype and the html/body/head/meta charset/title elements
1 Like
  1. What is HTML?
  • Hypertext Markup Language
  1. What is HTML used for?
  • A code which structures a web page and its content
  1. Why are we learning HTML?
  • to understand how to code the website and connect to the dapps
  1. What is an HTML tag?
  • to wrap the content and for browser to show
  1. What is the structure of an HTML tag?
  • opening tag, attribute name and value if needed, content, closing tag, all of which comprise element
  1. What is an attribute?
  • attribute is an extra content of the element
  1. What is the anatomy of an HTML document?

!DOCTYPE html
HTML
Title
Heading
Body
Paragraph

1 Like

Q1. What is HTML?
a. Hyper Text Markup Language
Q2. What is HTML used for?
a. HTML is used to structure or format you webpage with a browser using HYPER Text
Markup Language
Q3. Why are we learning HTML?
a. HTML is a basic fundamental peace to learning code. Fundamental is a great place to start being the foundation of the internet business going into the future. Like proper footwork will make a Jab a knockout pucnch.
Q4. What is an HTML used for?
a. HTML tag do 3 things. Lets us now the type of element we are using, the beginning of an element and the ending of an element.
Q5. What is the structure of an HTML tag?
a. example of HTML tag in the content of an element </closing tag>
Q6. What is an attribute?
a. Tells the browser you are using, how to display an element on the webpage
Q7. What is the anatomy of an HTML document?
a. !DOCTYPE html
HTML
Title
Heading
Body
Paragraph

1 Like