HTML Reading Assignment

  1. HTML is a Hyper Text Markup Language
  2. It is used for creating a webpage in a structured way
  3. To be able to start programming with Java script
  4. to be able to define functions
  5. an opening tag and a closing tag
  6. that is extra information of an element
  7. that is the way a HTML page is structured. Always contains the tag , and the
  1. What is HTML? Hyper Text Markup Language Code
  2. What is HTML used for? used to structure web pages. Show how web page looks and reacts.
  3. Why are we learning HTML? Most block chains run on the web and we should know how the web pages work.
  4. What is an HTML tag? A HTML Tag identifies parts of the HTML page for specific items.
  5. What is the structure of an HTML tag? Opening and closing tags
  6. What is an attribute? Extra information about element that you do not want to appear in actual content.
  7. What is the anatomy of an HTML document? It wraps up the basics of individual HTML elements.
  1. HTML is a mark up language not a programming language
  2. HTML is used to structure a web page and it’s content, it determines the presentation and behaviour of your content.
  3. We are learning HTML to help us create simple web pages that allow users to interact and access the things we create using blockchain programming.
  4. An HTML tag is a control or an instruction, the information that is contained within the tags, determines the presentation of the content
  5. An HTML tab is structured as <> + </>
  6. An attribute is additional information, about the element that you do not want to show or appear as part of the actual content, attribute values are shown using quotations.
  7. The anatomy of an HTML document, is the makeup and consists of Doctype, root element, head, body, meta charset and title.

After completing this, the questions I have are:

  1. what is the ‘p’ or other character within the tag, actually called? the element as i understand it is the whole, the tag is the brackets, but what is the general word used to describe the letter, which represents the instruction, within the tags?
  2. How do you know, as a rule of thumb, which are empty elements and which are not, my initial understanding is, that it is any elements that do not manipulate text, are known as empty elements?
  3. I thought that ‘alt text’ included with images, was searchable by Google, but this is not one of the reasons provided in the reading article, is this not the case?

if any one can help with clarifying these points, it would be appreciated. Thanks

What is HTML?
Hyper Text Markup Language

What is HTML used for?
It is used to see the content of a website

Why are we learning HTML?
Because Ivan says so!

What is an HTML tag?
The thing used to make elements

What is the structure of an HTML tag?
Open brackets < and then the name of the element and then any attributes and then a closing bracket > and then any text you want to display and then a closing tag which is an open bracket <, backslash /, name of tag and finally a close bracket >.

What is an attribute?
A feature inside an element

What is the anatomy of an HTML document?
< !DOCTYPE html >
< html >
< head >
< body >
< meta charset=“utf-8” >
< title >

  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    It’s the code used for building websites and structuring its content.

  3. Why are we learning HTML?
    We learn HTML to build a front end interface that we can use to communicate and interact with the backend (the blockchain).

  4. What is an HTML tag?
    The tags determine which content will be displayed or how it will be displayed. We use the tags to create elements.

  5. What is the structure of an HTML tag?
    An HTML tag is comprised of the opening tag, which determines where the element starts; and the closing tag, which determines where the element finishes. The opening tag contains the information about the element, such as the name or an attribute.

  6. What is an attribute?
    The attributes of a tag contain information about the element we are creating inside that tag. The attribute itself is not displayed in the element, but they determine how its content is displayed.

  7. What is the anatomy of an HTML document?
    An HTML document starts with the doctype, then the element, which contains the other elements: (which contains information about the document and other elements, like the character set declaration or the ) ; and the (which contains the content we want to show to the web visitors).

What is HTML? “it is a markup language that defines the structure of your content.”
What is HTML used for? It is used to enclosed or wrap parts of a content to make it appear a certain way.
Why are we learning HTML? To be available to display our content that we create.
What is an HTML tag? The opening text enclosed in “<>” that will communicate to the markup language
What is the structure of an HTML tag? Opening and closed angle brackets with a forward slash on the closing tag. “<>” and “</>”
What is an attribute? It is a modifier of an HTML element
What is the anatomy of an HTML document? , , , , , .

  1. HTML is a markup language which allows to represent and interact with content on website.
  2. HTML used for create and structure pages.
  3. To understand how works websites and get background of simple programing.
  4. HTML tag is the command to browser, where content is defined.
  5. A HTML tag consists of two parts: an opening tag (< tag>) and a closing tag (< /tag>) and they are enclosing the content.
  6. Attribute contains extra information about the element.
  7. The anatomy of HTML document is: the document type,the html element or root element, the head element, body, meta char set, and title element.
