HTML Reading Assignment

  1. Hypertext Markup Language
  2. To display text, images and other content on a browser.
    Also to front end applications as a secondary layer of a system
  3. To manage the front end for our d/apps.
  4. Defining the affected text with an effect with brackets that open/close such as

    …paragraph…

  5. Opening and closing brackets with the TAG name in the middle. the closing TAG should have a backlash before the name of the TAG
  6. An attribute is an identifier or reference to a value that is hidden from the web view. They can be later tagged and used for other purposes that I still have no idea. Ill keep on learning.
  7. The anatomy would start with the historical reference that is a HTML document
    Then we would have the HTML part diveded into 2 parts: the containing info for correctly running the page and the that contains all the text, images, links and other coding modules for the web user to view/use

[email protected]

1.Hyper Text Markup language
2.Web pages and their content its basically like the foundation of the internet
3. We are learning html because we need it to put our info on the internet
4.The HTML tag tells the browser what kinda classiification the file to display.
5. “<”"> usually gets the party started and before you end it you have to </""> the last one has a backslash inserted into it so it signfies its the last one
6. An attribute is some addtional property reguarding the content
7.there shoul be a head element: the head contains attributes, and heads
The body element:the body contains the main parts of the html text

1. What is HTML?
HTML stands for “Hypertext Markup Language”. It is a markup language which defines the structure of the content of a web page.

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

3. Why are we learning HTML?
We are learning the basics of web development so that we can build an application which will interact with our smart contract. The website is the front end, which interacts with the blockchain at the back end.

4. What is an HTML tag?
HTML consists of a series of elements which are enclosed by “tags”. The type of tag defines the appearance, structure and function of the element.

5. What is the structure of an HTML tag?
The structure of a tag consists of the opening tag, content and closing tag. The opening tag is wrapped in opening and closing angle brackets, and defines where the element begins or starts to take effect. The closing tag is the same as the opening tag, except it includes a forward slash before the element name. It defines where the element ends. The content appears between the opening and closing tags. Elements can be nested within one another.

6. What is an attribute?
An attribute contains extra information about the element, which does not appear in the actual content. For example, the “class” attribute can be used to define multiple elements with a common identifier, which can be used later to apply style information etc.

7. What is the anatomy of an HTML document?
Screenshot%20from%202018-06-04%2016-07-53

The html element wraps all the content on the webpage. The head element acts as the container for everything you want to include on the page that isn’t the content shown to the viewers. This includes things like keywords and page description etc. The body element contains all the content visible to viewers of your page (text, images, videos, games etc.).

2 Likes
  • hypert Text Mark up Language
  • protocol use to properly display what you want to show in the website
  • we need to connect smart contracts to our website app
  • what we use to create an elemnet <>
  • contain the extra information that we need but dont want to appear in the web site
  • opening tag content and closing tag that = element
  1. HTML is a markup language used to structure a web page and its content.
  2. HTML is used for displaying text and images in web pages.
  3. Knowledge on HTML is needed for web development.
  4. A tag is used to enclose and define a content.
  5. Opening , Content, closing tag
  6. An attribute contains extra information about an element
  7. !DOCTYPE html<>“start”
    head<>
    title<>Page title goes here</>title
    head</>
    body
    </>end HTML
  1. HTML stands for HyperText Markup Language. It is rather a markup language than a programming language.
  2. It is used to structure a web page and its content.
  3. Because we need a manner to communicate at the front end side of our application to talk to the back end side of our application. We will communicate via a webpage, structured with the help of HTML.
  4. Tags are parts of a HTML element. They enclose the content we want to be displayed on the webpage. There are opening and closing tags. They both contain the name of the element. They are wrapped in opening and closing brackets. The closing tag also contains a forward slash before the name of the element.
  5. An attribute contains extra information about the element that you don’t want to appear in the actual content.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>

<!DOCTYPE html> – had a function in the early days of html, now merely just needs to be included for everything to work right
<html></html> – this element wraps all the content on the entire page
<head> </head> – this element acts as a container for all the things you want to include on the HTML page that isn’t the content you are showing to your page’s viewers
<body></body> – this contains all the content that you want to show to web users when they visit your page.
<meta charset="utf-8"> – 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.
<title></title> — this sets the title of your page, which is the title that appears in the browser tab the page is loaded in.

What is HTML?
HyperText Markup Language Html is a markup language that consists of a series of elements which define the structure of your content.

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

Why are we learning HTML?
We are learning HTML so that we can create a navigable web interface for different blockchain

What is an HTML tag?
An HTML tag is an angle bracket “<” element used to enclose content, used to hyperlink a word or image to somewhere else

What is the structure of an HTML tag?
Tags are placed around content “”.
There is an opening tag “< example >”and closing tag “</ example >” and they are placed at the beginning and end of an element

