HTML Reading Assignment

What is HTML? It is a high level programming language. Hypertext Markup Language
What is HTML used for? Navigating and displaying web pages
Why are we learning HTML? To better learn JavaScript which runs in webpages
What is an HTML tag? Indicates where an element begins and ends
What is the structure of an HTML tag? The name of the element enclosed by angled brackets, for example:

for paragraph begin
What is an attribute? It adds operations to the element by inserting name=value pairs in the tag
What is the anatomy of an HTML document? This is how the combined elements are constructed to display a webpage

  1. Hypertext markup language
  2. Not a programming language but a mark up that defines the structure for creating websites in a series of elements in a way that you would like the pages to look like
    3.It is all well and good learning the smart contracts but we still need to publish the structure where we need participants to input there data in a way that they can understand to get the best from the smart contract.
    4.Tags are the hidden keywords within a web page that define how your web browser formats and displays the content
  3. Tags have two parts an opening and a closing part with the closing part having a forward slash included in the tag
    6.an attribute is information in the element that you may want to know but is not shown in the actual content

What is HTML? Hypertext Markup Language

What is HTML used for? It defines the structure of the web page content

Why are we learning HTML? HTML will be used to build the frontend that will be used by our backend applications to interact with the blockchain.

What is an HTML tag? The part of the HTML element that indicates the identity, beginning and end of the element.

What is the structure of an HTML tag? The name of the element wrapped in opening and closing angle brackets (closing tag include a forward slash before the element name).

What is an attribute? Extra information about element that does not appear in the content.

What is the anatomy of an HTML document? The sum of the individual elements that are combined to form the document.

<!DOCTYPE html>
<html>
  <head>
      <title>My test page</title>
  </head>
  <body>   </body>
</html>
1 Like
  1. HTML is the code used to structure a web page.
  2. HTML is used for building websites.
  3. We are learning HTML to understand the front end development of our smart contracts.
  4. A HTML tag are hidden keywords within a web page that define how your web browser must format and display the content.
  5. The structure involves an opening tag telling the website how to display the content, the content you want displayed and the closing tag.
  6. Attributes are additional information for the element not intended to be seen by the user.
  7. Doctype
    HTML open tag
    head open tag
    meta charset=“utf-8”
    title open tag
    title close tag
    head closing tag
    body open tag
    body close tag
    HTML Closing Tag

What is HTML? a markup language
What is HTML used for? defines the structure of your content
Why are we learning HTML? to learn a basic structure before moving on to Javascript
What is an HTML tag? makes content appear a certain way, or act a certain way
What is the structure of an HTML tag? opening/closing tag, content, and element (also includes attributes)
What is an attribute? extra information about the element that you don’t want to appear in the actual content
What is the anatomy of an HTML document?
< !DOCTYPE html >
  < html >
    < head >
       < title >
       < /title >
     < /head >
     < body >
    < /body >
  < /html >

  1. HTML describes the structure of a website and stands for HyperText Markup Language.

  2. HTML is used to program a web page that can be found on the internet.

  3. We are learning HTML because without this knowledge, we have nothing to set up our crypto business on.

  4. Tags in HTML tell the browser that this is, indeed an HTML program and the computer should read it as HTML, not any other type of code.

  5. Most often, you would find a tag that has a starting tag, (ex: ) and a closing tag, (ex: ) which has a forward slash before the command. The starting and ending tag wrap around the text you want them to affect.

  6. An attribute is some additional description for the content. An attribute has an attribute name, and an attribute value. The attribute lets you give the contents an identifier that can be used earlier in the code to change color and font etc.

  7. The anatomy of an HTML document is,
    a) which is the doctype.
    b) the element which is known sometimes as the root element and beholds the entire HTML document.
    c) The element, which is secret to the actual contents of the page and contains the and elements.
    d) The element. This contains everything in which you want your reader/viewer to see.

  1. HTML (Hyper Text Mark-up Language) is a mark up language that defines the structure of content on a webpage.
  2. HTML is used for defining webpage content in a way that can be understood by the web-browser and accessed via the world wide web.
  3. We learn HTML so that we can upload personalised content onto the the internet, which can be accessed via browsers on a network, the internet. It seems like a logical place to start learning to communicate with a network using code.
  4. An HTML tag defines the type of the various elements of our HTML document, and encloses the content within each of those elements.
  5. The structure of an HTML tag includes triangular brackets enclosing a name, as well as a forward slash before the name in closing tags. eg.

    


  6. An attribute is any extra information that is included in the tag that helps to give further definition to the element.
  7. The anatomy of an HTML document includes a basic layout of elements, including a doctype tag, html elements, and head and body elements.
    eg.
