HTML Reading Assignment

  1. What is HTML?
  • HTML (Hypertext Markup Language)
  1. What is HTML used for?
  • HTML is the code that is used to structure a web page and its content
  1. Why are we learning HTML?
  • It’s good to learn HTML as a foundation for web and blockchain development.
  1. What is an HTML tag?
  • An HTML tag is the definer for the markup language. Basically instructions that we give to a website
  1. What is the structure of an HTML tag?
    a. Opening Tag

    : 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. Basically where the paragraph begins.
    b. 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
    Basically where the paragraph ends
  2. What is an attribute?
  • An attribute in HTML contains extra information about the elements that you can change or modify to provide greater information
  1. What is the anatomy of an HTML document?
    a. doctype> - sets rules for the HTML page to follow
    b. html> - wraps the contents on the page
    c. head> - contains page info that is not content. (keywords, page description, css, character set, etc…)
    d. body> - contains the contents of the page ( text, images, video, etc,)
    e. meta charset=“utf-8”> - character set of the document, to handle textual content
    f. title> - sets the title of the page, which appears in the browser tab
1 Like
  1. HTML stands for Hyper text Markup Language.
  2. HTML is used to structure a web page and its content.
  3. To be able to create a website (a web interface) that is able, subsequently, to communicate with our smart contract.
  4. The tag is used to create an element that makes up the web page.
  5. Opening tag and closing tag (then it depends on the type of tag, for example for img there is no closing tag).
  6. Attributes contain 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 >My test page< /title >
< /head >
< body >
< /body >
< /html >

1 Like
  1. HTML - Hypertext Markup Language

  2. It is used to control/design/construct
    text and images on a browser webpage.

  3. it is a good starting point into coding giving some basic function construction. Learning HTML is also a good starting point as coin/currency programming is web based(Web3) and it will give a good background of fundamentals and general grounding before you go into more in-depth coding.

  4. It is the “Prefix” and “Suffix” of an element.

  5. arrangement of and relations between the parts are to encapsulate and manipulate specific data/information (of the elements) an example below:

  1. An Instruction that contains extra information about the element that should not visually appear in the content.

<!DOCTYPE html>
Opening root element <html>
  <head> all non-visible content to the viewer that optimises the page. and a few otherthings I dont understand yet :)
    <meta charset="utf-8">  The "MASK" over the character set allowing it to be "universally" adaptable.
    <title></title> this sets the "Title" for the document for filing and searching  actions.
  </head> Im not sure of this part yet.
  <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.
    <img src="images/firefox-icon.png" alt="My test image"> the image element
  </body>
Closing root element </html>

8. Don't trust... Verify!
1 Like
  1. What is HTML?
    HTML is the instructions that structure a website and its format
  2. What is HTML used for?
    HTML is used for the structure and design of a website, so the content has a layout that makes sense and is readable etc.
  3. Why are we learning HTML?
    Because any application that needs interaction on the internet needs to have an interface, most of the time that interface would be a website or webapp.
  4. What is an HTML tag?
    The tag is what makes the enclosed text behave in a certain manner, bold text, links etc
    A tag is used to create elements within the html code
  5. What is the structure of an HTML tag?
    doc type
    elements
    headers
    charachter sets
    titles
    and body
  6. What is an attribute?
    An attribute adds specific information such as hyperlinks
  7. What is the anatomy of an HTML document?
    doc type
    elements
    headers
    charachter sets
    titles
    and body
1 Like
  1. HTML is hypertext markup language

  2. to hypertext the markup language

  3. so we can create something and see it

  4. a tag is used to create an element with angle brackets. an element is a part of a webpage.

  5. hello world

edit: oops it actually takes html so yeah there’s a opening and closing tag around content to create an element.

  1. a note you don’t want to appear in the page

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

1 Like
  1. HTML is not a programming language. It is a markup language that defines the structure of your content.
  2. It’s used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
  3. Because it’s the basic building block, the foundation on which you build.
  4. A tag denotes the start and end of a section in HTML, like a heading, paragraph, table.
  5. A tag starts with an opening , has usually an attribute inside and finishes with closing with a forward slash
  6. 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. Always start with:
<!DOCTYPE html> is basically just needed to make sure your document behaves correctly.
 <html>  This element wraps all the content on the entire page and is sometimes known as the root element.
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.
<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.
the [ `<title> This sets the title of your page
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
1 Like

Greetings @linchyde ! A very warm welcome and thank you for posting your first answer on the forum. Hope to see you around as you finish the courses. If you are stuck in any assignment or need help clearing doubts, feel free to reach us out here. We are always there to help :slight_smile:

Happy Learning! :smiley:

1 Like
  HTML (Hypertext Markup Language) is a markup language that defines the structure of contents of a web document. HTML is used to create web documents/pages that are viewed in a web browser on the world wide web:)
 An HTML document is made up of elements which contain opening and closing tags, content, and attributes. HTML tags contain pieces of content and tells the content what to do. Tags include open and close angle brackets and a forward slash with the closing tag. Here's an example of an opening tag: <p> and a closing tag: </p>. The content is just that. It is the content within the element which is text. And attributes define the properties of the element and contain additional information about the element that you don't want to appear in the actual content. HTML attributes always go inside the opening tag of the HTML element.
  As an aspiring blockchain developer it is important to know how to build a website. When we get into developing dapps, having an understanding of the front end/user experience is a necessary skill.
1 Like
  • What is HTML? Hypertext Markup Language.
  • What is HTML used for? To structure the content of a document so that it can be read by a web browser to present information on a webpage.
  • Why are we learning HTML? Because html is a way for programmers to structure their developments for the users.
  • What is an HTML tag? It identifies and an element and has an opening and closing component that tells the browser when an element starts and finishes.
  • What is the structure of an HTML tag? It has an opening <> some content and a closing </>
  • What is an attribute? It provides more information about the element, such as making the contents appear in ‘strong’ typeface.
  • What is the anatomy of an HTML document? It begins with a declaration <!Doctype html>, followed by a container , then header information which includes information useful to web technology and no so much to the reader of the document, followed by the body which is of interest it the website visitor.
1 Like

Ans:
1 - HTML (Hyper Text Markup Language). It is code designed to structure a web page’s content display order, including headings, sub-headings, paragraphs, images, alternate text, lists and (redirect) link(s). (hypertext reference)
2 - HTML is used for organizing and ordering a web page’s element placement.
3 - We are learning HTML so we can build and construct web pages. It is these type of interfaces that we will eventually learn, build later, for the purpose of interacting with the blockchain. (Smart Contracts)
4 - HTML ‘tags’ are a part of the element used at the beginning and the end. They signal the opening and closing of the elements contained content and/or attribute(s) constructions encapsulated. They define the starting point of an element and its ending.
5 - The structure of a HTML tag is a prefix, of the contents function, wrapped in open and closed brackets. This states the operation of the contents purpose. For eg. “p” = paragraph, “h1” = heading 1 ect.
6 - An attribute contains additional command information, such as what the texts form is (ie. Arial), but is wrapped within the opening and closing tag prefix block. This information does not show forth on the user interface (UI) web page output.
7 - The anatomy of HTML is the stringing together of various elements in the order of which they are to be viewed on the output display. (UI - webpage)

1 Like

HTML is a markup language that defines the structure of your web site content.
HTML is used to structure the way a web pages is seen.
HTML consists of a series of which are used to to enclose different part of the content in order for them to appear or act in a certain way.
A tag defines the opening and closing of an element


Attributes contain extra information about the element that you don’t want to appear in the actual content. The attribute allows one to give the element a non-unique identifier that can be used to target it with style information and other things.
<!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>


As one can see from the example of HTML basics from Mozilla each elements has a opening and closing element except for the preamble .
<html> wraps the content of the whole page
<head> acts as a container for the all the stuff you want to include on the <<htlm page but that you you are not showing to your pages view.  This includes things as keywords and page description you want to show in search results 
<meta charset="utf-8"> sets the character set your doc should use
<title> </title> this sets the tittle of the page that appears in the browser tab the page is loaded in
<body> this contains all the the content one wants to show to the web user, should it text , images or video
1 Like
  1. HTML is a mark up language

  2. It is used to enclose or wrap content to change the way it is displayed

  3. Basic programming knowledge

  4. Tag is a description of what the element is going to be

  5. Open tag, content, close tag

  6. Attribute provides additional information about the element but are not included in the actual content.

  7.   <html>
    
         <head>....<meta charset="utf-8"> <title>...</title> </head>
         <body>....</body>
    
          </html>
1 Like

What is HTML?
HTML is a markup language.

What is HTML used for?
For making the interface on websites. It does this with providing a language we humans can structuring the content in a certain way we want it to be shown to the users of the website.

Why are we learning HTML?
To be able to make interfaces that users can use to later interact with our backend code on the blockchain. HTML and later Javascript is one of two important steps when creating dapps that not only need the code on the blockchain, it also needs an interface that users can interact with.

What is an HTML tag?
Tags are used to open or close an HTML element.

What is the structure of an HTML tag?
<”element name”> - To open an element

</”element name”> - To close an element

What is an attribute?
An attribute is extra non-visible information about the element.

What is the anatomy of an HTML document?
First we have the DOCTYPE = html which is some rules that are checking the html document to follow good practice. More important in previous years than today.

Then we have a root element in html that wraps all content that should exist to build the website.

The head element is where all the information about the website exists that we don’t want to show as actual content on the page for the users.

The body element is where all the actual content of the webpage we want our users to see is contained.

1 Like

Welcome to the discussion about the first assignment.

Leave your answers to the questions below in this thread. If you have any questions or you want to discuss something connected to the assignment feel free to do it in this thread as well, but please everything to the topic of HTML!

  1. What is HTML?
    HTML (Hypertext Markup Language) is the standard language used to create web pages.

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

  3. Why are we learning HTML?
    We are learning HTML because it is fundamental to programming codes.

  4. What is an HTML tag?
    An HTML tag is is an element of HTML that makes a word or image hyperlink appear somewhere else, italicizes words and makes font sizes smaller or bigger.

  5. What is the structure of an HTML tag?
    HTML tag contains the beginning and end of an element.

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

  7. What is the anatomy of an HTML document?
    HTML document contain DOCTYPE, HTML, head, title and body.

1 Like
  1. What is HTML?
    HyperText Markup Language

  2. What is HTML used for?
    Formatting and describing text and content for use in webpages

  3. Why are we learning HTML?
    To build web interfaces which will output the results of the code we produce

  4. What is an HTML tag?
    A defined element used to describe and categorize a piece of content

  5. What is the structure of an HTML tag?
    A name of the element, enclosed in angled brackets - and usually paired with with a matching closing tag. The closing tag will look the same, but will have a backslash in front of the element name to denote it is a closing bracket. note that some tags are only single tags (called self-closing tags, which have no second closing tag) - these will contain a backslash.

  6. What is an attribute?
    an attribute is a pre-defined feature of that element (such as “height” “width” or “src”) which give further ‘instructions’ for that element

  7. What is the anatomy of an HTML document?
    An HTML doc follows the web’s Document Object Model (DOM)
    The <HTML> tags contain a <head> and a <body> element.
    That <head> element should contain a <title>, along with other instructions on how to display the document (the html version used, links to resources such as stylesheets and scripts, and meta information).
    The <body> element contains all the content for the webpage - text, images, links and media

1 Like
  • What is HTML?
    HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
    HTML is not a programming language; it is a markup language that defines the structure of your 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, or act a certain way.

  • 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.

  • Why are we learning HTML?
    HTML is the start point to learn about Web Development

  • 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.

  • 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.

  • What is an attribute?

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

  • What is the anatomy of an HTML document?

    The main parts of HTML element are:
    The opening tag; The closing tag; The content; and The element: The opening tag, the closing tag and the content together comprise the element.

1 Like

HTLM is the language used to build static websites. It is the basis for JavaScript, and further, Solidity.
An HTML tag is a part of the element; the opening tag is the name of the element and indicates where it begins; the closing element indicate where the element ends.
A HTML’s structure is an opening bracket <, followed by the name of the element, and ending with a closing bracket >
Attributes contain information that is not displayed on the web page.
The anatomy of an HTLM document is indicated below:

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

  2. What is HTML used for? HTML
    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?
    to proper be able to design a websites and. be able to manipulate them as we want

  4. What is an HTML tag?
    is what define the content you have inside of them
    also you have to close the tag </tag

  1. What is the structure of an HTML tag?
    also you have to close the tag </tag
  1. What is an attribute?
    Attribuite provides extra information about the element

  2. What is the anatomy of an HTML document?
    < !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. The language that define the structure of the content and web page

  2. For structuring the content like putting things in paragraphs, new lines, image hyperlink somewhere, change font, etc. Puts content in elements to form the structure.

  3. Is it is part of the building blocks of learning programming

  4. It is the root that holds all other html elemtns

  5. opening tag, content, closing tag =

    hello

  6. Extra info that doesn’t appear in the actual content. Can be used for style info or other stuff.

1 Like

1 markup language - defines structure of content
2 creates static sites i.e. txt pictures
3 it helps us recognize other languages easily and web development
4 hyper text markup language
5 opening tag content closing tag wrapped in element
6 an attribute provides information i.e. word emphasis location
7 doctype

wraps content aka root element what want in but not show reader i.e helps with search results allows for most characters in all languages title body> content or embeds image alt descriptive txt heading paragraphs