What is HTML? Hypertext Markup Language
What is HTML used for? It is the code that is used to structure a web page and its content.
Why are we learning HTML? So that we can interact with the Dapps that we create.
What is an HTML tag? tags make content appear in a certain way.
What is the structure of an HTML tag? structure consists of an opening tag: '<?>' then 'your content' and finally a closing tag: '</?>' 
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? The opening tag, the closing tag, and the content, the combination of which comprises the element.

What is HTML?
Hypertext Markup Language.

What is HTML used for?
It’s used to structure a web page and it’s content.

Why are we learning HTML?
We are learning it to help us get an understanding of the building blocks of the internet.

What is an HTML tag?
An HTML tag describes the content of an element.

What is the structure of an HTML tag?
An HTML tag opens and closes the content of an element.

What is an attribute?
An attribute contains additional information about the element that you don’t want to appear in the content.

What is the anatomy of an HTML document?
An HTML document consist of:

(The historical artifact that we include which describes the set of HTML rules incorporated into the page) (this element wraps all of the content on the page, a.k.a. the root element) (this element contains all the stuff the you don't want the page's visitors to see) (this element contains all of the "stuff" you'd like the page's viewers to see i.e. text, pictures, images, videos, etc.) (this element allows for the character set of the document. Allowing it to handle any content with the known range of human languages. (this element allows you to set the title of the page. It's the title that shows up in your browsers favorite, when bookmarked, along with the title that appears on the browsers tab.)

HTML stands for Hypertext Markup Language. It is a markup language that defines the structure of your content.
HTML is a bunch of Elements(Opening Tag-Conten/text-Closing Tag) to Display or act Content in different ways.
2.
For Create Web_pages and Web_Applications
3.
In order to interact with our Applications(Smart_Contracts). HTML can embed Applications.
4.
It gives “Display_attributes” to the Content/Text
5.
<opening_tag>Some bla bla bla<closing_tag>
6.
“The attributes are special words used inside the opening tag to control the tag’s behavior.”
7.

some Elements

1- What is HTML?
HTML is a hypertext markup language.
2- What is HTML used for?
It allows us to give a structure to a text that can be showed as a webpage on
the Internet. As it allows us also to make a the webpage interactive with the user
3- Why are we learning HTML?
Because we need to make a webpage that can interact with the blockchain smart
contract
4- What is an HTML tag?
It is a specific word that gives the HTML element a specific task.
like a paragraf tag, an anchor tag and listing tags etc…
5- What is the structure of an HTML tag?

6-What is an attribute?
It is a specific word that can be used to give the element more information that you
do not want to be exposed on this content.

7- What is the anatomy of an HTML document?

1- What is HTML: (Hypertext Markup Language) This is the code used to structure a web page and its contents.

2- What is HTML used for: It is used to wrap the different parts of the content and allow it to appear in a defined way

3- Why are we learning HTML: We are learning HTML in order to be able to create a platform that allow the general public to use our project

4- What is an HTML tag: It’s a marker that identifies the beginning and the end of an element

5- What is the structure of an HTML tag: The structure of an HTML tag consists of an opening tag and a closing tag where the content is inserted between the two.

6- What is an attribute: An attribute is additional information about an element that we do not want to see in the current content but which allows to give an identifier to this element

7- What is the anatomy of an HTML document:
< !DOCTYPE html >
< html >
< head >
< meta charset=“utf-8” >
< title >
< /head >
< body >
< /body >
< /html >

  1. What is HTML? Hypertext markup language a markup language that defines the structure of your content.
  2. What is HTML used for? To build websites
  3. Why are we learning HTML? For a foundation to learning other programs that will run off the blockchain and so blockchain dapps can have a familiar looking user interface.
  4. What is an HTML tag? Opening tag goes at the beginning and it states where the element begins. Closing tag states where the element ends and it includes a / before the element.
  5. What is the structure of an HTML tag? Consists of the tag name surrounded by <>. These tell the what to do like paragraph, header, italic, etc
  6. What is an attribute? They contain extra information about the element that won’t appear on the webpage.
  7. What is the anatomy of an HTML document? is the root element, acts as a container for the stuff you want to include in html, contains all the content that you want shown on the website, sets the characters you will use and how to handle textual content, sets the title as it will appear in the browser tab or when bookmarking.
  1. Hypertext Markup Language

2)To build websites and structure content

3)To understand basic code, and how to put it together to have a working project

