HTML Reading Assignment

  1. What is HTML? HTML is a markup language (the underlying code) used in creating a webpage and its content.

  2. What is HTML used for? The language is used to create elements that help orient content data so that it appears/acts in a certain fashion.

  3. Why are we learning HTML? So that we can build things that work, to demonstrate the prowess gained, the idea is to be able to build something that interacts with the blockchain. By learning how to build an application to interact with our smart contracts we complete a full cycle: Front and Back end. As a bonus, learning JavaScript, we will have a basic set of tools to better learn/engage with other languages. HTML gives us the static boring sites as a baseline for JavaScript interactivity later on. Taken together they allow us the capacity to design for interactions with a blockchain.

  4. What is an HTML tag? An HTML tag is part of an element that denotes either the beginning of an element (stating its type and/or extra information) or its endpoint (again stipulating additional information).

  5. What is the structure of an HTML tag? The structure of an HTML tag includes opening/closing angle brackets, any required attributes, and the closing tag variant includes a forward slash before the element name. This structure provides a layout for the data to follow.

  6. What is an attribute? Attributes are the extra information of an element that the coder does not want revealed in the actual content displayed to the user but instead has other uses for the coder.

  7. What is the anatomy of an HTML document? The anatomy of an HTML document lies in the arrangement of elements to create an entire HTML page. This includes doctype (a required preamble), the root element (), the element, (enabling majority of written languages), the element, a element, images and other elements.

2 Likes
  1. HTML is the code that is used to structure a web page and its content.For eg. it could be structured as a paragraph, list of bullet points, or an image.

  2. Used to build websites, web-pages in particular.

  3. To understand the basics of a website.

  4. Tags allow for opening and closing elements.

  5. for opening and

    for closing. Variable in between.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.

  7. The attribute name followed by an equal sign.
    The attribute value wrapped by opening and closing quotation marks.

2 Likes
  1. HTML is a markup language that defines the structure of your content.
  2. Organize your content
  3. To have an idea about structure for a web page
  4. its the start and end of a section in HTML
  5. open tag<>, content, </>closing tag
  6. behind the scenes content
  7. the doctype, html element, paragraph element, title, body
3 Likes
  1. HTML short for Hypertext Markup Language is the code that is used to structure a web page and its content.

  2. The purpose of HTML is to provide a set of general rules that suggest how content should look when displayed.

  3. We are learning HTML to be able to understand the basics of programming.

  4. A tag is a marker used to create HTML elements. All elements begins with a start tag and
    most end with an end tag.

  5. opening tag with the name of the element wrapped in opening and closing angle brackets.

    closing tag same as the opening tags except it includes a forward slash before the element name.
  6. An attribute is a key value pair in an HTML element.

  7. html, head, title, body, open and close tags.

1 Like
  1. What is HTML? H yper t ext M arkup L anguage

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

  3. Why are we learning HTML? It is used to make a web page

  4. What is an HTML tag? Are markers enclosed by angle brackets that mark the beginning, content, and end of an html document.

  5. What is the structure of an HTML tag? An opening tag would contain: Opening angle bracket, name of the element, and closing angle bracket. While a closing tag would contain: Opening angle bracket, forward slash, name of the element, and closing angle bracket.

  6. What is an attribute? An attribute 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?

  8. Headings (up to 6 lines)

  9. Paragraphs

  10. Lists

  11. Links

1 Like
  1. What is HTML?
    HTML stands for Hyper Text Markup Language that defines the structure of a content using opening and close tags creating elements, and elements can be inside other elements - it is called Nesting; the element is comprised of an open tag, a content we want to show and then a closing tag. HTML uses tagging text files to define font, colour, graphic, and hyperlink effects on World Wide Web pages.

  2. What is HTML used for?
    HTML has the basic building blocks - HTML elements, i.e. able to create a structured document with the help of structural-semantic text like heading, paragraphs, lists, links, and other essential basic items, so HTML it is used to create simple web pages and web applications, however, HTML can be combined with JavaScript and CSS. When JavaScript affects the behaviour of content, CSS affects the layout and appearance of the content.
    Conclusion:

  1. Used for Web pages development, every page contains HTML tags, including hyperlinks to connect to other pages;
  2. Web document creation, uses the basic concept via tag and DOM (document object model), consisting of Title, Head and body. The title can be seen on the Browser’s bar, this help Browsers to identify content of the web.
  3. Internet navigation, an important use of HTML, utilises the concept of hypertext, when we click it navigates to the referenced text or page. HTML is used to embed hyperlinks within webpages, it allow us to navigate between pages and websites located in different servers.
  4. Responsive images on web pages with the srcset attribute of img element in HTML and combining it with picture elements, with size variation can be loaded by using the img element. Developers can set the rules with the picture element, declare the img element with the default source, and then for every case, a source can be provided.
  5. Client-side storage, the HTML 5 we can save user’s data across sessions, its API is very simple and provides the developer with setItem, getItem, and removeItem methods. IndexDB, on the other hand, is a larger and better client-side data store. IndexDB database can be expanded with the user’s permission.
  6. Offline capabilities usage, data being able to be stored in browser, HTML5 has a cache mechanism, it defines how the browser manages an offline situation, being able to manage resources for offline use.
  7. Data Entry support with HTML standard and set of APIs, developers can add tags indicating fields, text, data format and so on, therefore end users can use data entry;
  8. Game development usage, HTML5 supports game development;
  9. Native APIs usage to enrich a website, HTML5 adds new tools, new APIs regarding file system, drag and drop, event planning, client storage and so on.
  1. Why are we learning HTML?
    To understand what is all about in the first place, to understand what a website needs to be successful and how to create the perfect website to produce best outcomes, otherwise we would have to pay and trust someone else to deliver the coding services.
    Most importantly, if we know how to code we are able to audit and revise other developers code and achieve the results we aim, we also know what services we would like to pay for and certainly not to employ poor coding services from others that can affect our business.

  2. What is an HTML tag?
    An HTML tag are hidden keywords within a web page/website, it will define a structure of an element and how the browser must display the content.

  3. What is the structure of an HTML tag?
    Here is an example: If i wish to create a paragraph i can use an open tag

    and a closing tag and write in between these two tags any phrase i.e.

    My favourite colour is green

    I have defined how the web browser must format and display my content by opening tag and closing tag as above.
  4. What is an attribute?
    An Attribute provides additional information to HTML elements, an element starts with an initial tag, a content and an end tag and all elements can have attributes, these must be specified just after the first tag to take effect, given the example above i can show a colour attribute to my code:

< p style=“color:green;” >My favourite colour is green< /p>

The style attribute was used to add a style to the element i created, the above is showing a colour change, however i could also change font, size, and more.

  1. What is the anatomy of an HTML document?

The anatomy of the HTML Document is:
(without space after the first bracket)
1<!Doc Type html>
2< html lang=“en”>
3< head>
4< meta charset=“character_set”>
5< title>123
6< /head>
7< body>
8< h1>123
9< /body>
10< /html>

1 Like
  1. The (most popular?) document markup language used to structure web pages and their content.
  2. To structure web pages and their content.
  3. Because a lot of the Block chain technology revolves around websites interacting with the Blockchain, thus HTML is crucial for any Blockchain project.
  4. It is the beginning (and end) of an element, defining its name and breadth.
  5. <elementName attribute1="attribute1 value’’ attribute2=’‘attribute2 value’’ …>
  6. Extra information about the element that does not appear in the web page content.
  7. HTML doc declaration, head, body.
1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content.
  2. What is HTML used for?
    To structure web content.
  3. Why are we learning HTML?
    To understand how websites are developed.
  4. What is an HTML tag?
    Tags are markers that enclose the beginning and end of an element.
  5. What is the structure of an HTML tag?
    The opening tag that consist the name of the element, angle brackets that states where the element begins, the closing tag that states where the element ends, the content which is the content of element.
  6. What is an attribute?
    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?
    It wraps up the basics of individual HTML elements.

What is HTML? - It´s a Markup language that defines structure of the content.

What is HTML used for? It is used for structuring a web page and it´s content.

Why are we learning HTML? In order to develop an interactive webpage that interacts with the blockchain or smart contracts. Also to get familiar with other programming languages like Java Script, that open a easier way to understand further programming languages like C++, Python, Solidity etc.

What is an HTML tag? A Tag is used for creating an element, wich again containes a data item, a chunk of text, an image or nothing at all.

What is the structure of an HTML tag? A tag starts with an angled bracket, followed by the name of the element and a another angled bracket, that points in the other direction. Then comes the content of the element, followed by an angled bracket, a forward slash, the name of the element and another angled bracket.

What is an attribute? An attribute changes the behaviour of an element or provides metadata that does not appear in the content of the website.

What is the anatomy of an HTML document?

  1. First comes the doctype preamble.
  2. Then comes the html element or root element.
  3. Follwed by the head element, wich includes keywords for example.
  4. Right after that comes the element that sets the character set of the document to UTF-8, in order for it to recognize most characters from the vast majority of all written languages.
  5. Now comes the title element, wich shows the title of your webpage displayed in the browserbar after your webpage has loaded.
  6. Last comes the body element wich is used to show the visitor of your webpage all the content you want to show him on your webpage. Be it Text, playable audio, videos, a game, images etc.
