HTML Reading Assignment

  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? The code that’s used to structure a web page and its content; it is a markup language that defines the structure of your content.
  3. Why are we learning HTML? Because we should be able to build a small website using web development to interact with the blockchain; to be able to build an application that can interact with smart contracts.
  4. What is an HTML tag? In HTML, a tag is used for creating an element. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, and make the font bigger or smaller…
  5. What is the structure of an HTML tag? A tag is used for creating an element, or a formatted command for a webpage, between single angle brackets.
  6. What is an attribute? Attributes are words included in the open tag which will not show up in the actual content. It is used to extend the capability of an element in ways such as style. It must begin a space between it and the element name, it must be followed by an equal sign, and the attribute value should be enclosed by quotation marks.
  7. What is the anatomy of an HTML document? The doctype, the html element, the head element, the meta charset element, the title element, the body element.
1 Like
  1. HTML is a markup language that defines the structure of your content.
  2. HTML is the code that is used to structure a web page and its content. For example, the content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.
    3.If we don’t learn how to use HTML, we won’t be able to edit and make our own web page. This is essential for making apps and blockchain. Otherwise, we would have to pay someone to code for us.
  3. HTML tags are at the center of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.
  4. Denoted in < and >, the end tag additionally starts with a /
    6.- Attributes contain extra information about the element that you don’t want to appear in the actual content.
  5. WITHOUT THE SPACE AFTER EACH <
    < !DOCTYPE html>
    < html>
    < head>
    < meta charset=“utf-8”>
    < title>My test page
    < /head>
    < body>
    < img src=“images/firefox-icon.png” alt=“My test image” >
    < /body >
    < /html>
1 Like
  1. HTML is hyper text markup language.
  2. HTML is the markup language that is used to define what a website looks like.
  3. We are learning HTML so that we can begin to learn to code and specifically to learn how to tell a computer what to show us on a website.
  4. An HTML tag surrounds an element. The element contains an opening and closing tag and the contents within.
  5. The structure of an HTML tag usually includes and opening tag and a closing tag . Some tags do not need a closing tag.
  6. An attribute is the name for additional information about an element. Attributes do not display on the website.
  7. The anatomy of an HTML document are the “containers” that hold the information displayed. Like a book has a cover an HTML page has a and , the pages are between the and for instance.
1 Like
  1. What is HTML?
    HTML ( H yper t ext M arkup L anguage)
    is a markup language that defines the structure of a Website content

  2. What is HTML used for?
    Is used 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?
    Because is the fundamental language of any kind of virtual structure.

  4. What is an HTML tag?
    Is a command to Open and Close elements

  5. What is the structure of an HTML tag?
    Opening and Close tags.

  6. What is an attribute?
    Attribute is extra information about the element that you don’t want to appear in the front end .

  7. What is the anatomy of an HTML document?

(non used currently) non visible (include most written characters) < Title> (all the visible content)
1 Like

1. What is HTML?
HyperText Markup Language
2. What is HTML used for?
To structure a web page and its content.
3. Why are we learning HTML?
To learn the foundation of websites
4. What is an HTML tag?
The opening and closing of an element that defines how the content is presented
5. What is the structure of an HTML tag?
An opening tag between angle brackets, sometimes with attributes, and a closing tag with a forward slash.
6. What is an attribute?
Attrbutes contain extra information about the element, for example, font size or color.
7. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html>
<head></head>
<body></body>
</html>

1 Like
  1. What is HTML?
    A. Hypertext markup language

  2. What is HTML used for?
    A. HTML is a markup language that defines the structure of your content. Provides content to websites.

  3. Why are we learning HTML?
    A. HTML is the fundamentals of programming languages and will provide us with a foundation to help learn blockchain programming.

  4. What is an HTML tag?
    A. The content for the structure is defined within the tags.

  5. What is the structure of an HTML tag?
    A.

    Content

  6. What is an attribute?
    A. Attributes contain extra information about the element that you don’t want to appear in the actual content. The class attribute allows you to give the element a non-unique identifier that can be used to target it (and any other elements with the same class value) with style information and other things.

  7. What is the anatomy of an HTML document?
    A. Head, Title and body elements

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

  2. What is HTML used for?
    Content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

  3. Why are we learning HTML?
    It’s a foundation for web development.

  4. What is an HTML tag?
    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. The enclosing [tags] can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and

  5. What is the structure of an HTML tag?

5-1. 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.

5-2. 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.

