HTML Reading Assignment

  1. HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
  2. Is used to structure a web page and its content.
  3. To be able to build a website to interact with the blockchain/ smart contract (which we’ll create in future) «to brag about our new knowledge».
  4. HTML tag is defined as a set of characters forming a «command» for a Web page. HTML tag provides the directions for the visual content on the Web.
  5. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag that frame a particular piece of code, text or other tags. The beginning tag consists of the name, optionally followed by one or more attributes, whereas the ending tag consists of the same name preceded by a forward slash ("/").
  6. HTML attribute is a modifier of HTML element type. An attribute either modifies the default functionality of an element type or provides functionality to certain element types which unable to function correctly without them.
  7. HTML document consists of nested HTML elements: tags, attributes and content.

1-HyperText Mark Language is used as framework to structure data on websites.
2-With HTML you can organize and add context and visually organize how data is presented on websites
3-We are learning HTML to provide a foundation of how websites work , so that we can build from and understand more complex language structure that incorporate blockchains and Web 3.0
4-A Tag defines where an element begins and ends
5-HTML consist of opening and closing brackets for Closing Tags you have forward after the first opening bracket
6-Attributes contain extra information about the element that you don’t want to appear in displayable website content
7-The anatomy of an HTML Documents are illustrated as follows:

• —
• —
• —
• —

  1. HTML is Hyper text Markup language
  2. HTML defines the structure of the content. It contains elements.
  3. We are using HTML to create the front end in the form of web page.
  4. Tags define the elements of the HTML Page.
  5. Opening Tag - Content - Closing tag
  6. Attribute contains extra information about the element
	○ What is HTML?
		§ HTML stands for Hyper Text Markup Language, and is a language used to format and display information.
	○ What is HTML used for?
		§ In general, HTML is used to define, format, and display information within a web browser.
	○ Why are we learning HTML?
		§ HTML is a useful front-end that helps us interact with our back-end smart contracts.
	○ What is an HTML tag?
		§ A HTML tag indicates the beginning or ending of an HTML element.
	○ What is the structure of an HTML tag?
		§ <tagname attr=""> Content </tagname>
	○ What is an attribute?
		§ Attributes contain extra information about the element that effects its behavior, but are not displayed in the content of the HTML page.
	○ What is the anatomy of an HTML document?
		§ <!DOCTYPE html>
			□ <html>
				® <head>
					◊ ...page metadata
				® </head>
				® <body>
					◊ ...page content
				® </body>
			□ <html>

What is HTML?
HTML is a markup language that is purely for structuring content.

What is HTML used for?
It is mostly used for structuring web content

Why are we learning HTML?
We are learning HTML, because it is needed to make a frontend for blockchains. It’s the simplest way to make a website frontend for data from the blockchain.

What is an HTML tag?
It marks the start and ending of an element, or where it takes effect.

What is the structure of an HTML tag?

starts the element.

ends the element. In this case a paragraph function of the content.

What is an attribute?
Attributes can contain hidden information about the element.

What is the anatomy of an HTML document?
It is the order of the tags that shows up in a HTML document, starting with<DOCTYPE! html>, , over thru .

What is HTML? a markup language that defines the structure of your content
What is HTML used for? creating static documents consisting of text and embedded images and links
Why are we learning HTML? to create a front end way for users to interact with the back end of a program
What is an HTML tag? it gives definition to the content that it contains
What is the structure of an HTML tag? the entire element is: < opening tag > content < /closing tag >
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?several elements that combine to form the entire HTML page. It includes the html element to wrap the content on the entire page, head element acts as a container for the of the stuff that isn’t shown to the viewers, body element is all the stuff the viewers will see, meta charset sets the character set to include most of human language, and title element sets the title of the page appearing in the browser tag