1 Like
  1. What is HTML?
    HyperText Markup Language

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

  3. Why are we learning HTML?
    To create a web interface that communicates with a block chain.

  4. What is an HTML tag?
    The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

For example, <p> is an opening tag, and </p> is a closing tag. p means paragraph.

  1. What is the structure of an HTML tag?
    An opening tag, content, and a closing tag.

<p>Here's the content.</p>

  1. What is an attribute?
    An attribute contains extra information about the element. It doesn’t appear in the actual content.

  2. What is the anatomy of an HTML document?

<<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
    <img src="images/firefox-icon.png" alt="My test image">
  </body>
</html>
1 Like
  1. Hyper Text Markup Language
  2. Web pages are written in HTML
  3. First step to learning coding
  4. opening tag <p> content </p> closing tag
  5. see answer 4
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. wraps up the basics of individual HTML elements
1 Like
  1. What is HTML?

HTML is markup Language use to create content of website ,it provide the structure to website.

2.What is HTML used for?
HTML used for create content to website ,its userwise interface.it create framwork to website,

  1. Why are we learning HTML?
    So that we can create interface to smart contract ,and to learn javascript which is similar to solidity
    HTML is basic of JS
  2. What is an HTML tag?
    tag is used so that it can explain to the browser stucture.content,block.
  3. opening tag ,content, closing tab
  4. Attribute have extra information about element.
    7.<html> <head><body> <p>
1 Like
  • What is HTML?
    Hypertext Markup Language.
  • What is HTML used for?
    For building simple web1.0 websites.
  • Why are we learning HTML?
    We need to know the basics of programming web 1.0 until moving onto other more complicated things.
  • What is an HTML tag?
    HTML data structure.
  • What is the structure of an HTML tag?
    Opening tag, content, closing tag
  • What is an attribute?
    Extra information needed for the tag.
  • What is the anatomy of an HTML document?
    Root element <HTML>, name elements <head>,</head>, content elements <body>,</body>, closing root element </HTML>
1 Like
  1. HTML is the mark-up language used to define the structure of a web page or website.
  2. It consists of a series of elements that enclose different parts of the content to make it appear or behave a certain way.
  3. We are using HTML because anything we do with blockchain will be interacted with and displayed on the web. We need to understand how to use HTML in order to utilize blockchain technology.
  4. An HTML tag begins and closes an element using angle brackets “<>”
  5. The structure of an HTML tag is as follows:
    a. opening -
    b. closing - </name of element>
  6. An Attribute extends an element, changing its behavior or providing metadata.
    Said another way, Attributes contain extra information about the element that you don’t want to
    appear in the actual content. An attribute should contain:
    a. space between it and the element name.
    b. the attribute name followed by an equal sign.
    c. the attribute value wrapped by opening and closing quotation marks.
  7. An HTML anatomy:
    a. - ensure your doc behaves correctly
    b. - wraps all the content on the entire page and is sometimes referred to as the
    “root element”.
    c. - acts as a container for content that is not to be displayed to the viewer. It
    includes key words that you would want utilized by the search engines. It also provides style
    content, character declarations and more.
    d. - this element chooses the character set you will use for your entire
    document. It contains almost every character from a vast majority of known languages
    e. - sets the title of your page, which appears in the browser tab the page is loaded
    in. It is also used to describe the page when you bookmark/favorite it.
    f. - contains all content that you want to show to web users, ie: text, images,
    videos, games, playable audio tracks, etc.
1 Like
  1. HTML is a markup language that defines the structure of your content

  2. You use it to enclose or wrap different parts of the content to make it appear or act a certain type of way

  3. We are learning this so that it is easier to learn java and to build a coding foundation.

  4. a tag is a code that can make a word or image hyperlink to somewhere else, make the font big or small, italicize words, and more.

5.The whole line of code is called an element, then you have your tags which signal the start or end of your code, and then you have the content which is what you want to be displayed on your website.

  1. Attributes contain extra information about the element that you don’t want to appear in the actual content

7.First you have the doc type, it is a required preamble. Then you have the html element which wraps all of the content on the entire page. Then you have the head element which acts as a container for all the stuff you want to include on the HTML page that isn’t the content you are showing to your page’s viewers. Then you have which allows your computer to handle any textual content you might put on the website. Then you have the title element which sets the title for your page. Then lastly you have the body element which contains all the content that you want to show to users that look at your page.

extra: I don’t normally like copying an article word for word in my answers but I barely know anything about coding so I didn’t really know how to explain that stuff.

1 Like
  1. What is HTML?
    Is Mark up language that defines structure of content

  2. What is HTML used for?
    Is used to create web pages

  3. Why are we learning HTML?
    To create web pages to interact with smart contracts.

  4. What is an HTML tag?
    Something that defines what type of content we have on website.

  5. What is the structure of an HTML tag?
    Opening and closing tag and content between them

  6. What is an attribute?
    Attribute provides extra information for the element.

  7. What is the anatomy of an HTML document?
    Begins with !DOCTYPE html tag then followed by html tag, then head and body and closing tags.

1 Like
  1. HTML is not a programming language, but a markup language. It consists of a series of elements that wraps different content to make it appear or act a certain way, as opposed to functioning like a program.

  2. Used to describe the structure of Web pages, publishing online documents with headings, text, tables, lists, photos, hyperlinks etc.

  3. To be able to work on both aspects of a blockchain project. Webpages act as the front end of a product that the users experience. While the blockchain itself acts like the engine and is considered the back end of a product.

  4. Tags consist of the name element that can make a word or image act a certain way. They are normally wrapped in angle brackets and is placed where an element is to take effect and sometimes, end.

  5. A HTML tag consists of an opening tag, content, and sometimes a closing tag (as img don’t have closing tags). All of these together are known as the element. The opening tag has the name of the element wrapped in angled brackets while the closing tag has a forward slash, followed by the name of the element, with both wrapped in angled brackets.

  6. Attributes define additional characteristics or properties of the element without appearing in the content. example/ src, width, height, alt are attributes of the tag < img > or href being an attribute for < a > when making hyperlinks.

  7. An HTML anatomy consist of:

< !DOCTYPE html > - It is a required preamble.

< html ></ html > - Wraps content of the entire page

< head ></ head > - Acts as a container for all the stuff you want to include on the HTML page that isn’t the content you are showing to your page’s viewers. This includes things like keyword and a page description that you want to appear in search results,

< meta charset=”utf-8” > - sets character set you should use on the document.

< title >< /title > - sets the title of your page that appears in browser tab and when bookmarked

< body >< /body > - This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks, or whatever else.

1 Like
  1. What is HTML?
    Hypertext Markup Language is the code used to structure content on a webpage
  2. What is HTML used for?
    It is used to structure web page content; it can make content show up in different places, change its style, etc.
  3. Why are we learning HTML?
    To understand the fundamental structure for developing meaningful web content
  4. What is an HTML tag?
    A tag encloses content in order to define its function and appearance on a webpage
  5. What is the structure of an HTML tag?
    A tag consists of the name of the element wrapped in opening and closing angle brackets, the closing tag including a forward slash before the element name; there are two tags per element – one at the beginning of the content and one at the end.
  6. What is an attribute?
    Attribute is information about an element that you don’t want to appear in the actual content, placed inside the brackets of an opening tag after the element name and wrapped by opening and closing quotation marks
  7. What is the anatomy of an HTML document?
    i. Preamble < !DOCTYPE html > to make sure doc behaves correctly
    ii. The < html > < /html > root element to wrap all content on page
    iii. The < head > < /html > element as container for all the stuff to include on the html webpage that isn’t the content to be shown to viewers; i.e., keywords and a page description that you want to appear in search results
    iv. (optional but recommended) The < meta charset=”utf-8” > element to handle any textual content on the page; avoids problems down the road
    v. (optional but recommended ) The < title > < /title > element to set the title of the page that appears in the browser tab the page is loaded in and in the bookmark
    vi. The < body > < /body > element to contain all the content that you want to appear on the page including text, images, videos, games, audio tracks, or whatever else.
2 Likes
  1. HTML stands for Hyper Text Markup Language and is used to structure a web page and content
  2. We are learning HTML to use to structure web pages and their content
  3. A HTML tag is what is used to enclose or wrap different parts of content
  4. The structure of an HTML tag is name of element wrapped in opening and closing angle brackets and a closing tag is the same except includes a forward slash before the element
  5. An attribute is extra information about the element without being in the actual content
  6. The anatomy of an HTML document is
sets rules for HTML page wraps content of page contains info of the page that is not content this sets the title of the page this contains all the content you want to show web user
1 Like
  1. HTML stands for Hyper Text Markup Language which is basically putting all your texts, links and images into a website with the possibility of making interactions
  2. HTML is used to create websites
  3. We are learning HTML to understand the basics of code writing that will help us later on with Javascript programming that will give life and animation to our websites
  4. HTML tag is the opening and the ending code of anything we want to execute
  5. <anything> ..... </anything>
  6. an attribute is the line of code written within the tag that does not appear in the content, it consists of an attribute name followed by = and an attribute value
  7. Its hard to answer this one without going back to the document but it is a doc type, head, title and body I guess.
1 Like