5-3. The content: This is the content of the element, which in this case, is just text.

5-4. 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.

  2. 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. That’s all you need to know for now.

  • <html></html> — the [ <html> ] This element wraps all the content on the entire page and is sometimes known as the root element.

  • <head></head> — the [ <head> ]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> ]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> ]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.

2 Likes
  1. HTML A Hypertext Markup Language
  2. The language is used to structure what is desired to be viewed on a webpage.
  3. We are learning it in order to be able to interface with the backend of our smart contracts or Dapps to interact with blockchains as needed.
  4. An HTML tag is a set of characters used to summon properties and display content on a web page.
  5. A tag is structured with an identifier enclosed in parentheses e.g. , and must be followed up by closing parentheses which normally hold the same content, preceded by a forward / slash e.g. , in order to validate it as a command. The order of tag placement is key.
  6. Attributes allow customization of a tag and must be included in the opening tag. e.g.

  7. An HTML document is comprised of the following:
    The <!DOCTYPE> element - needed to make sure your document behaves correctly
    the element aids speech synthesis and translation tools
    the element includes things like keywords and a page description that you want to appear in search results, CSS to style content, character set declarations, and more.
    the character set element <meta charset="UTF-8>sets the character set your document to UTF-8 which includes most characters from the vast majority of written languages.
    the element sets the title of your page, will appear in the browser
    the element contains all the content that you want to display to web users
1 Like

1 HTML (Hyper text markup language) it’s a technology that let’s you see contents in your browser.
2 To code websites manually
*3It gives a foundation for web development and blockchain development as you use an HTML page as an overlay of a smart contract interface…
4 A tag is what makes the browser recognise what type of content it has to show and in what way.
5 A tag has usually an attribute inside and finishes with a closing
6 An attribute specifies additional properties and content included inside a tag.
7 An HTML page always starts with the tag , it has and where all the info needed to the website that won’t appear as a content (title, descriptions etc), and ends with the where all the content lies. You should ensure the content is contained within the tags and a tag should be closed.

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

  2. HTML is the code that is used to structure a web page and its content.

  3. We are learning HTML because it is necessary to understand the basics of programming before we advance into learning about programming cryptocurrencies.

  4. HTML tags consist of the name of the element in use wrapped in brackets. The closing tag has a / before the name of the element to show its a closing tag.

  5. The structure of a HTML tag is for exapmle

    for the opening tag and

    for the closing tag. The closing tag has a / aswell as the name of the element wrapped in brackets as mentioned in the previous answer.
  6. An attribute contains separate information about the element that you do not wish to display in your content. All attributes must contain the following:
    a. A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
    b. The attribute name followed by an equal sign.
    c. The attribute value wrapped by opening and closing quotation marks.

  7. The anatomy of a HTML document is as follows:

  • <!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> 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/favourite 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.
1 Like

What is HTML?

What is HTML used for?
Hypertext Markup Language: a language made for creating web pages. The language computers use to communicate is HTML. A text which has a link within it is a hypertext, if you click it it will take you elsewhere.

HTML is used for creating web pages and web applications. The programmer through HTML can add graphics, videos and sound to the web pages.

Why are we learning HTML?
HTML is the basic language and if anyone is thinking of becoming more serious about web development or blockchain developer, knowing HTML makes it easier for you to learn other programming languages. It’s beneficial to learn for developers.

What is an HTML tag?
tags < > are used so that the browser can distinguish the tags from ordinary text. Tags commands the browser what to do.

What is the structure of an HTML tag?
Opening tag, content, closing tag.

What is an attribute?
Tags can be used in different ways. A picture may be placed in different places on a page and its size may vary. In order for the browser to know where to place the image and for it to know which image to place, we use attributes.

What is the anatomy of an HTML document?

.

Doctype: informs the browser which version of HTML we are using

html tags: says everything in between these two tags is our html page

head tag: contains data about data. Information about the page. important information.

title tag:: defines the title of the web page. Displayed on the top of the web browser.

body tag*: The actual content of the document. Text, images etc.

1 Like
  1. What is HTML? HTML stands for “Hypertext Markup Language”
  2. What is HTML used for? It is used to structure a web page and its content.
  3. Why are we learning HTML? We need to learn HTML so we can custom build a web page.
  4. What is an HTML tag? It’s the start and the end sign of an element.
    5.What is the structure of an HTML tag? An angled opening bracket followed by the type of the element and followed by a closing angled bracket.
    6.What is an attribute? Extra information about an element that doesn’t get displayed.
    7.What is the anatomy of an HTML document? For some reason, it doesn’t show the code below…
