HTML Reading Assignment

  1. What is HTML?
    HyperText Markup Language - formatting language for web pages
  2. What is HTML used for?
    HTML provides instructions for computers of how to read and display content
  3. Why are we learning HTML?
    We are learning HTML to provide a foundational infrastructure to create spaces for more complex applications to live
  4. What is an HTML tag?
    Tags are endpoints of HTML elements, which are individual lines of code
  5. What is the structure of an HTML tag?
    An opening tag will be a command surrounded by triangular brackets, and the closing will have hte same command with a “/” before the word within the brackets.
  6. What is an attribute?
    Finer instructions within a tag on an element.
  7. What is the anatomy of an HTML document?
    Opening, body, close
1 Like
  1. What is HTML?

Hypertext Markup Language

  1. What is HTML used for?

HTML is a language that is used to define the structure of the content (be it text or images) that you are putting in the webpage

  1. Why are we learning HTML?

Most Dapps contain webpages that use blockchain technology (and smart contracts) to run their tasks so it is essentially to know how to use and develop using HTML.

  1. What is an HTML tag?

A HTML tag is used to state opening and closing of the structure of the different parts of the content in the webpage, and also defines the beginning and end of all the effects to the content inside the webpage.

  1. What is the structure of an HTML tag?
  1. What is an attribute?