.... ....
  1. HTML stands for Hypertext Markup Language.

  2. HTML is used to structure the content on a web page.

  3. So that we can build a website to interact with the smart contracts we create.

  4. Tags hold the content within an element

  5. Opening tag states where the element begins and closing tag</element name> states where the element ends.

  6. Attributes give extra information about the element that you do not want displayed in the actual content

  7. < !DOCTYPE html> doctypes were meant to act as links to a set of rules that the HTML page had to follow.

< html > This element wraps all the content on the entire page

  < head > container for content that will not be displayed on page's viewer

     < meta charset="utf-8"> sets the character set of your document

     < title>  sets the title of your page  < /title>

  < /head>

< body>
contains all the content that you want to show to web users when they visit your page
< / body>

< /html>

1 Like

Hi Rich. Can you please tell me how to insert the code into these reply fields?

  1. Hyper Text Markup Language
  2. Defining semantic and non-semantic page structure
  3. It is the de-facto standard for the web.
  4. One of several specific text string names surrounded by < and > which delimit behavior
  5. Tags must be opened and closed (or single closed tags />) in order to be well-formed.
  6. A property added to an HTML tag to give it additional or more specific behavior.
  7. <html><head></head><body></body></html>

There is a button called “Preformatted text”. Select your code and click that.

3 Likes

What is HTML?
a markup language

What is HTML used for?
used to define the structure of content within a web page, including the certain way in which that content is displayed.

Why are we learning HTML?
Good starting point to learn how to build the ‘front end’ of a project so that it can be presented to others, and interface with ‘back end’ when we learn this later (ie smart contracts)

What is an HTML tag?
A way of creating & defining certain characteristics of an ‘element’ which can be used to enclose or wrap ‘content’ to appear in different ways.

What is the structure of an HTML tag?
If p was the ‘element’ usually the tag might be structured something like

What is an attribute?
An ‘attribute’ contains certain extra information about an ‘element’ which you don’t want to appear in the ‘content’

What is the anatomy of an HTML document?
The culmination of individual HTML ‘elements’ that are combined to form the entire HTML page.

  1. What is HTML?
  2. Hypertext Markup Language, defines the structure used to arrange content on a web page that is translated via browser to display to the user

  3. What is HTML used for?
  4. Used to arrange data and content in a presentable fashion

  5. Why are we learning HTML?
  6. Provides a fundamental understanding of the front end web development which can be used later to develop presentable web pages that can communicate to a back-end application and to a blockchain.

  7. What is an HTML tag?
  8. HTML tag consists of an opening and closing tags which indicates the start and end of an element. The opening tag states where the element begins and the closing tag indicates where the element ends.

  9. What is the structure of an HTML tag?
  10. Structure of an HTML tag is the following â€č opening tag â€ș Some form of content or nesting element â€č ⁄ closing tag â€ș

  11. What is an attribute?
  12. Attributes are additional descriptors of an element. For example, attributes can make an element bold, underline or have a certain color, or marked for other style information

  13. What is the anatomy of an HTML document?
  14. Starts with a DOCTYPE Reference this is not an HTML tag rather, it is an instruction to the webbrowser on what version HTML is written in.

    â€č html â€ș element which wraps all the content on the wepage

    â€č head â€ș element which acts as a container for conent that is not shown to the user such as â€č meta â€ș and â€č title â€ș

    â€č body â€ș element is the content that is viewable to the user. Can nest other elements withingh the <body element such as headings, paragraphs, images, links, and lists

1 Like

For a real-life example, right-click on the background of this page and select ‘View page source’.
You’ll see all of the markup and script that comprises this page.

What is HTML?

  • Hyper Text Markup Language used to help create and build webpages

What is HTML used for?

  • Used to create and display info on web pages

Why are we learning HTML?
-To be able to help the frontend of an applications we may work on and understand how the internet works!

