HTML Reading Assignment

  1. What is HTML?
    It’s a code/markup language.

2.What is HTML used for?
It’s used for structuring a webpage and its content.

  1. Why are we learning HTML?
    It can be seen as a foundation for web development, with this knowledge you can build your own webpage and put your blockchain business out there for example.

  2. What is an HTML tag?
    A tag is the start and end of an element, you can say that it “activates” the content.

  3. What is the structure of an HTML tag?
    The opening tag, information you want to display and then closing tag.

  4. What is an attribute?
    An attribute is additional characteristics you can give the content, for example size or style.

  5. What is the anatomy of an HTML document?
    < !DOCTYPE html >
    < html >` element
    < head > element
    < meta charset="…"> element
    < title> element,
    < body > element

Hypertext Markup Language.
It is the code used for the structure of a web page.
A tag opens and closes content.
Opening tag, content closing tag.
Attributes contain extra information about the element that you don’t want to appear in the actual content.
Wraps up the basics of HTML.

  1. Hypertext markup language
  2. Code used to structure a web page and its content
  3. For web development
  4. Consists of the name of the element.
  5. Name of the element enclosed in triangular brackets at the beginning of the element and at the end. The closing one preceded by a forward slash
  6. Contains extra information about the element that you don’t want to appear in the actual content.
  7. Combination of different elements
1. What is HTML?

HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. It is not a programming language, but a markup language.
2. What is HTML used for?
It is used to define a web page’s content structure, enabling to set keywords and a page description that would appear in a search engine result, and overall make content appear or act in a given way.
3. Why are we learning HTML?
HTML is one of the founding technologies of the web and any given web page uses it. It is a necessary foundational knowledge.
4. What is an HTML tag?
An HTML tag is the name of the element we want to set to have our content appear or act in a given way. There are several HTML tags, such as the paragraph tag,

or the title tag, .
5. What is the structure of an HTML tag?
It consists of:
• An opening angle bracket
• A forward Slash, for closing tags only
• The name of the element itself
• A closing angle bracket

6. What is an attribute?

An HTML tag may also contain its attribute to provide extra information about the element that will not appear on the page. An attribute should always have:
• A space between it and the element name, or the previous attribute should there be many
• Its name followed by an equals sign
• Opening and closing quote marks around the attribute’s value
7. What is the anatomy of an HTML document?
An HTML document should always have the following:
• , mainly for historical reasons
• The element to wrap the entire content of the document
• The element to include all the “things” that need to be included in the web page that are not the content that we want to display to the users. These include keywords, the description of the page displayed in the results of search engines or the character set declarations
• The empty element , which sets the character set for the document. UTF-8 includes most characters in any written language and helps avoid unnecessary complications that might come using another setting
• The element which sets the title of the page
• The element contains the content we want to be displayed to the users. This will include any marked up text, lists, images, videos etc…

  1. HTML stands for HypeText Markup Language. It is not a programming language but a Markup language
  2. HTML is used to tell the browser exactly where and how to display each element of a website
  3. We are going to need HTML to create a way to communicate with the blockchain through a browser
  4. An HTML tag is that part of the element that tells the browser exactly where and how to display the content
  5. The opening tag is made up of the name of the element wrapped in opening and losing angle brackets. It tells the browser where a certain element starts and how to display it. The closing tag is made up of a forward slash, the name of the element all wrapped up in opening and closing angle brackets. It tells the browser where the element ends.
  6. An attribute is extra infromation we don’t want to appear in the content. To make an attribute we need a space after the tag, the name of the attribute followed by an equals sign and its value wrapped in opening and closing quote marks.
  7. Anatomy of an HTML document:
    <!DOCTYPE html> The doctype, which is a relic of the past, yet necessary for the correct functioning of the page
    <html></html> The HTML element or root element wraps all the content of the page.
    <head></head> The head element is the container for all the stuff in the page that will not be displayed to the viewer, like search engined keywords and so on.
    <meta charset=“utf-8”> is the characters set that will be use in the page.
    <title></title> is the content that will be displayed on the tab of the page and favourites of bookmarks.
    <body></body> is the part that contains all the content to be displayed to the users of the web page
  1. HTML stands for Hyper Text Markup Language
  2. It is used to structure your content within your website
  3. To be able to develop good looking websites as frontend for our application
  4. A HTML tag is some kind of a function to design, structure, link etc. your html content
  5. A HTML tag usually has an opening tag, attributes an a closing tag.
  6. An attribute provides further information for a tag. For example: href=“http://endofweb.com” defines the link a where it points too.
  7. The basic structure
    !DOCTYPE html
    html
    head /head
    body /body
    /html
  1. What is HTML? A markup language it stands for Hyper Text Markup Language.
  2. What is HTML used for? HTML is used to show give your content on your website some form of structure making it easier for people to read and follow along.
  3. Why are we learning HTML? So people can see how our blockchain is working.
  4. What is an HTML tag? They are the tags that help display information in a certain way.
  5. What is the structure of an HTML tag? opening tag - content - closing tag opening tag could include attributes.
  6. What is an attribute? An attribute is used to give extra information to an element.
  7. What is the anatomy of an HTML document?
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
  1. What is HTML?

HTML stands for HyperTextMarkupLanguage. It is not a programming language; it is a MARKUP language that defines the structure of the content on a webpage. Elements are used to enclose text and make it look a certain way, or bring in links, images, etc.

  1. What is HTML used for?

HTML is primarily used for editing the layout of webpages.

  1. Why are we learning HTML?

HTML provides the structural overlay for a webpage; in order to build a proper frontend for a DAPP, we need to have something that we can use to interact with the user. HTML provides the basic layout for the creation of a workable UI, especially when it involves a web-based DAPP.

  1. What is an HTML tag?

The tag is the <?> and the . We must always close end the element with a / before the >. That way the element will end properly.

  1. What is the structure of an HTML tag?
<?>INSERT CONTENT
  1. What is an attribute?

An attribute is extra info controlling the element’s content that you don’t want to appear in the actual thing people see. The key to remember is to always put a space before the attribute name, an = before the attribute value, and the attribute value in quotation marks. If you want to nest attributes within each other, make sure to open and close the elements themselves properly or it will look weird.

  1. What is the anatomy of an HTML document?
THIS IS THE DOCTYPE THE ROOT ELEMENT CONTAINER FOR NON-CONTENT STUFF LIKE CSS STYLING CODE, SEARCH KEYWORDS, PAGE DESCRIPTIONS, CHARACTER PRESETS, ETC. SETS THE DOC SO IT CAN HANDLE MOST TEXTUAL CONTENT TITLE PAGE, BROWSER TITLE PAGE ALL THE CONTENT YOU WANT PEEPS TO SEE
1 Like
  1. What is HTML?

A markup language known as Hypertext Markup Language.

  1. What is HTML used for?

HTML is use to structure and design web page material through bracketed series of elements.

  1. Why are we learning HTML?

Gives design to web pages that are necessary for frontend development of DAPPs, or any user face for blockchain applications. It is important to know in creating applications to use blockchain.

  1. What is an HTML tag?

A bracketed set of rules put on a certain line of content matter. Starting with <p> and closing with </p>.

  1. What is the structure of an HTML tag?

<?> subject content </?>

  1. What is an attribute?

Attribute is an effect you can create on the content within a specific element.

  1. What is the anatomy of an HTML document?

<!DOCTYPE html>

<html>

<head> </head>

<body></body>

</html>

  • What is HTML?
    Hypertext Markup Language

  • What is HTML used for?
    It is used to structure the contents of a web page

  • Why are we learning HTML?
    So that we can build a front-end to interacts with our blockchain backend

  • What is an HTML tag?
    A tag defines how the element should be displayed

  • What is the structure of an HTML tag?
    Open and Close

  • What is an attribute?
    Extra information about the element that doesn’t appear on the web page

  • What is the anatomy of an HTML document?

followed by opening and closing HTML tags. Inside the HTML tags are head and body tags.

1: Hyper Text Markup Language
2: Building web pages
3: HTML is needed to develop a “Front End” or user interface to our programs.
4: An element on a web page, it can contain text, images or links to other information.
5: One opening tag telling what to display, then display information and a closing tag
6:It sets an tag on a part of your document that will allow you to change the style of the specific element
7: Opening html-tag, header and body element, closing html-tag

  1. HTML Hypertext Markup Language is the code that is used to structure a web page and its content.

  2. HTML is used to give users the ability to design the image and behavior of your content

  3. We’re learning HTML to know the front end of web development before we learn back end.

  4. An HTML tag is what gives words and images specific attributes and elements.

  5. The structure of an HTML tag is < followed by the function > with the function repeated in <>'s with a / before the function.

  6. Attributes are elements you can add to the element that aren’t visible with the actual content

  7. The anatomy of an HTML document is the html element, the head element, the meta element, the title element and the body element

  1. HTML ( Hyper text markup с language)
  2. HTML used to structure a web page and its content.
  3. To create website what will interact with blockchain.
  4. An HTML tag is commonly defined as a set of characters constituting a formatted command for a Web page. At the core of HTML, tags provide the directions or recipes for the visual content that one sees on the Web
  5. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag that frame a particular piece of code, text or other tags
  6. Attributes provide additional information about an element and are always specified in the start tag. Usually come in name/value pairs like: name=“value”
  7. An HTML document has two main parts: the head and the body. But firstly every HTML document should start by declaring that it is an HTML document.
  1. What is HTML?
    Hyper Text Markup Language

  2. What is HTML used for?
    It’s used to add elements to a webpage. For example adding text. CSS is that used to change the look of that text for example color. Then JavaScript is used to make the text change based on programed conditions for example.

  3. Why are we learning HTML?
    To give what is later worked on a visual interface.

  4. What is an HTML tag?

h1 is an HTML tag

  1. What is the structure of an HTML tag?
    Starting tag text closing tag.

  2. What is an attribute?
    An attribute is a way of labeling an element without showing that label visually. Attributes are often used to style a page using CSS.

  3. What is the anatomy of an HTML document?
    The formatting used in HTML documents.

What is HTML?

H yper t ext M arkup L anguage (HTML) is a markup language not a programming language.

What is HTML used for?

HTML is used for structuring web pages and their contents which is enclosed by elements to make appear the way it should be.

Why are we learning HTML?

We are learning HTML to structure and design web pages.

What is an HTML tag?

Tags are starting point and ending points of an element .

What is the structure of an HTML tag?

Opening tag, content and closing tag .

What is an attribute?

Attributes are extra information about element and don’t appear in actual content .

What is the anatomy of an HTML document?

Anatomy wraps up basics of individual HTML elements but not useful on their own .

  1. What is HTML?
    Markup language that a browser can render.

  2. What is HTML used for?
    To render content in a browser

  3. Why are we learning HTML?
    Because it’s a pervasive technology.

  4. What is an HTML tag?
    Markup that describes how a particular element in a HTML page should render.

  5. What is the structure of an HTML tag?
    I don’t know the official answer, but depending on the HTML tag, it will have various elements describing it’s properties.

  6. What is an attribute?
    It’s an item in the tag that tells the tag how to render itself.

  7. What is the anatomy of an HTML document?
    Not really sure of the official answer, but, it might look like:

  1. What is HTML?
    HyperText Markup Language. This is not a programming language, but a method of organizing content and UI on a webpage

  2. What is HTML used for?
    A tool to present the information you want viewers of your webpage to see

  3. Why are we learning HTML?
    It teaches basic organizational structures that will translate to coding. It also becomes a skill to be used.

  4. What is an HTML tag?
    A tag identifies the adjacent content for a given purpose such as a title, link etc.

  5. What is the structure of an HTML tag?
    OpeningTag, ATTRIBUTE="…", CONTENT, ClosingTag

  6. What is an attribute?
    Allows that tagged field to be stylized or introduce content such as a picture or link.

  7. What is the anatomy of an HTML document?
    header including title, subtitles, keywords, etc. followed by a body that contains the main content of the page

1.Hypertext markup language
2. It is a standard language for displaying text, pictures, and other media
3. Front end learning, is basic to create website so it can interact with smart contracts
4. Its like instructions for the website
5.


6. attribute modify elements
7. Individual elements to form an entire HTML page

  1. Hyper text markup language.
  2. It is used to define the structure of your content.
  3. it is useful for creating a front end (i.e. a web page)to interact with the with our back end (i.e. the blockchain).
  4. It’s used to create an element.
  5. <“name of element”></"name of element>
  6. Attributes contain additional info about the element that will not be displayed in the actual content.
  7. DOCTYPE
    html
    head
    meat charset=“utf-8”
    title
    body

1. What is HTML?
Hypertext Markup Language

2. What is HTML used for?
Setting the visual structure of elements on a page and rendering the visual appearance of content.

3. Why are we learning HTML?
To create front ends for our code and allow users to interact with our programs.

4. What is an HTML tag?
Syntax used to refer to a specific elements (e.g. <p> referring to a paragraph element type).

5. What is the structure of an HTML tag?
<openingTag attribute=""> content </closingTag>

6. What is an attribute?
An attribute is used to specify settings and modifiers for a tag (e.g. assigning a specific style to a paragraph).

7. What is the anatomy of an HTML document?
<DOCUTYPE>

<html>

<head>
</head>

<body>
</body>

</html>

1 Like