HTML Reading Assignment

What is HTML?
Hypertext Markup Language - code used to structure a website. It is not programming language. It is a markup language.

What is HTML used for?
To specify the way the website will look or act.

Why are we learning HTML?
In order to build something that works. HTML is a basic element of the web development.

What is an HTML tag?
HTML tags are the items that enclose words or elements causing them to act a certain way.
They can create a hyperlink, modify the way an item looks.

What is the structure of an HTML tag?
You will have an opening tag, element or words, closing tag. (ie,…

Hello my name is Heather

What is an attribute?
An attribute will have extra info that you don’t want to appear as content.
It allows you to add additional style information.

What is the anatomy of an HTML document? - I had to add spaces in order for the tags to show correctly
< !DOCTYPE html> - arechtype that needs to be included for everything to work correctly.
< html>< /html> - wraps all of the content on the page, aka root element.
< head>< /head> - includes information not to be shown on the page to viewers such as metadata, CSS, character set declarations, etc.
< body>< /body> - Content to be shown to views fo the page.
< meta charset=“utf-8”> - used to set the characters on your page. should be included in order to avoid issues later.
< title>< /title> sets title of the page

Something I noticed when displaying HTML elements in this forum is that a space is needed between the brackets and element name to make it visible.
That is: < p >, if no space it does not show.

  1. What is HTML?
    Hyper Text Markup Language, a markup language that
    structures the content of the web page.
    It is not a programming language.

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

  3. Why are we learning HTML?
    Javascript is used within a web page and to be able to handle that HTML is also needed.

  4. What is an HTML tag?
    It wraps up each element and describes what kind it is.

  5. What is the structure of an HTML tag?
    < p > is the opening tag, “p” is the name of the element, in this case a paragraph
    ”< /p>" closing tag.

  6. What is an attribute?
    It is extra information about the element that is not shown on the web page.

  7. What is the anatomy of an HTML document?
    < !DOCTYPE html > - Old artifact, has no function any more
    < html > - Wraps up the whole page, root element
    < head > - Non content element, defines style, keywords, etc
    < meta charset=“utf-8” >
    < title > My page < /title > - Sets title of the page
    < /head >
    < body > - Content element, everything that is shown on web page
    < p > plain txt < /p >
    < /body >
    < /html >

I had to additional reading to what was assigned and created test documents in atom to really get the full understanding of HTML basics. Below are my answer to the questions that was assigned.

What is HTML?
Hypertext Markup Language to define structure for creating web pages. Elements are the base of creating html pages. Elements are represented by tags.

What is HTML used for? use to enclose, wrap different parts of content for presentation of information on the internet

Why are we learning HTML?

Blockchain is on the internet and will need HTML to communicate thru a web browser which will process the commands.

What is an HTML tag?
Tags label various content pieces such as the <headings, <paragraphs are examples.

What is the structure of an HTML tag?
Should have an opening and a closing tag.
Examples: tag tag

paragraph

What is an attribute? .
Attributes contains additional information about an element that will not display in the actual content. .

What is the anatomy of an HTML document?
defines document as html

root of page contains information about document

heading

M paragraph.

Closer

What is HTML?
Hyper Text Markup Language - The way to communicate a skeleton to a webpage.

What is HTML used for?
To build web content. It tells the browser how to display content.

Why are we learning HTML?
Because dapps need a front-end to be usable.

What is an HTML tag?

What is the structure of an HTML tag?
Opening: <>
Closing:</>

What is an attribute?
A property that can be given to an element

What is the anatomy of an HTML document?

HEAD TITLE BODY
  • What is HTML?

Hypertext Markup language. It is NOT a programming language, but a markup language. It helps to structure and present your content in web.

  • What is HTML used for?
    It is used for creating web pages and web applications that may consist various media and text.

  • Why are we learning HTML?
    At the moment, the web is used in the interaction with blockchain applications and functionalities (from Metamask extensions to exchanges, etc.). Thus, we need to have an understanding about how HTML works and fits into the blockchain paradigm.

  • What is an HTML tag?
    An HTML tag serves as a signal for invoking certain functionalities such as hyperlinking the image or text, changing the size or the front of the text, italicizing it and so on.

  • What is the structure of an HTML tag?
    It consists of certain key abbr/word/symbols (e.g.: p for paragraph), and has OPENING and CLOSING, <> and </> respectively.

  • What is an attribute?
    An attribute allows for an additional information to be added without exposing it the viewer (e.g. src -specifies an URL for an image)

  • What is the anatomy of an HTML document?
    HTML anatomy primarily consists of elements which execute different functions and correspond to different commands, but make the page one as a whole. To list some indispensable ones, the doctype, the elementthe element, etc

What is HTML?
Hyper Text Markup Language

What is HTML used for?
Structure Websites and their content

Why are we learning HTML?
In this course to be able to create a front end to interact with the block chain.

What is an HTML tag?
A code that describes how a web page is formatted

What is the structure of an HTML tag?
Open tag, closing tab, content, and element.

What is an attribute?
Attributes contain extra information about the element that doesn’t appear in the content of the web page.

What is the anatomy of an HTML document?
Individual elements combined to create a web page.

  1. HTML stands for Hypertext Markup Language and defines the content structure
  2. It is it used to create websites
  3. HTML is the language behind the front end of a Smart Contract, it is necessary to learn it to understand the bigger picture of what smart contracts are
    4.A HTML tag is required to open and close a content element, appears at the beginning and end of the content
    5.The structure is open a closed ANGLE BRACKETS with a forward slash inserted into the closing tag brackets before the name. Example: Example
    6.Attributes contain additional info about the element which you do not wish to show on the page
    7.Is a txt document containing all the elements needed to form a HTML page combined together in a structured and clear path.
  1. Mark-Up language
  2. Interface application built on top of operating system with operating system
  3. to build applications (web page)
  4. to make a line stand alone
  5. opening brackets, closing brackets
  6. extra info to style element that does not appear in content
  7. element, opening and closing tag and content
  1. What is HTML?
    Is a markup language not a programming language
  2.  What is HTML used for? 
    

It defines the structure of your content
3. Why are we learning HTML?
It’s part of the knowledge needed to be able to create a basic front end website that will communicate with the blockchain for smart contracts
4. What is an HTML tag?
Specific characters that define how the content should appear
5. What is the structure of an HTML tag?
There is a letter defining the type of the element within angle brackets. The element is within an opening and a closing tag which include a slash as well.
6. What is an attribute?
Extra information about the element that doesn’t appear in the actual content
7. What is the anatomy of an HTML document?
How the single elements should be combined together in an exact order to craft a page exactly as you want it.

1.HTML-HyperText Markup Language. It’s not a programming language; it is a markup language that defines the structure of content on the web pages
2. It is used to design web pages the way we want it to appear/ interact with viewers.
3.to provide web pages that will interact with a smart contract and provide well UI.
4.HTML tag: An HTML code that defines every structure on an HTML page, including the placement of text and images and hypertext links. It includes opening and closing tag used for opening and closing an element.
5. This consists of the
* name of the element wrapped in
* opening and closing angle brackets.
6.Attributes (may/ may not be present in every element): contain extra information about the element that you don’t want to appear in the actual content. It consists of attribute name and attribute value.
7.The sequence of elements that should appear in order to create a particular web page.It includes title headings images etc

I kinda already knew this one. I also had a bit of a hard time getting the videos to run on my Linux computer (unresolved emailed [email protected]) so I had to switch to another computer. Didn’t have email so couldn’t create account. This is a day later.

  1. A Markup language
  2. Visual stuff. Pretty static its mainly for the web.
    3.Cuz you need a UI. And many apps run on the web.
    4 `

    (simplified)’

  3. '`
  4. I think its like colors and text size. like
  5. Document tag, HTML Tag, header, tag and body tag. (I think)

Edit: my tags disappear…

What is HTML? Hypertext Markup Language
What is HTML used for? Setting the perameters for how a website appears.
Why are we learning HTML? To learn to build a website
What is an HTML tag? states where the element begins and ends
What is the structure of an HTML tag? angle brackets around the defined element to open, then angle brackets with a forward slash before the defined element to close.
What is an attribute? extra information about the element that is not visible to the user
What is the anatomy of an HTML document?

  1. Begin with just to make sure that everything runs right.
  2. Root element that wraps all content for the entire page together.
  3. contains all of the things that you want included in your page that will not be visible to the user.
  4. contains all of the content that you want the web user to see.
  5. this sets the character set that you want your document to use.
  6. this sets the title of your page that will appear in the tab bar and also identify the page when you bookmark it.

HTML stands for Hypertext Markup Language and is used to define the structure of how a website page looks. HTML is essentially the website, and a website is needed for users to interface with the functions of the blockchain.

When text or an image etc is displayed on a webpage, the way the content displays is by way of tags. So if you want to display a piece of text to be a paragraph, then you use a paragraph tag before the text of the paragraph. But how does the webpage know when something is finished being a paragraph? Well, you then have to give it an ending instruction. This is known as wrapping or enclosing. In HTML, the enclosing is by opening with the tag and then closing with another tag that is the same as the opening tag but with an added backslash to tell the page that it is the end of something. So, there is an opening tag, a closing tag, the actual content, and then altogether this is called an element.

If you want to make some part of the element display differently, say make a piece of text bold, then you need to also give that instruction within the element. To make a piece of text bold you need an added feature, or a modification applied to the original text, and this modification is called an attribute - in this case, a bold attribute. In HTML an attribute is added to the start tag.

Every HTML document includes:

  • the doctype html - just need so all is well with the world
  • a head element (root element) which contains (wraps up) all of the body of the page
  • the body (the individual elements themselves)
  • the meta chartset - means your page will display all the characters from the majority of human written languages.
  • the title element - the page title that appears in the browser tab.
• What is HTML? 
  Hyper Text Markup language.

• What is HTML used for?
  HTML is used to structure the web page and its contents.

• Why are we learning HTML?
  Most of the cases smart contracts interact with front end. learning HTML help us build and understand web pages.

• What is an HTML tag?
  HTML use elements to structure the web pages. tags used to define elements. 

• What is the structure of an HTML tag?
  HTML tag consist of the following
	○ opening
	○ closing
	○ text
	○ attributes

• What is an attribute?
  attribute consist of extra information about the element.

• What is the anatomy of an HTML document?
  anatomy of HTML includes
	○ html
		§ head
			tittle
		§ Body
			□ header 1.6
			□ paragraph
			□ Unordered lists
			□ Ordered lists 
			□ Links
  1. HTML stands for Hypertext Markup Language
  2. It is used to structure the content of websites
  3. We are learning HTML to be able to make simple websites which can interact with the blockchain
  4. A tag makes the content within the tag appear in a certain way
  5. openingtag content closingtag
  6. An attribute appears within the brackets of the opening tag and is separated with a space. Its function is to contain extra information about the element.
  7. Header - title + formatting
    Body - page content

What is HTML?
Hypertext Markup Language, a standardized system.

What is HTML used for?
Tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.

Why are we learning HTML?
You have to implement what you are programming on Internet so other can interact with your solutions.

What is an HTML tag?
A formatted command for a webpage.

What is the structure of an HTML tag?
It tells the browser that the document contain HTML in first, then different tags within head and body. A semantic structure of the webpage.

What is an attribute?
Exmple of attributes within a tag are alt, src, with, height, style, lang, title, href…

What is the anatomy of an HTML document?
In HTML5 it contains Doctype, Root element, Head element, Body element.

  1. HTML is short term of 「HyperText Markup Language」。 So It has HyperText, which means it have text which has ability to link to another place , and it have many markup tags.
    2.It is used for web browser read .It is the sturcture of a web page.
  2. Because we need a User Interface for our cust to operate smart contract . And a web page is suitble for this .
  3. HTML tag is the basic gramma of HTML language.
    5.HTML tag is always paired. for ex.

    means text between the tag is a paragraph
  4. Each HTMM tag can have attribute for provide additional information about HTML elements.
  5. HTML document have Head ,body, and footer .

What is HTML?
Hyper-text markup language
What is HTML used for?
Used to provide the coding that browsers use in order to display webpages to users
Why are we learning HTML?
We are learning it to
A. Get used to seeing code, and knowing how to read it and how it works
B Learn how to build a front end for our ICO that we will use to take over the world!
What is an HTML tag?
It is what wraps the elements
What is the structure of an HTML tag?
content
What is an attribute?
Additional info about the tag
What is the anatomy of an HTML document?
Declaration
Head
Body

  1. What is HTML?
    HyperTextMarkupLanguage is a structure that defines how a web page content is displayed and organised. It provides a common standard (language) that a web browser can interpret and understand with consistency
  2. What is HTML used for?
    Displaying web content
  3. Why are we learning HTML?
    Completeness but mainly to allow us to generate front end web pages that can be used to interact with a blockchain behind the front end.
  4. What is an HTML tag?
    A tag defines what a particular content element is, what non- displayed information the content may also hold, and other attributes particular to that content element
  5. What is the structure of an HTML tag?
    An opening tag name in brackets such as:

The content that the tag refers to then follows. The element is then concluded with a closing tag that includes a forward slash such as:

6) What is an attribute? An attribute is non-displayed information that further describes or defines a content element 7) What is the anatomy of an HTML document? All content is contained with the html tag in the form: ALL CONTENT Within the html content there is the header content which is non-displayed information specific to the page. This can contain meta data used for searching and other such tag information. This may take the form Non-displayed content Generally following the head content there is then the displayed content in the body block. This can then then contain all the active displayed information and generally takes the form All displayed content

What is HTML?
HTML is an acronym that stands for HyperText Markup Language

What is HTML used for?
HTML gives structure, layout, and design to web pages.

Why are we learning HTML?
We want to be able to design webpages so that there is a medium for people to interact with our smart contracts and dapps.

What is an HTML tag?
An HTML tag is a command or markup that you put at the beginning and end of an element. Depending on the tag it will create an effect of the text it wraps.

What is the structure of an HTML tag?
There are opening and closing tags for each element. An example would be a list tag

  • Read assignment.
  • What is an attribute?
    An attribute has extra information about an element that we don’t want to actually appear in the webpage content.

    What is the anatomy of an HTML document.
    HTML documents are made up of different element types that help to create its appearance.