What is an attribute?
An attribute is an element that contains extra information about the content, but that needs to remain invisible on the web page itself

What is the anatomy of an HTML document?
Begins with < !DOCTYPE html >
then < html >
then the head elements (actions on the page) within < head > </ head > tags
then body elements (appearance of the page) within the < body > </ body > tags,
then </ html > to close

(extra spaces added before and after element tags so that it will display properly in this dialogue box)

  1. What is HTML? Hypertext Markup Language

  2. What is HTML used for? Display/layout webpage and content

  3. Why are we learning HTML? Connect blockchain to smart contracts

  4. What is an HTML tag? Basic building block of a website for Browser recognition and order of content to display (Open/Close)

  5. What is the structure of an HTML tag? “Opening Tag” “Closing Tag” You can include information within the Tags (i.e. Title, Body, Header, Body) and each must use an open/close.

  6. What is an attribute? The information to be included within the tag (See i.e. in question #6) Attributes are always included in the opening tag.

  7. What is the anatomy of an HTML document? It has a beginning, middle and an end made up of tags/attributes.

1. What is HTML?

It is a mark-up language that is used to lay out the structure of a web page and fill that structure with content.

2. What is HTML used for?

It is used to create webpages on the Internet (specifically, on the “World-Wide Web” part of the Internet). It can be used to tell the browser how to display different elements of a webpage, but I personally think that it should be used mostly to describe the structure of a document in terms of its elements and some very basic appearance and behavior, while leaving more nuanced appearance of the elements to CSS and more advanced behaviour of the elements to JavaScript.

3. Why are we learning HTML?

To create front end that will act as an interface between our smart contracts and their human users.

4. What is an HTML tag?

It is a thing that wraps the content of an element between the opening tag and the closing tag. Sometimes an element is empty (i.e. doesn’t have any content). Such elements don’t have closing tags.

5. What is the structure of an HTML tag?

For an opening tag it is the following: an opening angle bracket, name of the element, some attributes – optional or not – with their respective values, and a closing angle bracket. For a closing tag it is the following: an opening angle bracket, a forward slash, name of the element, and a closing angle bracket.

6. What is an attribute?

It is a thing that gives an element some extra information that might be optional (like alternative text for an image) or mandatory (like name of the image file or destination of a hyperlink).

7. What is the anatomy of an HTML document?

The document type definition (the “doctype”), the root element (<html>), within which we have the head element and the body element. The head element has all the “meta” stuff that is NOT the content of the page. For example, the head element can include information about what set of character the document uses (only Latin characters or all Unicode characters, for example) and what is the title of the webpage. The body element has the structure of the page and its content.

1 Like
  1. Hypertext Markup Language
  2. HTML is used for structuring a web page
  3. We are learning HTML because we want a web page that works with Blockchain
  4. The HTML tag is a tag that makes a word or image bigger/smaller or different, the word could be written with a different font and so on
  5. The structure of HTML tag is the opening tag, the closing tag, the content( that this 3 combined are named the element)
  6. An attribute is a thing that elements can have which does contain extra information about the element that you don’t want to appear in the actual content
  7. Is the document that combines all the elements together cause they are not useful on their own

What is HTML?
“HyperText Markup Language,” which is used to structure a web page and its content.

What is HTML used for?
It is used to structure a web page and its content, so that it appears in a predictable manner to the audience.

Why are we learning HTML?
It is the primary web tool to interface with an audience.

What is an HTML tag?
It is a marker or a set of markers used to define an Element in the web page.

What is the structure of an HTML tag?
The tag is enclosed in angle brackets and there are generally both an opening and closing tag.
Example:

What is an attribute?
An Attribute can contain extra information about an Element and does not appear on the displayed content.

What is the anatomy of an HTML document?

My test page My test image

What is HTML?
HTML stands for Hypertext Markup Language

What is HTML used for?
HTML is used as the structuring language for creating a webpage

Why are we learning HTML?
In order to interact with the blockchain on a visible level html can be used to allow outputs to be seen

What is an HTML tag?
A HTML tag in an element of the language which carried out a a certain function, for example to create a new line in html you use the tag

What is the structure of an HTML tag?
A html tag must have an opening and closing corresponding tag, unless the tage is ended with the /> characters as in the
example

What is an attribute?
An attribute is extra information that can be added to a element that is not seen inthe actual content. An atribute can be used to call CSS and javascript code.

What is the anatomy of an HTML document?
A html page would consist of the Doctype, then html element encapsulators which would have within it the Head element and body element

Within the Head element you would find meta data such as the title, description and keywords. (although description and keywords are not commonly used these days). Also the Head element would have the charset and sometimes country meta data which tells browsers which language set to use.

  1. It is a markup language for define the structure of a Web Page.
  2. It is used for define the structure of a Web Page.
  3. Because we want to implement a friendly user interface to our smart contracts.
  4. Component used to select an HTML element.
  5. <name attributes>content</name>.
  6. Parameters which can modify the behavior or help to identify an element.
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Title</title>
  </head>
  <body>
    <p>Content</p>
  </body>
</html>
1 Like
  1. Hypertext Mark up Language
  2. With HTML you define how your content is structured/ displayed in a web environment.
  3. Blockchain functionality is made available in a web environment. We can use HTML to accomplish that.
  4. A tag is a means of adding characteristics to your content; to display it in bold characters, to indicate it’s a header, to determine what the make up of the element should be, etc.
  5. The characteristic is put in between angeled brackets <…> and closed by putting the characteristic in between the same angeled brackets BUT with a forward slash in front of the characteristic </…>
  6. An attribute is extra information about an element that is not supposed to be displayed in the content itself. It consists of a name and a value.
  7. Between and the content is defined by means of a set of elements all defined in a similar way as and . It generally consists of a header and a body. It contain specific make up for all the elements, images, lists, etc. It is essential the elements are closed in te same order as they were opened.

Thank you for the info on the atom-html-preview package!

1 Like
  1. HTML stands for hypertext markup language.

  2. HTML is a markup language that is used to structure webpages. HTML is often described as being the skeleton of a webpage.

  3. We are learning HTML because it makes up the very backbone of the websites we will be constructing.

  4. a HTML tag, opened with and ending with , is used for enclosing content that will be manipulated, depending on the properties of the element.

  5. The structure of an HTML tag consists of angle brackets surrounding an element name. a closing HTML tag will have a a forward slash in-front of the element name.

  6. An attribute is used for tagging elements. The tagged elements could be made unique or different by modifying the attribute through css or javascript.

  7. <!doctype html> included for every html page; needed for everything to work correctly. all elements of a webpage are put into . Inside the , important information is put that doesn’t get shown on the webpage itself. is where all the webpage content used by visitors will appear. sets the character set of the website to the universally accepted one. contains the tab information for your webpage, and for adding bookmark descriptions as well.

  1. HTML is the language in which web pages are written. By marking up text it defines the structure of content and the way it looks. It does this by using elements which are created by tags.

  2. HTML is used for creating and displaying web pages. Web browsers understand HTML code and turn that into text and graphics and so forth. The HTML code is universal and independent of any type of commercial branding.

  3. We are learning HTML because the internet works through web pages. They are the containers in which code is to be distributed. Having a basic knowledge of HTML helps us understand why other code that depend on it works the way it does.

  4. An HTML tag is used to create an element. The element is between an opening and a closing tag. Since a website consists of a series of elements, tags tell the browser were these elements are used so the browser knows how to behave.

  5. The structure of a tag is a word between brackets < word >. Most elements need a opening tag which is just the word and a closing tag which is the word preceded by a forward slash.

  6. Attributes add value to elements, telling them to behave a certain way.

  7. An HTML document usually starts with defining the doctype, followed by the HTML, HEAD and BODY elements.

<!DOCTYPE html>
< HTML>
< HEAD … < /HEAD >
< BODY … < /BODY >
< /HTML>

you are so welcome @bon! glad that I could help!

1: What is HTML? It is a mark up language that defines content. A series of elements is used to enclose or wrap your content to make it appear how you want it, to the reader.

2: What is HTML used for? It is used for website creation. It’s a basic language used to arrange content to be displayed when people access your website online.

3: Why are we learning HTML? To be able to build a basic website; we need this as a building block to coding.

4: What is an HTML tag? It gives a specific instruction to how a word, or perhaps you intend a paragraph beginning and end. It wraps the content in instruction.

5: What is the structure of HTML tag? opening tag, content, closing tag. For example:

whatever I wanted to say

6: What is an attribute? It contains extra info about the element that will not appear in the actual content when viewed online.

7: What is the anatomy of an HTML document?
*Doctype: back when HTML was created, it had specific uses that aren’t cared about today; however it needs to be included for HTML to function properly.
*HTML element: wraps content
*Head element: contains things to include but not viewable to people reading the web page.
*Body element: contains ALL content viewable to the web page reader.
*Meta Charset element: sets the characters from all human written languages
*Title element: how the title appears in the web browser and bookmarks.

  1. HTML is the instruction sheet for how the structure of a website should be built and appear. It contains “elements” of information which make things look and work a certain way on the website.
  2. HTML is used to build the structure and content of a website. It is a way to communicate with the web browser to show the page a certain way.
  3. We are learning HTML so we can build a way to interact with our smart contracts.
  4. An HTML tag is the beginning and ending notifier of an element.
  5. The structure is as so, “<(tag type)></(tag type)>”.
  6. Attributes hold more information about whichever element it is placed in.
  7. The anatomy goes, , , , , , , <body, , , .