HTML Reading Assignment

  1. What is HTML? HTML stands for "Hypertext Markup Language. This code is used to structure a website and its contents. HTML is not to be confused with a programming language which performs logical operations rather it is a markup language which defines the structure of your content. If comparing to a biological body HTML would be as bones, the framework for the rest of the body to rest upon.
  2. What is HTML used for? At a most basic level it serves to present the most basic information on a web page. It is static, non stylistic, and simple in order. Because of this it is often the initial framework that is written of a website before its design is fleshed out in CSS and interoperability with Javascript.
  3. Why are we learning HTML? We are learning HTML so that when working with the block chain on the back end we will learn how to integrate it with the front end user presentation experienced through a website by utilizing HTML.
  4. What is an HTML tag? This is a part of the markup language which is made up of <> to open and </> to close a section of text. This is often filled with text, but can also include links, and image files.
    The combination of the opening tag <>, the closing tag </> and the content text together comprise the element.
    For example <!p>Hello World<!/p> The exclamation points would be removed for proper operation.
  5. What is the structure of an HTML tag?
    The structure is demonstrated above. <!name of the element> text, image, or link <!/name of the element>
  6. **What is an attribute?**An attribute provides extra information about an element and is identified within an elements HTML tag. The attribute name class=“color blue” the attribute value. These can be used to change the behavior of what is held within the HTML tag.
  7. What is the anatomy of an HTML document? This is a basic structure that HTML written webpages follow. Similar to order of body parts on a human body from head to feet. If one thing is out of order it is less likely to work as well or at least as efficiently.
<!DOCTYPE html> (Is used to be sure that the HTML shows properly on older web browsers)
<html> (This element is used to wrap the content on the entire page and can be referred to as the root element)
  <head>(This sections contains all the CSS variables and other information that needs to be included to influence that contained within the HTML element but not to be viewed by the viewer on the webpage)
    <meta charset="">(How to set the font of the website to allow for universal accessibility across languages)
    <title></title>( The main title as it would show on your web page as well as the text seen on the tab across the browsers open window.) 
  </head>
  <body>(This contains all the content you want your websites viewers to see.)
<h1>Text</h1>
<p>Text </p>
    <img src="" alt="test image">
  </body>
</html>