4)an element wrapped in <> to define the beginning and ending

5)< tag name inside these> telling it what to do

  1. information added about an element within the opening tag to describe

  2. opening html-tag, header and body element, closing html-tag

What is HTML?
its Hypertext Markuplanguage

What is HTML used for?
to design websites

Why are we learning HTML?
because it is a foundation to many languages and will help us understand some basic coding.

What is an HTML tag?
tags are used to define where elements begin, end, and what affect will acour.

What is the structure of an HTML tag?
opening and closing tags with < > and slahses

What is an attribute?
contains extra values that will affect the content but the actually attribute wont be in the original content.

What is the anatomy of an HTML document?
open tag, closing tag, content, and element.

What is HTML? HTML is a markup language. It defines the structure of your content.
What is HTML used for? HTML is used for showing/interacting with content on the internet with a browser.
Why are we learning HTML? We are learning HTML to so we can interact with users though an internet browser
What is an HTML tag? An HTML tag is to define the type of content.
What is the structure of an HTML tag?
_ elements_
_ _
What is an attribute? An attribute contains extra information about an element, so it can later be used to target with style lements or other things.
What is the anatomy of an HTML document? that wraps the content of the page.
_ This describes the content of the page without showing it to the user. It is used for metadata so the page can be found with a search engine._
_ This contais all the content of the page. Images, text, videos ed._
_ This sets the character set of the webpage. the utf-8 character set includes most written language._
_ This sets the title of the page. It wil appear in the browser tab when it is loaded._

  1. HTML is a markup language which structures a webpage.

  2. It is used to direct the way content is wished to be displayed on a website.

  3. We are learning HTML to dip a toe and test the waters of programming. HTML reading is fundamental and programming bootcamp 101.

  4. Tag is a command for starting and/or closing an element. Tag defines the element and the element defines the characteristics of content it encloses.

  5. Tag is is a letter or number of letters(/numbers) enclosed in angular brackets. e.g.

    Structure of a closing tag is different than a opening tab only by a forward slash before the opening letters enclosed in angular brackets. e.g.

  6. Attribute contains more information about the element. It has two sub parts, attribute name and attribute value.

ANATOMY OF AN HTML DOCUMENT

HTML Document has the following parts in the given order

  1. Title : The text shown in the webpage tab
  2. Head : contains all the contain in the docs which is not to be shown to the user
  3. Body : All the contents of the webpage

It can have various element

click for more info mno

         < img scr = "desktop/prs.jpg" alt = "xyz" >

Hyper Text Marked Language, not to program but to structure texts etc.

To Structure and Webpages Content

To display Web pages and connect with Apps /Blockchains

Tag is a command

<…><…/> wraps up an text or picture etc. and give it a position or change parameters as size and color

extra information about the element to target it later

Typical Layout parts like Title, Header etc.

1.What is HTML?
Hypertext markup language

  1. What is HTML used for?
    To structure the content of a web page

  2. Why are we learning HTML?
    To connect the front-end website with the underlying applications.

  3. What is an HTML tag?
    It defines the start and end of a piece of content. It also gives the order what structure it should be. This way it is readable for a computer.

  4. What is the structure of an HTML tag?
    The language in the tags that tells how the text appears or acts on the website.

  5. What is an attribute?
    An attribute is an identifier which is not shown on the website but can be used to efficiently apply style information and other things later on.

  6. What is the anatomy of an HTML document?

< !DOCTYPE html >
this lets the computer know the following is a html document

< html > opening tag
< head > opening tag
< title > test< /title > title is displayed in header
< head > closing tag
< body > opening tag
< p > paragraphs < /p >
</ body > closing tag
< /html > closing tag

1=Hypertext markup language
2=html is used in most internet pages and it is the language it uses to communicate with the computer.
3=There are many advantages to learning html, if we go on to need to program a web page it will save having to employ somebody else to do it. It is also one of the easier ones i have been told and is easier to start with.
4=A tag is something that goes before are after the element to tell the computer what to do with it.
5=
6=An attribute is like the variable part and a value can be added to an attribute. this is inside the tag
7=The anatomy is the lay out or the format it must be put in for it to run correctly.