An attribute provides extra information about the element that is hidden from the webpage itself (it’s the property of an element.

  1. What is the anatomy of an HTML document?

Opening tag, content, closing tag

1 Like

HTML is an acronym for “Hyper Text Markup Language”. Consists of many elements, or parts of a webpage.

HTML is used to structure one’s content as one defines it. This is represented visually by webpages but can also include other data and applications (example being a help menu).

We are learning HTML because in the crypto world a lot of websites link and/or communicate with the network directly. The ability to understand and modify these programs is an incredible asset.

An HTML tag is used to modify or create elements.

An HTML tag consists of a pair of identifiers, opening and closing, that structure content such as a header or list element.

An attribute is extra information regarding the element which doesn’t need to be displayed with the content. The logic behind it is very similar to creating a variable.

An HTML document comprises of a series of elements:

  • < !DOCTYPE html > - Used to ensure correct behavior
  • < html> - Known as the root, encompasses all content
  • < head> - Known as the header, contains information such as keywords and search engine descriptions
  • < meta charset=“utf-8” > - This essentially defines the available character set, utf-8 covers pretty well everything
  • < title> - Pretty straight forward but this is the title, used for browser tab information and bookmark descriptions
  • < body> - This is where “all” content is displayed (images, text, audio, everything)
1 Like
  1. What is HTML?
    It is the code that determine the structure of a web page’s content.
  2. What is HTML used for?
    HTML is used, thanks to its elements, to make content appear a certain way such as big font, underline, hyperlink…
  3. Why are we learning HTML?
    It is the basic of coding and it is important to understand the fundamentals. We will be creating website that interact with the blockchain. Furthermore, we will be creating applications that interact with smart contracts and this will actually the frontend which is a small website.
  4. What is an HTML tag?
    It is the name of the element. It defines where the element starts to take effect and where it ends.
  5. What is the structure of an HTML tag?
    It is wrapped in opening and closing angle brackets for the opening tag and include additionally a forward slash before the element name for the closing tag.
  6. What is an attribute?
    Attributes contain information that should not appear in the content
  7. What is the anatomy of an HTML document?
    image
1 Like
  1. The language that decides how the content structure on a page will appear.
  2. For building a page and the way it appears.
  3. To be able to organise the layout of dapps at the front end
  4. An effect of a command visible to the viewer of the page
  5. Wrapped in opening/closing brackets to signal the end of the command.
  6. info only seen by the editor
    7.Titles,subtitles, images, headings, paragraphs, links.
1 Like
  1. Hypertext Markup Language
  2. HTML is a language used by web pages to arrange ther display of information to the user.
  3. We are learning HTML because it is the basic langage of the internet needed before moving onto more complex languages
  4. The HTML tag defines the document as an HTML document to the browser.
  5. The structure of the HTML tag is to open and to close
  6. An attribute specifies properties in addition to whatas inside the tag.
  7. An HTML page always starts with a open html tag then an open body tag to desplay the information on the web page. the close body and close the html.
1 Like
  1. What is HTML?
    It is a markup language that defines the structure of your content. And can be used to make a word or image hyperlink to somewhere else.

  2. What is HTML used for?
    It is used to define the display structure of our content on a web page.

  3. Why are we learning HTML?
    So that we can be able to give a good and beautiful structure to our content.

  4. What is an HTML tag?
    It is a command used to either indicate the beginning of the end of an element.

  5. What is the structure of an HTML tag?
    It contains the name of the element. For example

    is used to indicate where a paragraph begins.

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

  7. What is the anatomy of an HTML document?

    • Doctype, <html> element, <head> element, <metacharset="utf-8">, <title> and the <body> element.
1 Like
  1. Markup language
  2. to display content on a web page
  3. we need to understand the basics of markup language and coding first.
  4. defines the beginning and ending of an element
  5. <p>content</p>
  6. extra information about the attribute
  7. opening tag, element, attributes, content, closing tag
2 Likes
  1. What is HTML? HTML (Hypertext Markup Language) is the code that is used to structure a webpage and its content. It defines the structure of the content.

  2. What is HTML used for? HTML is used to structure the content of webpages.

  3. Why are we learning HTML? To learn the basics of coding

  4. What is an HTML tag? The tags represents where the element begin and ends. The tags are wrapped in angle brackets.

  5. What is the structure of an HTML tag? The opening tag is wrapped in opening and closing brackets. The closing tags are the same with the exception of a forward slash before the element name.

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

My test page

My test image

1 Like
  1. What is HTML?
    Hypertext markup language, code used to structure a web page and its content
  2. What is HTML used for?
    To structure the content of webpages
  3. Why are we learning HTML?
    An entry point to learn the basics of coding
  4. What is an HTML tag?
    The start and end of an element
  5. What is the structure of an HTML tag?
    The opening tag is wrapped in opening and closing brackets

    and the closing tag is the same but with a forward slash before the elements name

  6. What is an attribute?
    It contains additional information about the element that you don’t want to show in the visible content
  7. What is the anatomy of an HTML document?

!DOCTYPE html
html
head
meta charset=“utf-8”
title
body

1 Like

What is HTML?

  • It is a code

What is HTML used for?

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

Why are we learning HTML?

  • Because it is the foundation of developing the web.

What is an HTML tag?

  • It is used for creating elements.

What is the structure of an HTML tag?

  • The structure is opening and closing.

What is an attribute?

  • It contains extra information about an element that you don’t want to appear in the content.

What is the anatomy of an HTML document?

  • opening tag
  • closing tag
  • content
  • element
1 Like
  • 1 HTML is the Hypertext Markup Language
  • 2 HTML is used to structure a website and its contet
  • 3 I am guessing that it is a good basis for learning to code and has lots of similarities to other programming languages
  • 4 In the example shown in the PDF the tags make the text in between

    a single paragraph

    …more exactly, they define the beginning and the end of that paragraph.
  • 5 In the example, for the opening tag it is : opening bracket - name of the element - closing bracket. And for the closing tag it is: opening bracket - forward slash - name of the element - closing bracket.
  • 6 An attribute allows you to target elements, As far as i understood, you can apply additional information to those elements, you assigned the attributes to.
  • 7 It seems like that would be: < html > < head > and < body >
1 Like

1.) HTML (HyperTextMarkupLanguage) is a Code that is used to structure a website and its content.
2.) It is used as a language to structure website with tags.
3.) As an example… when we are coding smart contracts, we can link them to a webpage to have a GUI.
4.) An HTML Tag is like an command… there are many of them… with

you can open an paragraph tag.
5.) As an example the paragraph tag: You got an opening tag like

Everything inside between those is the Content

is the ending tag
6.) Attributes contains extra informations that you dont want to have in the Content.
7.) DOCTYPE html,
html
head
meta charset=“utf-8”
title
head
body
img
body
html

Copied it without those >< … its just the example from the Mozilla page to learn HTML Basics.

1 Like
  1. Hypertext Markup Language.
  2. The code used to structure a web page.
  3. Allows you to define your content to appear a certain way.
  4. Opening and closing brackets that state where the element begins and ends.
  5. <p> content </p>
  6. Extra info about the element that you dont want to appear in the content.
  7. The way individual elements are combined to form an entire HTML page.
1 Like

Why are we learning HTML?

HTML is necessary to understand when building websites, blockchain developers should be able to build websites if and when needed, making HTML a good resource to understand.

What is an HTML tag?

A tag is a marker that encapsulates an element and it’s attributes in HTML. A tag for header will contain the header inside of it. A tag for body will contain the body.

What is the structure of an HTML tag?

<tagname> value </tagname> or <tagname>

What is an attribute?

An attribute is a detail about the element that changes it in some way, color, font, hight. It is included in the opening tag of an element.

What is the anatomy of an HTML document?

An HTML document must declear at the beginning followed by all information inside the tag. Nested inside this element are all other elements of the html code.

1 Like
  1. HTML is a markup language that defines the structure of what you create.
  2. HTML is used to make texts look in their desired way.
  3. So we have a basic understanding of how websites work.
  4. this thing: <p>.....</p>
  5. its <p> the text and then finally ending with </p>
  6. An attribute is like a note that actually doesn’t appear on the text.
1 Like
  1. HTML it’s the code to structure a web page and its content
  2. To structure the content of a web page
  3. To create the frontend of ours future Dapp
  4. A tag is use to tell the browser how to print the content inside of these tags
  5. <tag>content<\tag>
  6. It’s use to provide additional information about an element.
  7. Html tag
    Head
    Body
1 Like

1.HTML is a markup language which gives your content the appearance you choose or let it do specific things you want

2.HTML is used to create websites and build their content.

3.We are learning HTML because it is important basic knowledge and it will help us later on.

4.HTML tags are used to give instructions to the website. For example: if you want one word in your text to appear in a different way than the others you have to specify this with a tag and the matching codeword.Besides appearance you tag the HTML root element, the page title the body and more. Each tag has its own function and they allways come as a pair(one in front and one at the end )to build an element.Everything between these two is affected or included in the specific function of the tag.

5.The tag has to wrapt up the to-change-content like

< example>example< /example> (just without the space after the opening brackets).

As mentioned before everything between this tag pair is affected by the function of the tag.

6.Attributes provide additional informations about the elements they are used in.

They have to be written in the opening tag and come as a pair of a name and a value.

7.The anatomy of the HTML document is the correct build up of the webpage. The collection of the elements of the webpage builds the anatomy of it.

1 Like
  1. Hypertext Markup Language is a programming language that lets the developer display text, images and links.
  2. It is primarily used for formatting and structuring websites.
  3. We learn HTLM as it is the basic foundation of front end development that will interact with the smart contracts we create later on.
  4. A set of instructions or identity we give the text in order for the browser to recognize and interpret.
  5. <html> tags are used for opening and closing documents.
  6. Attributes are element modifiers that help create color, backgrounds etc.
    7.Opening tag <p> (TEXT) </p> closing tag.
1 Like
  1. A programming language for structure web page and its content,content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

  2. HTML 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. 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, take the following line of content:

  3. If you want to build an application to interact with smart contract ,you need to use a programming language to build the website , javascript is this kind of language also easy to learn and use for beginner.

4.You can use tag to define a web content’s attribute .

5.< element attribute> elment </ element attribute>.

6.Attributes contain extra information about the element that you don’t want to appear in the actual content.so a element has a atrribute name and value.

  1. at least<!DOCTYPE html>,<html>,<head><meta charset="utf-8">,<title><body>and their closing tag.
1 Like