What is an HTML tag?

  • A tag is a part of an element used to define features and attributes in our content

What is the structure of an HTML tag?
-Opening and closing tags are required and usually the closing tag has / before the tag (but all tags are in <>)

What is an attribute?

  • Attributes have extra info for our elements

What is the anatomy of an HTML document?

  • An HTML tag to define it as HTML, A header, a body, and an elements we care to add (such as paragraphs or sub headers) and title (we can also always had metacharcter info).

HTML is Hypertext Markup Language. Emphasis on the “markup”.

This implies that it is a language is used in the process of “correcting or editing text” before it’s printed/displayed on a webpage. It’s standard markup language for creating web pages and web applications. When HTML is used with CSS (Cascading Style Sheets) and javascript, it forms a triad of cornerstone technologies of the world wide web.

So HTML is important for the front end development of web-based applications. HTML has also ‘tags’. Tags represent the root of an html. In other words html tags inform browsers that the document presented is an html document.
structure of of an HTML document mainly consists of ;

head. The head element contains title and meta data of a web document.
body. The body element contains the information that you want to display on a web page.

The attributes are special words used inside the opening tag to control the tag’s behaviour. HTML attribute is a modifier of an HTML element type. An attribute either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them. In HTML syntax, an attribute is added to an HTML start tag.

1. What is HTML?
Stands for Hypertext Markup Language. It is not a programming language.

2. What is HTML used for?
It defines the structure of web pages (how it should look in the browser)

3. Why are we learning HTML?
We want the Blockchain apps we code to be useable so we are creating a front-end/user interface to interact with.

4. What is an HTML tag?
Tags are used to wrap an element and instructs the browser how it should display the content.

5. What is the structure of an HTML tag?
Opening Tag, Content, Closing Tag

Such as:
< p> content here < /p>

6, What is an attribute?
Extra information about an element that will not appear on the webpage.
Example:
To emphasize, or change font size.

7. What is the anatomy of an HTML document?

< ! DOCTYPE html >
< html > open tag
< head > open tag

 < p> TITLE HERE < /p>
< head > close tag
< body > open tag

< p> CONTENT HERE < /p>
< body > close tag
< html > close tag

1)Hypertext Markup Language
2) Tell a browser how/what to display
3) Understanding the basics of how websites work / core structure
4) It marks the opening and closing of content that is encapsulated into a element
5) Open tag

Closing tag


6) Extra background information or properties regarding the element that you don’t want to be displayed on the website
7)Open and close all elements. Start with a then add include a and don’t forget to close what you have open :slight_smile: using the / ( ) This is not set in stone - multiple other elements can be added in-between the for example

What is HTML?
HTML stands for hyper text markup language and it is used to structure a web page and its content.

What is HTML used for?
HTML is used to structure a web page and its content. It can also specify meta data that isn’t viewable to the end user. Content can be broken into many different elements, and using HTML you can modify and organize those elements however you see fit.

Why are we learning HTML?
We are learning HTML because we will need to design the front end or end user view which is what users will interface with to modify and/or execute the smart contracts we program.

What is an HTML tag?
An HTML tag indicated the name of the element and also where the element begins and ends.

What is the structure of an HTML tag?
The structure of an HTML tag includes an opening and closing tag encapsulated around an elements content. An HTML tag can also have several nested attributes or elements within its opening & closing tags.

What is an attribute?
An attribute contains extra information about an element that you don’t want to appear in the actual content (Viewable to the end user). This can be useful because you can later reference that element with style information and other things.

What is the anatomy of an HTML document?
The anatomy of an HTML document includes !DOCTYPE html, html></html, head></head, body></body, meta charset=“utf-8” & title></title. html></html is a root element which wraps all of the content in the entire page, head></head acts as a container to hold all the information you do not want to display as content to the end user such as keywords and page description. body></body contains all of the content that you want to display to the end users. The title></title sets the title of your page which will be displayed in the browser bar and when the user favorites your page. It is good practice to always just include !DOCTYPE html & meta charset=“utf-8”.

Hi Pete, with regards to the answer to your first question: It is important to make the distinction that HTML is not a programming language; it is a markup language.

Generally, a programming language allows you to describe some sort of process of doing something, whereas HTML is a way of adding context and structure to text.