HTML Reading Assignment

  1. HTML stands for HyperText Markup Language, an it is a standard for browsers do display content of web pages in a structured way.
  2. HTML is used to construct the basic structure and content of a web page.
  3. Anything in the web, from common software to blockchain applications will be delivered through a structured content, a “front-end” view of whats happening. HTML is one way to do so, by showing result in a web page.
  4. An HTML tag is what defines an HTML element, enclosing it’s content and defining a behavior to it.
  5. Opening angle bracket, the name of the tag and them the closing angle bracket. e.g. <p>
  6. An attribute for an HTML element an additional information that can be used by one of it’s behaviors. e.g. and image element (<img>) can use the “src” attribute to define where to look for the image that will be displayed.
  7. A basic HTML document requires:
  • DOCTYPE definition
  • html element
  • head and body elements inside of the html element

What is HTML? → A markup language that defines the structure of your content. “Hypertext Markup Language”
What is HTML used for? → Used to structure a web page and its content.
Why are we learning HTML? → The ability to code using HTML is essential for any web professional and is a good starting point to learn.
What is an HTML tag? → Parts of the element that define the type of element, as well as its beginning and end (opening and closing).
What is the structure of an HTML tag? → Opening, content, closing.
What is an attribute? → Contain extra info about the element that you don’t want to appear in the actual content.
What is the anatomy of an HTML document? → Opening tag, content, closing tag.

  1. HTML stands for (Hypertext Markup Language).
  2. HTML is not a programming language; it is a markup language that defines the structure of your content.
  3. We are learning HTML to help with knowing how the front end works and how we can tie it to the back end on blockchain.
  4. Unlike a scripting or programming language that uses scripts to perform functions, a markup language uses
    HTML Tags to identify content.
  5. An HTML tag consist of an opening tag, the content and the closing tag.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. An HTML document consist of a declaration of the document with <!DOCTYPE html>. Then you have The opening and closing html tags for the entire doc. Within the html element you first have your opening and closing head tags, which contain your opening and closing title tags and other info you don’t want in the content of your page. Below the head tag will be your opening and closing body tags with all the content that will be displayed on the page. Like header tags(<h1></h1>), paragraph tags (<p></p>) and image tags, which are self closing tags (<img src=“location of image”>).

HTML Reading Assignment

  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? structure a web page and its contents
  3. Why are we learning HTML? It is the core language and the first step to understanding how to create content for the web
  4. What is an HTML tag? Where the elements begin/end
  5. What is the structure of an HTML tag? Opening - content - closing
  6. What is an attribute? Additional information about an element that is embedded in the tag, but does not appear in the actual content
    What is the anatomy of an HTML document? A means to wrap website code using tags such as (starting tag), (subsections out website content), (inner content)
  1. What is HTML? It is the hypertext markup language, which is used to orgnanize and display content on a website for the front end.
  2. What is HTML used for? It is used to create containers for content, as well as describe page content and make it ready for search engines.
  3. Why are we learning HTML? to create a basic structure of a website
  4. What is an HTML tag? it is a way to code/insert an element into a page such as the

    paragraph tags
  5. What is the structure of an HTML tag? opening and closing angle brackets.
  6. What is an attribute? it is some additional information about the element such as emphasizing text in bold,
  7. What is the anatomy of an HTML document?
  1. What is HTML?
    Hypertext Markup Language.

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

  3. Why are we learning HTML?
    Imagine it’s the first layer of the front-end part of programming. The first step to building a website. A site you will eventually add “layers” to (like javascript,…) to make it communitcate with the blockchain.

  4. What is an HTML tag?
    An HTML tag the beginning or ending of an element.

  5. What is the structure of an HTML tag?
    Angle brackets with the name of the element to open. To close it’s the same but with a forward slash infront of the name. i.e. <html> to open or </html> to close.

  6. What is an attribute?
    An attribute is extra information about an element. It’s not part of the content but it does define it. It consists out of a name and a value. i.e. <font color=”red”> content </font>. Here font is the element, color the attribute name and red the attribute value.

  7. What is the anatomy of an HTML document?
    <html> Open the page
    <head> Stuff within the page that it not viewable content for the visitor.
    <title> Open the title. Gives the page a title on the browser(tab).
    </title> Closes the title
    <meta charset=”utf-8”> Sets the page to utf-8 character set. Do it to avoid problems later on.

    </head> Closes the head
    <body> Stuff within the page that is viewable content for the visitor.
    </body> Closes the body
    </html> Closes the page

  1. Hyper Text Markup language
  2. The formatting language for content of a web page
  3. Web pages serve as the front of all the programming efforts. We need to know how to make a webpage.
  4. It’s the specific formatting instructions for the content.
  5. Every tag start or opening tag and every tag at the end of the piece or closing tag of content has . The content resides in between the tags.
  6. It’s the additional or extra information for instructions within a HTML tag.
  7. Each page has <!doctype html>, then define open and close , the open and close , open and close
    • What is HTML?
      Hypertext Markup Language that defines the structure of your content.
    • What is HTML used for?
      Code used to structure a web page and its content.
    • Why are we learning HTML?
      By learning HTML, we will be able to build a simple website that can interact with smart contracts on the backend. This will give users a user-friendly way to interact with blockchain by using something that they are familiar with such as websites.
    • What is an HTML tag?
      An HTML tags are brackets within an element that are used to make a word or image hyperlink to somewhere else. Also tags can italicize words and make fonts bigger or smaller.
    • What is the structure of an HTML tag?
      The structure of a paragraph element is the opening tag

      closing tag

      .
    • What is an attribute?
      Attributes contain additional information about the element that you don’t want to appear in the actual content that sits in between the opening and closing tags.
    • What is the anatomy of an HTML document?
    My test page “My

My Answer to this First Reading Assignment

HTML is a language that allows for the creation and management of websites. It stands for Hypertext Markup Language. HTML when paired with CSS (Cascading Style Sheets) is useful to learn in order to create your own website or manage the website of others.

An HTML tag is essentially a bracketed function that allows the content within the tags to be modified in a certain way. Each HTML tag has an opening and closing tag. The actual tag consists of two sideways carrots that have the function in side of them. The only difference between an opening and closing tag is that the closing tag has a forward slash before the actual function within the carrots. These tags can contain attributes that are used to provide information about the content without having it appear on the website.

The anatomy of the HTML document varies depending on the user. There are however a few essential tags that will be found in any HTML document. The DOCTYPE! tag at the top will usually start things off. Then there will be an HTML tag that will have everything within it. After that you have a header tag and then a title tag.At this point you can have multiple headlines and/or paragraphs with different features.

1. What is HTML?
	a. HTML is a markup language that defines the structure of my content. It consists of a series of elements which are used to enclose, or wrap, different parts of a pages content to make it a appear, or act a certain way.
2. What is HTML used for?
	a. HTML is used to design a website, and dictate how it looks and behaves.
3. Why are we learning HTML?
	a. We are learning HTML as a basis for website building.
4. What is an HTML tag?
	a. HTML tags are the markup tags described in 1. They are codes to give the web browser instructions on how to display the text.
5. What is the structure of an HTML tag?
	a. An opening and closing tag.
6. What is an attribute?
	a. 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. <!DOCTYPE html>
	b. <html></html>
	c. <head></head>
	d. <body></body>
	e. <meta charset="utf-8">
	f. <title></title>
  1. Hyper-text mark-up language. The protocol or set of rules everyone depends on today to create webpages
  2. Creating webpages. Webpages are written in this language
  3. As an introduction into Javascript. I assume it will be necessary to learn HTML first. Javascript is created on top of the browser and OS
  4. The HTML tag tells the html script editor where the code begins and ends and where to place it on the web page.
  5. The structure of an HTML tag consists of the html, head, and body tags, and other elements found within these tags
  6. Attributes are found inside an element. An element contains the opening and closing tags and the content within them. Attributes contain additional information about the element that does not show up in the content.
  7. The Doctype HTML which tells the browser which set of rules to use The HMTL element that wraps the content of code that creates the webpage. The head element which contains all the information which contains code that is not necessarilly shown to the viewer of the webpage. Examples are websearch results, CSS, characters, set declaratons, etc. The body element which contain the content shown to the viewer made up of text, images, links, etc. Meta charset=“utf-8” which contains most of the characters that make up the known laguages of the world. And at last, the title element that shows the info that shows up in the browser tab and bookmark tab.
  1. HTML is a mark up language, not a programming language.
  2. It is used to structure a web page and its associated content (such as images, text, tables etc)
  3. To gain the tools necessary to build the front end of a dAPP so users can interact with it directly.
  4. a HTML tag is something that allows us to create an element.
  5. we need an opening tag enclosed in

    brackets and closing tag enclosed like so …

    . example shown here is a paragraph tag. With the tag is where we place the content. If the above html code (element) where to be placed in a browser it would read as “brackets and closing tag enclosed like so …”
  6. an attribute is provides extra information relating to an element. this attribute is separate from the content itself and is not shown. an attribute is given a name and a value.
  7. a HTML document has several parts to make it function. the following tags are required:
Content here Content here