This sums up an anatomy of HTML.

  1. Hypertext markup language
  2. To make websites look as we see it
  3. to be able make our projects front end
    For
  1. Its a HyperText mark up language responsible for the structure of the web page.
  2. Used to Structure the site pages.
  3. Because its the first step to start programming since html is also a programming basics.
  4. A tag can bring an element to the page, example is the

    tag responsible for display a paragraph

  5. Open tag <> and close it </> ex:
  6. An attribute is used to mark up an element on the page.
  7. —>(
My test page )`
  1. What is HTML?
    Hypertext markup language.

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

  3. Why are we learning HTML?
    We need it to build websites and it’s an easy way to introduce programming to beginners.

  4. What is an HTML tag?
    This states where the element begins and where it ends.

  5. What is the structure of an HTML tag?
    Opening tag <> Ending tag </>

  6. What is an attribute?
    Attribute has extra information about the element.

  7. What is the anatomy of an HTML document?
    Doctype, head, title and body

  1. What is HTML?
    HTML is a specific language in web page development.
  2. What is HTML used for?
    It is used for designing/creating web pages.
  3. Why are we learning HTML?
    Mainly to see how this language behind a web site functions.
  4. What is an HTML tag?
    Tag functions as command.
  5. What is the structure of an HTML tag?
    tags structure includes <> symbols , there are opening tags <> and closing tags </>
  6. What is an atribute?
    Attribute also function as commands but are specific for the content.
  7. What is the anatomy of an HTML document?
    Anatomy of an HTML document consists of individual tags and how combined form an html
    document. Head, title and body.

1- a mark up language
2- it used to structure a web page
3. to be able to create content on a web page
4. tags are used to create elements. they organize the structure of the content
5. there is an opening tag, the content , the closing tag, can include an attribute
6. extra iinformation
7.consists of doctype html, element, the element, element, element, element.

  1. What is HTML?
    It is a markup-language
    2)What is HTML used for?
    You can structure webpages with HTML.
    3)Why are we learning HTML?
    It is a good start for use, especially for those with no programming experience.
    4)What is an HTML tag?
    An HTML tag states where an element begins and ends (opening tag / closing tag)
  2. What is the structure of an HTML tag?
    opening tag (start of the element), content, closing tab (end of the element)
  3. What is an attribute?
    Attributes are elements you can add to the element that aren’t visible with the actual content
    7)What is the anatomy of an HTML document?
    An HTML contains doctype,html or root element, head element, the character setting element , the title element of your page, and the body element.
  1. HTML is a a so-called markup language. Put simply, it can be used to define the appearance of your content,

  2. HTML is used to create static websites. It gives the website its intended structure, appearance and some basic functionality.

  3. We are learning HTML because it is used in most websites to some extent. When we later want to create a website for our smart contract, we will most likely use HTML.

  4. A tag is a parameter that wraps around content. Together with the content it builds an element. It is just like the formatting options in the Toshi Times forum.

  5. A tag has an opening tag in front of, < > and a closing tag </ > after the content we want to assign our parameter to (the part in italic would be our content). We can also use nesting, to incorporate tags within other tags.

  6. An attribute is extra information that won’t appear in the content. It gives the person who wrote the website an additional information when looking over the code, much like a footnote. Attributes can be incorporated into an opening tag.

  7. An HTML document usually begins with the doctype (.html, obviously), then is followed by the HTML element (which basically says “the html code begins/ends here”).
    Then we get to the head element, where we can write some stuff that will not appear on the page, but can appear in web searches, such as descriptions. In the head we can also specify some meta data, like the charset to support any characters that might appear in our content.
    The next part is the body which contains all of our content. Of course all tags we have opened, bust be closed in the right order.

  1. Hypertext Markup Language
  2. HTML formats the contents of information on web pages.
  3. Knowing HTML is a good foundation for web and blockchain development.
  4. An HTML tag is part of an HTML element that names/defines the element so the browser can recognize how to display it.
  5. A tag starts with an opening tag and ends with a closing tab.
  6. An attribute provides additional information to the browser for displaying it correctly.
  7. The anatomy of an HTML document contains a head area and a body area, plus some initial data info.

1.Hypertext markup language
2.Mark up language that defines the structure and content and consist of variables to be wrapped and massaged in whichever way you may want the content to appear.
3.we need to upload our content on a website for the smart contracts to be viewed
4 The structure used for creating our opening and closing our content
5.The structure is embedded in the opening and closing tags that creates the element
6.Attribute contains information that will not be displayed on the content but is there for future use cases.
7. The anatomy is the structure of the html page that need to be addressed for the page to work.

What is HTML? Is a markup language that defines the structure of your content.

What is HTML used for? It is used to make words appear a certain way or to link items that are somewhere else in the website or internet.
Why are we learning HTML? To have a better understanding of Front End Web design at a basic level that will later be able to integrate with back end smart contracts.
What is an HTML tag? Tags are indicators that wrap a particular element.
What is the structure of an HTML tag? Opening Tag < >Element</ >Closing Tag
What is an attribute? Reference Information about the element that need not be shown to the user.
What is the anatomy of an HTML document?

My test page Test Image
  1. What is HTML? A “mark up language” seems like a way to structure websites.

  2. What is HTML used for?
    building web sites

  3. Why are we learning HTML?
    <i don’t know> is it basic programming, i have no experience at all.

  4. What is an HTML tag?

  5. What is the structure of an HTML tag?

  6. What is an attribute?
    a thing you want to happen.

  7. What is the anatomy of an HTML document?
    the structure

  1. What is HTML?
    Stands for Hyper Text Markup Language, despite the name Language its not a programming language, its a series of elements enclosed or wrapped.
  2. What is HTML used for?
    Its used to give the instructions to the browser to how to display its content, pictures, audio, video, text, and so on, in a web-page, the front end, it lays out the structure of the page.
  3. Why are we learning HTML?
    To be able to structure our webpage, dapp or smart contract interface.To make the layout user friendly and appealing to the users. To have a knowledge of all basic requirements for a blockchain.
  4. What is an HTML tag?
    Gives the input and output wrap, to when start and end an Element, specifying the content displayed. Uses opening angle brackets plus element name and closing angle brackets at the beginning of the Element, and opening angle brackets, slash forward, name of element and closing angle brackets to wrap up the closing of the element.
  5. What is the structure of an HTML tag?
    It contains the opening tag, the closing tag, optionally the content, and an attribute. content</Close Tag>. In this case also known as Element.
  6. What is an attribute?
    Gives additional information, without being displayed on the screen, it consists of the attribute name and its value.
  7. What is the anatomy of an HTML document?
    Its a document that gives the structure of the entire HTML page, consisting of the doctype, and the combination of all the elements: html element, head element, the element character set, the title element and the body element.
  1. HTML - Hypertext Markup Language
  2. HTML is used for creating static web pages.
  3. We are learning HTML because we must create the web page ( front end ) to interact with the smart contracts (back end)
  4. The HTML tags are basically tags used to " mark up" texts in the web page and arrange them is a readable and understandable ways.
  5. The structure of a HTML tag consists of an - " Opening tag, contents and a closing tag." This entire structure is called the element.
  6. Attributes in HTML give extra information about the Element
  7. The anatomy of an HTML document must be structured in the following patterns-
    The page must be wrapped in the html tag where the titles, headings, paragraphs, images, links, body etc are all nested within the closing html tag.

1 HTML is a Hypertext markup language is a code that structure a web page and its content.
2 It is a markup language that defines the structure of your content in web page.
3 We learning HTML, because we want to learn how people can interact with our smart contracts.
4 A tag is what makes the browser recognize what type of content it has to show and in what way.
5 A tag starts with an opening , has usually an attribute inside and finishes with a closing
6 Attributes contain extra information about the element that you don’t want to appear in the actual content.
7 Anatomy of an HTML document is the basic form of the HTML that it needs to contain to display the needed thing in web browser. It’s type(so the browser knows what its dealing with), html tags(so the browser knows where to expect that type), head and body.(So the browser knows the specific elements and context that html file contains for display.)

  1. HTML is how the structure of a web page is created.
  2. HTML is used to instruct the browser in how to display a web page.
  3. We are learning HTML to understand the basics.
  4. An HTML tag is a formatting command.
  5. The structure of an HTML tag is an open command and a close command.
  6. An attribute is additional information that doesn’t appear on the web page.
  7. The anatomy of an HTML document = DOCTYPE, html, head, meta charset, title, and body with the content wrapped within appropriate open and close tage.
  1. HTML stands for Hypertext Markup Language.
  2. It’s used to structure our content on websites in a certain way.
  3. You should learn it so you can design your website how you want it to look.
  4. An HTML tag is something you write in <> at the beginning of some content to give it a special function.
  5. The tag starts with < > with some value inside depending on what you want to do like < p> or < a> and then after you have written the content for that tag, you close it with a / like < /p> or < /a>
  6. An attribute is extra information about the element and you put inside the opening tag.
  7. An HTML document is a series of elements with essentially two groups: a head element with other elements you don’t want to be see and then the body for the content you want to show your viewer.

1/2 HTML Ă© um acronimo para “hyper text markup language”, que significa “linguagem de marcação para hipertextos”. HTML Ă© uma linguagem de marcação com intuito de estruturar o conteĂșdo de um website, afim de que esse conteĂșdo seja apresentado visualmente e funcione da maneira desejada pelo desenvolvedor, ao ser acessado pelo usuĂĄrio.

3 Para que possamos trabalhar de uma maneira completa como desenvolvedores em blockchain Ă© necessĂĄrio trabalharmos com ferramentas de front end e nĂŁo somente backend. Isso permite que nĂłs possamos criar uma forma de acesso direto ao usuĂĄrio da blockchain.

4 Tag Ă© o elemento textual responsĂĄvel por instruir a configuração do conteĂșdo numa webpage, atravĂ©s das tags o navegador Ă© capaz de reproduzir a estrutura do website conforme o programado.

5 Tag de abertura: <p*>;
ConteĂșdo;
Tag de fechamento: </p*>.

*P Ă© apenas um exemplo que representa um elemento.

6 Atributos fornecem informaçÔes adicionais aos elementos, quando necessårio.

7 Anatomia de um documento HTML é uma estrutura ordenada padronizada de tags e elementos, essa anatomia serve como um protocolo que facilita a criação e interpretação das informaçÔes.

1- HTML is a programming language
2- HTML is used for creating a basic text webpage
3- Learning HTML to understand JAVASCRIPT
4- HTML tag is an element that opens and closes to bring words onto the webpage
5- There is an opening and closing tag, content and the elements
6- Attribute is extra information about the element that will not be shown in the context
7_ Anatomy of HTML document according to link:

My test page My
  1. it is a hypertext markup language that defines the structure of your content.
  2. basic language to create websites displaying text pictures videos
  3. to make static boring websites that work
  4. tags are used to determine the type of content in an element
  5. it makes a tag for part of the document that will change the style of the specific element
My test page My test image