2 Likes

Great answer! Btw, you didn’t answer number 7 :slight_smile:

  1. What is HTML?
    HyperText Markup Language. It is used to structure a web page and the page’s content.
  2. What is HTML used for?
    Structuring a web page and the web page’s content.
  3. Why are we learning HTML?
    To understand the fundamentals of web page building. It is a basic [and essential?] language. Learning HTML yourself can allow you to build your own web page without having to pay another person to build it for you and have the possibility of it turning out incorrectly.
  4. What is an HTML tag?
    They define how your web browser must display and format content.
  5. What is the structure of an HTML tag?
    <content> xxx </content>
  6. What is an attribute?
    An attribute provides additional information about HTML elements.
  7. What is the anatomy of an HTML document?
    <!DOCTYPE html> required preamble.
    <html> </html> The html element wraps all page content and is often known as the root element.
    <head> </head> The head element contains information about data about the page.
    <meta charaset=”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
    <title> </title> Sets the title for your page that will be shown to users when they visit your page.
    <body> </body> Contains all information that will be shown to users when they visit your page.
1 Like
  1. What is HTML?
    This is a code that is used to structure a web page and its content.
    2.What is HTML used for?
    It is used for content that could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.
  2. Why are we learning HTML?
    Because this is a basic code for a web page.
  3. What is an HTML tag?
    Tag makes a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller.
  4. What is the structure of an HTML tag?
    Opening tag, Closing tag, Content, Element
  5. What is an attribute?
    Atribute contain extra information about the element. Atribute of img is src (source), for a is href (hyper reference)…
  6. What is the anatomy of an HTML document?
<html> Here website starts.
 <head>
informations about website
 </head> 
<body> 
content (text, img, links...)
</body> 
</html> Here website ends.  
1 Like
  1. hypertext markup language that defined the structure of your content.
  2. basic format structure of a webpage that interacts with your web browser.
  3. it is the required coding language for building websites.
  4. certain designated content must be tagged beginning and end to appear properly on your webpage.
  5. (the beginning) attribute of some kind
  6. attributes have a class and value. They are additional properties added to the tag
  7. HTML docs are code bits organized into a and both must also end in the corresponding doc
1 Like
  1. What is HTML?
    HTML means hypertext markup language and is a code to structure websites and their content.

  2. What is HTML used for?
    To create websites and structure them.

  3. Why are we learning HTML?
    To get our feet wet into programming by starting with how to create websites.

  4. What is an HTML tag?
    Tags influence how content is displayed.

  5. What is the structure of an HTML tag?
    There is an opening tag and a closing tag.

  6. What is an attribute?
    Attributes contain extra information about the element which don’t need to be seen by others except those working on code.

  7. What is the anatomy of an HTML document?

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

Read this article ( https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics) . While reading, try to answer the following questions.

  1. What is HTML? | HTML (HyperText Markup Language) is a Markup Language that defines the structure of your content. HTML also consists of a series of elements.

  2. What is HTML used for? To structure web pages and their content.

  3. Why are we learning HTML? To create simple websites to interact with our smart contrancts.

  4. What is an HTML tag? | what?

  5. What is the structure of an HTML tag? | For some reason it’s not letting me include the things that are the structure of the tag.

  6. What is an attribute? | Attributes contain extra information about the element that you don’t want to appear in the actual content. Attributes should always include the following:

A space between it and the element name (or the previous attribute, if the element already has one or more attributes).

The attribute name followed by an equal sign.

The attribute value wrapped by opening and closing quotation marks.

What is the anatomy of an HTML document? | The doctype, the element, the element, the UTF-8 element, the element, and the element.

2 Likes

1.) HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content

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

3.) HTML is the basic language to create websites. Later these websites added with JavaScript can be used as a frontend to communicate with the backend.

4.) An HTML tag is an element, which can be used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

5.) The opening tag 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 is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends.

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

7.)

<html>
   <head>... </head>
   <body>...</body>
 </html>
1 Like

1* What is HTML? H yper t ext M arkup L anguage
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? Its the code used to develop web-pages
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.
5* What is the structure of an HTML tag? ex:

My cat is very grumpy


6* What is an attribute? It is extra language used to structure the text within a TAG
7* What is the anatomy of an HTML document? website code, like
1 Like