What is HTML?
HTML Is a set of instructions that turns a normal text document into a webpage
What is HTML used for?
HTML is a set of instructions for each feature of a webpage. These instructions provide the opening and closing instructions for each element.
Why are we learning HTML?
This is the beginning to learn coding. HTML is used to construct for web pages. Therefore it is essential to learn this skill.
What is an HTML tag?
The tag gives special additional instructions to a section of the element. It also must have an opening and the closing sign.
What is the structure of an HTML tag?
A HTML tag must have an opening and closing symbol.
What is an attribute?
Can attribute this special feature or emphasis
What is the anatomy of an HTML document?
Historically the document type is first. The next instruction is the title. Then the body. This contains the whole webpage. At the end of the body text symbol is added to close the entire page

  1. What is HTML?
    HTML is a markup language that defines the structure of the content on a webpage.
  2. What is HTML used for?
    It is used to enclose, or wrap, different parts of the content on a web page, to make it appear a certain way, or act a certain way.
  3. Why are we learning HTML?
    In order to be able to provide front end user experience to the smart contract (dApp) that we had previously developed.
  4. What is an HTML tag?
    HTML tag is used for creating an element.
  5. What is the structure of an HTML tag?
    The name of the element, wrapped in opening and closing angle brackets.
  6. What is an attribute?
    Attribute is a tag that contains 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) !DOCTYPE - acts as a link to the set of rules the HTML page has to follow
    b) element - element that wraps the content of the entire page
    c) element - container for all the stuff that we do not want the public to see. Used also for indexing by search engines such as Google.
    d) element - this contains all the content on the web page visible to the viewer
    e) meta charset - sets the character set to UTF-8
    f) element - sets the title of the page, which appears in the browser tab when the page is loaded.

HTML stands for Hyper text mark up language. It is used to structure a web page and its content.
We are learning HTML as it is the foundation in which all other information is built upon and structured correctly to be displayed and executed on a web page.
The HTML tags are used to define and instruct how information is to be displayed or referenced for easy identification within an element.
The structure of an HTML tag are the opening tag, closing tag and content contained.
Attribute contain additional information contained within an element.
The anatomy of an HTML document are elements consisting of commands and functions utilized to communicate information via text, images or other mediums on a web page.

  1. meta language to define a web page
  2. making web pages
  3. web-page makes the user interface to code in the server back end
  4. defining element structures within a web page
  5. ,text etc … / marks end of
  6. some extra information about the defined structure
  7. common defined tag-structure, which starts with DOCTYPE declaration, the root element then Head Element, … Body Element etc

What is HTML?
Its a Markup language used to define the structure of a document, more specifically a web page document.

What is HTML used for?
It’s used to create web pages, defining their structure and combined with css and javascript, their appearence and behaviour.

Why are we learning HTML?
To be able to create some nice and easy interfaces for interacting with smart contracts.

What is an HTML tag?
a Tag is the basic element of HTML it define a specific section of an html document.

What is the structure of an HTML tag?
the Tag is enclosed in angular brackets and contains the name of the tag, may contains some attributes and may have a content between the opening and the corresponding closing tag.
The content could also be composed by other tags.

What is an attribute?
an attribute is as it’s named an attribute or a property of a Tag. It defines better the tag.

What is the anatomy of an HTML document?
it requires:

  • a doctype to define the set of rules that the HTML page had to follow to be considered good HTML
  • an HTML tag as a root element for the document
  • an HEAD tag to include all the header information for the page like scripts, css, meta, title
  • a BODY tag to include the content of the html page
  1. What is HTML?
    Acronim for: Hiper Text Markup Language
  2. What is HTML used for?
    It’s used to create web pages
  3. Why are we learning HTML?
    As a frontend for smart contracts
  4. What is an HTML tag?
    The way to define the layout of a wed page
  5. What is the structure of an HTML tag?
    Open tag, tag contens, close tag. Ex: <-b>Bold text <-b>
  6. What is an attribute?
    Properties a tag can have like text font and size
  7. What is the anatomy of an HTML document?
    It begins with an header tag, body tag and ends with a footer tag
  1. HTML is Hyper Text Markup Language.

  2. HTML is used to give structure to a web page and it’s content.

  3. We are learning HTML because it is the front-end layer that gives structure and clarity to everything on the web and anything we’d like to present visually, whether through smart contracts, images, text, sound, etc.

  4. An HTML tag wraps around the content and gives specific properties such as text as paragraph, hyperlink, lists, images, etc.

  5. The structure of an HTML tag contains the following: opening tag, content, closing tag.

  6. An attribute contains information in the tag that you don’t want shown in the content.

  7. The anatomy of an HTML document contains the following: Doctype, HTML element, head element, body element, character set, title element

What is HTML?

HTML it stand’s for Hypertext Markup Language and is a markup language

What is HTML used for? 

HTML it is used for structuring a web page and it’s content’s

Why are we learning HTML?

We have to learn it becaso is necessary to understand what is a “web page” and how is made, if we will build something that will be used on it. If we don’t know haw is build, and their components we will not bee able to make forward connection with our eventual application that we will build. :thinking:

What is an HTML tag? 

Is the moust important component of an element, it defines the type of the element, it sits alwais at begining ad at the end of an element.

What is the structure of an HTML tag? 

Conteins one opening and one closing angle brackets. inside the brackets must be always the name of the element.

What is an attribute?

Is another component of a tag, containing extra information about the element.

What is the anatomy of an HTML document?


< html >
** < head >**
** < meta charset=“utf-8” >**
** < title>**
** < /head >**
** < body >**
** < p >< /p >**
** < /body >**
< /html >

I hope is OK