1 Like
  1. it is a mark up language.
  2. used to structure a web and its content.
  3. we are learning it to link a back end products to make the back end products appear on the internet.
  4. tags wrap up an element, and states where the element begins, or starts to take effect.
  5. they are consist of opening tag and closing tag.
  6. contains extra information about the element that I do not want to appear in the actual content of the element.
  7. they are consist of (historical artefact that needs to be mentioned, (the element that wraps all content on the entire page also known as root element.
element that contains a container for all the stuff you want to include on the HTML page that isnt the CONTENT. (contains all the content that you want to show web users) (allows you to write contents to appear in any type of language. sets the title of my page. Marking up text: , , Lists(which are unrdered lists
    and ordered lists
    and lastly links.

What is HTML? Hypertext mark-up language
What is HTML used for? A code used to structure the content on a webpage
Why are we learning HTML? the ability to create a webpage will help make accessing smart contracts simple for end users who are using standard webpages
What is an HTML tag? start and end to the command or content trying to be executed
What is the structure of an HTML tag? <?> = opening tag followed by "content" and closed with a forward slash
What is an attribute? attributes contain extra information that we the creators don’t want seen on the webpage
What is the anatomy of an HTML document? we start by declaring our document with then “HTML” followed by the “head” to include the title of the page/tab, then the displayed information on the pageincluded in the body and finally closed back up at the end appropriately

  1. What is HTML? HTML is HyperText Markup Language
  2. What is HTML used for? HtML is code used to structure a webpage and its content. this helps the user to create the overall layout and design of the webpage
  3. Why are we learning HTML? HtML is the beginning footsteps and kind of like a gateway into the various and different types of coding and programming and will help complement other forms of coding as skills and knowledge improves in this field.
  4. What is an HTML tag? HTML tag is the main function for formatting and personalizing the content and the way the content is presented on a webpage. This can include redirecting the user to different areas of the webpage and personalise the content in the form of changing the content to italics, make bold or put in underlines and change into different types of fonts.
  5. What is the structure of an HTML tag? HTML tags first starts with and opening tag made up of angle brackets

    at the beginning, followed normally by the content and completed with a closing tag

    the closing tag is similar to the opening tag but also includes a forward slash before the element name to show where the HTML tag ends
  6. What is an attribute? An attribute is a section in the html tag that contains extra information that isn’t visible to the viewing of the actual content. kind of like whats under the hood of a car
  7. What is the anatomy of an HTML document? This works like a set of rules in a step by step process on how the individual elements correspond with the entire page. E.g below
    • document type
    • the root element that wraps the content with entire page
    • the head element is a container of info not visible to the viewer of the webpage
    • the body element is a container of info visible to the viewer
    • how to handle your text content for future purposes
    • the title for the webpage
  • What is HTML?
    It is a markup language

  • What is HTML used for?
    Structuring the content of websites

  • Why are we learning HTML?
    To get newbies started and to allow us to build web pages that interact with the smart contracts we will be learning later on.

  • What is an HTML tag?
    Tags describe the behavior of HTML elements.

  • What is the structure of an HTML tag?
    Opening and closing tags, tag content and the element.

  • What is an attribute?
    Attributes add extra information to an element of an HTML tag.

  • What is the anatomy of an HTML document?
    The anatomy of an HTML document consists of , and tags (which must be properly closed).

1. What is HTML?

Hypertext Markup language. It is not a programming language but the way you write the structure of a web page.

2. What is HTML used for?

As posted above, HTML is used to write the structure and content of a web page. It provides things like the Headings, paragraphs, bullet lists and assigns attributes.

3. Why are we learning HTML?

We are learning HTML as it is a good entry into programming. It’s good to learn the structure of the web for which we will be interacting with in future programming projects.

4. What is an HTML tag?

An HTML tag defines a specific element within the page structure, such as header, paragraph, URL, Strong, Italics, etc…

5. What is the structure of an HTML tag?

An HTML Tag has structure has an opening an closing brackets to it, with the content between, such as:

paragraph text here

Elements that don’t wrap, such as images, won’t need the closing tag but just the closing bracket “>”

6. What is an attribute?

An Attribute provides extra information about an element, such as assigning a class or ID name that can be used later. For example declaring a class name that will later be called upon to assign styling via CSS.

7. What is the anatomy of an HTML document? (note: had to put spaces before and after the brackets or it wouldn’t display the text, since this editor allows direct entry of html)

< !DOCTYPE html > - currently this basically declares this is an html document
< html > - open tag for the html document, often called the root tag. All html goes within these tags
< head > _The header tags contain the information about the site that is not shown in the content, such as _
keywords, metadata, declare external CSS files
< meta charset=“utf-8” > - _defines the character set. utf-8 basically allows the document to handle, most written languages
< title > The title of the page, shown in the browser tab < /title >
< /head >
< body >
The body contains the site content, including paragraphs, bullet lists, images, etc…
< /body >
< /html > - closing html tag completes the document

Q1: What is HTML?
HyperText Markup Language.

Q2: What is HTML used for?
To structure a web page and its content.

Q3: Why are we learning HTML?
To create a web page.

Q4: What is an HTML tag?
Make content appear or act a certain way.

Q5: What is the structure of an HTML tag?
<[The Opening Tag] [Attribute Name]=[Attribute Value]>[The Content]</[The Closing Tag]>
Empty element
<[The Tag] [Attribute Name]=[Attribute Value]>

Q6: What is an attribute?
An extra info about how the element appears or act.

Q7: What is the anatomy of an HTML document?

<!DOCTYPE html> <!-- Links to a set of rules that the HTML page had to follow. -->
<html>          <!-- Root element wraps all the content on the entire page. -->
    <head> 
                <!-- Contains all the stuff you want to include on the HTML page that isn't the content you are showing to your page's viewers. --> 
    </head>
    <body>
                <!-- Contains all the content that you want to show to web users when they visit your page. --> 
    </body>
</html>
  1. HTML is a web-programming tool
  2. It is use for express your words, pictures, links, … on a site
  3. Learning HTML because we have to know which is the thing that Blockchain lay on.HTML is the interface for us to interact with blockchain.
  4. It is an mark that specify type of things you put on the web
  5. <* tag name*> content </tag name> is commonly used
    Sometimes we donot use the closing tag
  6. It is a string of code being used for define the appear of the content of a tag.
  7. <!DOCTYPE html>
    
  8. <html>
    
  9.   <head>
    
  10.   *content*
    
  11.   </head>
    
  12.   <body>
    
  13.     *content*
    
  14.   </body>
    
  15. </html>
  1. HTML is a Hyper text markup language.
  2. Is used to structure web page, and arrange elements on the web page.
  3. To understand how to write our own web pages(front end), that will interact with user and our blockchain solutions(back end)
  4. Tag is a basic building block of HTML, which wraps content and gives browser information on how to represent this content
  5. Openeing tag->Attributes->Content(can be nested tags)->closing tag
  6. Attributes represent additional info about tag and how to represent content on the web page.
    7.Web page consists of elements(opened and closed tags) which are nested in each other. <!Doctype html> for backward compatibility , main tag which wraps a hole page and represents page as a top level element, nested inside and contains all prerequisite info that will be used to properly structure web page(css styles, js scripts, page description and keywords), body content will be displayed on the web page.
  1. HTML stands for “Hypertext Markup Language”.

  2. It defines the structure of your website content.

  3. To be able to create an web UI for our smart contracts

  4. Tags mark and separate or enclose specific content like text, images, links etc.

  5. Name of the element wrapped in opening and closing angle brackets for the opening tag and for the closing tag 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 The attribute allows you to give the element an identifier that can be later used to target the element with style information and other things.

"
— the doctype: just a historical artefact that needs to be included for everything to work right.
— the html element: This element wraps all the content on the entire page, and is sometimes known as the root
element.
— the head element: 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 and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.
— the body element: This 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, or whatever else.
— the meta charset=“utf-8” element: this element sets the character set your document should use to UTF-8, which includes most characters from the vast majority of human 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.
— the title element. This 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/favourite it.
"

1. What is HTML?

HTML is a standardized markup language that was agreed upon that is based upon XML (Extensible Markup Language). On the browser side I used to write variables like this:

<#page_header>

Which would be picked up by my TWebObject and replace anything found in the brackets with the contents of the variable. So what is happening is that your web browser is doing a search and replace using all those tags. I first started writing HTML in windows notepad in 1995.

2. What is HTML used for?

HTML is used for marking up text, images and other user inputs as a front end to display to users on the web. It does formatting and placement primarily so that users don’t have a confusing or dull interface. Some elements provide for user inputs that then get handed off to the logic back end sometimes on the server side, but occasionally on the client side.

3. Why are we learning HTML?

We need HTML in order to handle user inputs and to format text and other variables correctly for the logic of the blockchain.

4. What is an HTML tag?

Tags surround text with angle brackets that have a variable that is interpreted as a command/procedure/function in the web browser.

5. What is the structure of an HTML tag?

Tags have an opening tag and a closing tag with content in between that is acted upon by the browser by setting it’s position, size, etc. One should always make sure that tags are properly nested and do not overlap.

6. What is an attribute?

In XML an attribute would typically be a parameter to a function on the browser side such as:

<a href=“http://www.mywebsite.com”> insert text here </a>

The attribute would be “href” in this case. After the initial marker any attributes should have at least one space after it.

7. What is the anatomy of an HTML document?

A series of tags that goes like this…

<html>
<head> </head>
<body> </body>
</html>

There are other optional tags such as doc type. The header tag is where I place my links to CSS or Javascript files. (I prefer not to write the actual logic there) The head tag will have a title tag, keywords and other optional tags.

The body tag is where you write most of the content displayed to the user.

  1. What is HTML?
    HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.

  2. What is HTML used for?
    to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.it is a markup language that defines the structure of your content.

  3. Why are we learning HTML?
    To understand the basics of programming and websites.

  4. What is an HTML tag?
    Tags that are used to open and close certain elements.

  5. What is the structure of an HTML tag?
    <> to open and </> to close. So if we are talking about the element ‘Header’ than the opening tag would be

    and the closing tag

    , the content of the header would be in between the to tags. The total would create the 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?
    A HTML document should have the following atonomy:

My test page

What is HTML?
Hypertext markup language, used to format web pages / text
What is HTML used for?
it is used to tell a web page how to treat a piece of text. Formatting it so that it gets a color or make sure it’s a clickable link or even to tell the web page it’s a picture
Why are we learning HTML?
To use it to create a frontend to interact with for example the blockchain
What is an HTML tag?
It is needed to tell the webpage how to treat a piece of text.
What is the structure of an HTML tag?
It starts with “<”, then the actual tag, for example “b” to put something in bold, followed by “>” wich is called the opening tag, followed by the content wich is the text and then the closing tag “</b>” .
What is an attribute?
it contains extra information about the element but it will not be shown in the actual content
What is the anatomy of an HTML document?
it starts with the doctype followed by a head and a body. Only the body is shown in the actual content. The head is needed to store other things for example keywords / page description

  1. What is HTML?
    HTML is a markup language which is used to structure a web page and its contents.

  2. What is HTML used for?
    It is used to define and structure a web page and its content.

  3. Why are we learning HTML?
    To learn the basics of making a webpage, and to have somewhere to use our JavaScript code. And later we will learn to code smart contracts on a web page interacting with the blockchain using for example solidity for ethereum blockchain.

  4. What is an HTML tag?
    An HTML tag is written with <> and is used to define the content of a text or image. Content inside tags together make up an element.

  5. What is the structure of an HTML tag?
    <> and </>. For a paragraph it will be

    and

  6. What is an attribute?
    An attribute is used to add extra information about the element.

  7. What is the anatomy of an HTML document?
    Basically like this (utf-8 should always be included to avoid possible language problems later on)

  1. HTML is a language allowing you to structure content on the web
  2. HTML is used for structuring websites
  3. HTML allows us to build the front end and allow users to use our back end service (smart contracts)
  4. An HTML tag is a characteristic of the language allowing us to structure element, per example opening and closing a pragraph element
  5. A paragraph tag would look like this

    The content needs to be placed within the tags
  6. An attribute may help us to qualify a content, his point is to attribute properties to our element
  7. It starts with the <doctype! >, then we have to open the tag, then the other tags such as or it also requires a character type designation : UTF-8, don’t forget to close the tags at the end ! :wink: