HTML Reading Assignment

<html>
<head></head>
<body>
<p><strong>1.</strong> HTML is hyper text markup language which is used to design static web pages web 1.0</p>
<p><strong>2.</strong> Html is used to design your web page using its set of elemets and attributes, in standard format. you can style your page and make it accessbile to all.</p>
<p><strong>3.</strong> Html is basic for any website creation for user to interact with underlying backend system. So learning html helps us to design our webpage by ourselves.</p>
<p><strong>4.</strong>Html consists of tags which has specifc meaning and these work wierd if an opening tag is not closed later unless if its empty</p>
<p><strong>5.</strong> An opening tag is enclosed in <> and closing tag is preceeded with forward slash '/' to indicate tag is closed.</p>
<p><strong>6.</strong> Attributes are additional properties which can be added to an element. It can be used to style all elements which has same look. After space an attribute can be added and assigned value using = , we can add multiple attributes too</p>
<p><strong>7.</strong> starts with root tag html, it has two sections head and body within it</p>
<h4>Most interesting part is writing this assignment in html <h4> 
</body>
</html>
1 Like
  1. The letters HTML are initials for hypertext markup language.
  2. HTML is for creating web pages.
  3. If we learn HTML first, we’ll have a foundational understanding for learning code related to blockchain development. It will also help us in frontend design for dApps.
  4. A tag is basically how content is annotated. A tag is used to start and end an element, with the actual content of the element put between the tags.
  5. The opening tag has the name of the content in angle brackets. The closing tag has a forward slash and a space before the name in angle brackets.
  6. An attribute is extra information about an element, not visible on the web page.
  7. The anatomy of an HTML document consists of a preamble called doctype and elements for the following: HTML, head, character set, title, and body.
1 Like
  1. What is HTML?

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

  1. What is HTML used for?

to structure a web page and its contents

  1. Why are we learning HTML? To have uniform structure in coding so we can build a website to interact with the BlockChain.

  2. What is an HTML tag? Tags create elements. They define the way the content will show online.

  3. What is the structure of an HTML tag?

Opening and closing tag with the name of the element in the middle

  1. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content. There is a space between the attribute and the element name; the attribute name is followed by “=” and the attribute value is wrapped by opening and closing quotation marks.

  1. What is the anatomy of an HTML document?

Each item is within brackets (opening and closing tags): !DOCTYPE html html head meta charset=“utf-8” title title head body img src+" " alt=" " body html

1 Like
  1. What is HTML?
    Hypertext Markup Language, code used to structure a web page and its contents

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

  3. Why are we learning HTML?
    to learn rhe basics of programming, specifically web programming and how web pages (front end) interact with the code (backend)

  4. What is an HTML tag?
    used for creating part of an element, opening tag

    and closing tag

  5. What is the structure of an HTML tag?
    see answer in 4

  6. What is 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?
    how individual elements are combined to form an entire HTML page. <html>, <head>, <body>, <title>

2 Likes
  1. -Hypertext Markup Language - HTML is a markup language that defines the structure of your content in for example a web page
  2. The code is used to structure a web page and its content. The content can be structured within a set of paragraphs, using images or data tables. You can use it to wrap different parts of the content and make it appear in a certain way.
  3. HTML is suitable for beginners and gives a good foundation for web development
  4. The opening tag sets where an element begins and the closing tag marks the end. Tags also define the type of element e.g. p=paragraph
  5. Opening tag: angle brackets wrap the name of the element. Closing tag: angle brackets wrap a forward slash with the name of the element
  6. attributes display extra information about the element that shall not appear in the actual content.
  7. image
1 Like
  1. HTML is a markup language.
  2. HTML is used to “tell your computer” how the page’s content should be treated/displayed.
  3. We need to know HTML as one of the ingredients to front-end dapp design.
  4. A tag is a way of specifying how specific bits of content should be marked up.
  5. A complete HTML tag (typically) consists of two tags: an opener and a closing tag.
  6. An attribute is additional information that can be provided within an element.
  7. A simple webpage would consist of something similar to the following:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title> Snappy Title </title>
</head>
<body>
---lots of great content---
</body>
</html>
1 Like
  1. What is HTML?

HTML stands for Hyper Text Markup Language.

  1. What is HTML used for?

HTML is used to clearly layout the objects on a page in a readable and visually pleasing manner using a sequence protocol.

  1. Why are we learning HTML?

We are learning HTML because this is the base layer of web 1.0 upon which future layers would be built upon and in order to enhance the original capabilities of websites.

  1. What is an HTML tag?

HTML Tags are used to create elements within the page code.

  1. What is the structure of an HTML tag?

(

The structure of an HTML Tag is thus;
Opening Tag, Contents, Closing Tag(Don’t forget the “/”)

)
  1. What is an attribute?

An attribute is additional information that the developer does not want to be directly visible by the page visitor.

  1. What is the anatomy of an HTML document?

The anatomy of an HTML document is simply the sequential ordering of digital information and assigning them attributes when needed. All done following the syntax for HTML.

1 Like
  1. What is HTML?

Hypertext Markup Language is the code used to build a webpage and its content.

  1. What is HTML used for?

HTML is used to define the structure of a webpage, using elements such as font size to make a website appear a certain way.

  1. Why are we learning HTML?

HTML makes up the foundations of every webpage and is where every webpage begins. It is also used to form the front-end of every blockchain, the website.

  1. What is an HTML tag?

Tags are used to hold elements within angle brackets.

  1. What is the structure of an HTML tag?

An HTML tag consists of an opening and closing tag with content in between the two, altogether forming an element.

  1. What is an attribute?

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

  1. What is the anatomy of an HTML document?

In order from beginning to end, the anatomy consists of DOCTYPE html, opening tag html, opening tag head, meta charset=“uft-8”, opening and closing tags for title, closing tag head, opening tag body, content, closing tag body and closing tag html.

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

  2. What is HTML used for?
    HTML consists of a series of elements which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

  3. Why are we learning HTML?
    It is the foundation of web development.

  4. What is an HTML tag?
    The HTML tag is used to format the content that is being displayed.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag is as follow: the opening tag followed by the content, followed by the closing tag.

  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?
    doctype
    the html element
    the head element
    meta charset=“utf-8”
    the title element
    the body element

1 Like
  1. Hypertext Markup Language

  2. For designing web pages which will be shown in browsers

  3. Because it is the basis for building apps on top of the blockchain

  4. It is a mark which determines the start or end of an element

  5. It is inside <> and the ending one has a forward slash </>

  6. It is extra information about an element, which we don’t want to be shown in the actual content

  7. It starts with
    Then the tags and at the beginning and end of the content, respectively
    Then it has a header with meta data
    Then a body
    Both having different elements

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content. HTML stands for: Hypertext Markup Language

  2. What is HTML used for?
    HTML is used to create websites.

  3. Why are we learning HTML?
    HTML is a very basic code and can help how websites are structured for SEO or for content structure.

  4. What is an HTML tag?
    Tags compose the elements of the HTML. It is the individual building blocks of what we call HTML.

  5. What is the structure of an HTML tag?
    The structure usually contains and opening tag, closing tag and some content. One can add attributes etc. to add complexity to the element.

  6. What is an attribute?
    Attributes contain extra information about the content and element.

  7. 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. What is HTML?
    The Hypertext Markup Language is used to build (structure) a web page and its contents.

  2. What is HTML used for?
    It is used for building web pages and web sites.

  3. Why learn HTML?
    It teaches us to build simple static websites to which we can add dynamic functionalty via Javascript.

  4. What is an HTML tag?
    It is a ‘command’ that is wrapped around an element that tells the code how it is to perform or be displayed.

  5. What is an Attribute?
    Attributes contain extra information about the element that you don’t want to be displayed on the web page.

  6. Anatomy of an HTML document?

<html>
	<head>
		<title>This Is My Title</title>
	</head>
	<body>
		<p>"This content will be displayed on the page"</p>
	</body>
	</html>
1 Like

I did write the html opening and closing tags as well as head, body opening and closing tags followed by the html closing tags, but the browser read it (as above) instead of displaying it as text!

  1. What is HTML? - stands for hypertext markup language; is the code used for structuring a webpage and the content within it.

  2. What is HTML used for? - defining the structure of a webpage and content

  3. Why are we learning HTML? - I’m learning to have better understanding about web structures and blockchain tech

  4. What is an HTML tag? - you can enclose tags within elements to make a word/phrase/image link out to another web address, or italicize or change the font size, for examples.

  5. What is the structure of an HTML tag? i.e. for designating content to be a paragraph, use:

    content of paragraph

  6. What is an attribute? Attributes contain coded information that you wouldn’t see as a viewer of the web page. The define additional characteristics of an element for example the width/height dimensions of an image. They always have a space in between in and element name, are followed by an equal sign and the attribute value wrapped by opening closing quotation marks.

  7. What is the anatomy of an HTML document? - An HTML document consists of:

<!DOCTYPE html>  makes sure document behaves right
<html> </html> wraps all the content on a page 
<meta charset ="utf-8">
<title> </title> also known as title tag, is used for descriptions i.e. when bookmarked
<body> </body> wraps a content that you want to show, could be text, images, videos, games or audio
1 Like
  1. HTML is a markup language that is used to structure your website
  2. It can enclose or wrap different text to make them appear certain ways
  3. Because it is the basics of coding and in learning this it will become much easier to learn any other languages
  4. A tag is used in the begging and end of an element
  5. opening tag, content, closing tag
  6. Extra information about the element
  7. head and body section

Hypertext Markup Language is used to structure a web page and its content. We are learning HTML so that we will be able to connect website to smart contracts later. Tags are used to create elements which contain data, chunks of texts or images. Attributes contain extra information that do not appear in the actual content. The anatomy of an HTML document includes the document type, the root element, the head element, the character set element, the title element, and the body elemeent.

1 Like
  1. HTML stands for Hypertext Markup Language and it’s a markup coding language.
  2. To structure a web page and its content.
  3. It’s simple and web pages can for example be used as user interface of a blockchain software.
  4. Tag is something you can put around a word or a string of words to make it appear in different ways, have some features, for example to act as a hyperlink to somewhere else.
  5. HTML tag includes an opening tag and a closing tag. Content is added between these two.
  6. An attribute consists of attribute name and attribute class. Elements with a specific attribute can be targeted with style information and other things.
  7. It’s a way that individual elements are combined to form an entire HTML page. It basically includes all visible and non-visible information that a HTML page has.
1 Like
  1. What is HTML?

HTML ( H yper t ext M arkup L anguage). Is a mark up language that defines the structure of content. HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make font bigger or smaller, and so on.

  1. What is HTML used for?

It is used to structure a web page and its content.

  1. Why are we learning HTML?

Because we need the front-end part of the ecosystem to interact with the blockchain.

  1. What is an HTML tag?

It is 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.

  1. What is the structure of an HTML tag?
  • The opening tag: This consists of the name of the element, wrapped in opening and closing angle brackets. This states where the element begins or starts to take effect.
  • The closing tag: This is the same as opening tag, except that includes a forward slash (/) before the element name. This states where the element ends.
  • The content: This is the content of the element, which in this case, is just text.
  • The element: The opening tag, the closing tag, and the content together comprise the element.
  1. What is an attribute?

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

An attribute should always have the following:

  • A space between it and the element name.
  • The attribute name followed by an equal sign.
  • The attribute value wrapped by opening and closing quotation marks.
  1. What is the anatomy of an HTML document?

<!DOCTYPE html> — doctype. It is a required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However these days, they don’t do much and are basically just needed to make sure your document behaves correctly.

  • <html></html> — the [<html>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html) element. This element wraps all the content on the entire page and is sometimes known as the root element.

  • <head></head> — the <head> element. This element 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 keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.
    * <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 written languages. Essentially, it can now handle any textual content you might put on it. There is no reason not to set this and it can help avoid some problems later on.

  • <title></title> — the <title> element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.

  • <body></body> — the <body> element. 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.

<!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>
2 Likes
  1. What is HTML? Is the builder of hypertext markup language.

  2. What is HTML used for? It provides all the content needed to create a website.

  3. Why are we learning HTML? Because is the fundamental coding language of the internet.

  4. What is an HTML tag? Is to mark up the start/opening and end/closing tags.

  5. What is the structure of an HTML tag?

    opening tag and closing tag

  6. What is an attribute? Provide additional information about an element and attributes are always specific in the start tag.

  7. What is the anatomy of an HTML document?

1 Like
  1. What is HTML?
    Code that is used to structure a web page and its content.

  2. What is HTML used for?
    is used as a markup language that defines the structure of your content.

  3. Why are we learning HTML?
    To get an understanding of basic webpages that could be used to interact with blockchain technology.

  4. What is an HTML tag?
    It is part of the element of a text which can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller.

  5. What is the structure of an HTML tag?

The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets . This states where the element begins or starts to take effect — in this case where the paragraph begins.
The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends — in this case where the paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
The content: This is the content of the element, which in this case, is just text.
The element: The opening tag, the closing tag, and the content together comprise the element.

  1. What is an attribute?

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

  1. What is the anatomy of an HTML document?
    HTML opening and closing tags, head, body, meta charset, and title.
1 Like