HTML Reading Assignment

1. What is HTML?

a. HTML is a markup language which interacts with the front-end.

2. What is HTML used for?

a. HTML is used for content creation for front-end development of a certain website.

3. Why are we learning HTML?

a. It gives a basic structure for programming skills and developing a website

4. What is an HTML tag?

a. It is a element which comprised from opening tag, closing tag and content

5. What is the structure of an HTML tag?

a. It consist of an opening tag, closing tag, content and an attribute

6. What is an attribute?

a. It contains additional information regarding the element, that has no actual appearance in the
content.

7. What is the anatomy of an HTML document?

a. it is written in a markup language with individual elements that are combined to form an HTML
page.

1 Like
  1. Hypertext Markup Language - it is a markup language
  2. to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way
  3. To build the front door of our web interface, allowing for a user frendly interface or application within any web browser.
  4. 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. The opening tag, the closing tag, and the content
  6. extra information about the element that you don’t want to appear in the actual content
  7. You cant see most of it here
My test page ... content tags and text ...
1 Like

1/2. hypertext markup language, it is the code for the structure of a website and its content. It is therefor NOT programming language but Markup language.
3. We are learing HTML because,

  • where else to start
  • it is needed to design a webpage/frontend for possible dapps, to engage with the blockchain. We need html to make a nice, userfriendly interface.
  1. we have opening and closing tags, with between brackets the name of the element.
  2. the structuce of a html element consist of a openingtag followed by attributes and content and closed by a closing tag. the complete tag doesn’t need to have content or a closing tag f.e. img
    6 and attribute contains extra information about the element without showing it in the delivered content.
    an attribute always consist of a name and value. there are some rules when setting up an attribute: always have a space between att and element name, att name is followed by = sign, att value is wrapped by “” marks.
    7.the anatomy of a html document is a combination of elements, because elements on there own have little usecase.
1 Like
  1. What is HTML?
    Hypertext Markup Language
  2. What is HTML used for?
    It’s a code to structure a Web Page and its content.
  3. Why are we learning HTML?
    Multiple reasons - it will introduce the concept of programming and it’s structure to new programmers at a good entry point. HTML is currently used to build the Web 2 interface on a GUI for the User to interact with the Blockchain network. This interface is necessary in most Dapps and even if one is not the programmers. An understanding must be acquired!
  4. What is an HTML tag?
    A Tag is used in creating an element that may contain, data, text, or an image, such as

    , <a=href> or

  5. What is the structure of an HTML tag?
    The structure containing the opening tag, that can enclose the attribute, value and text, ending in the closing tag. i.e.

    Hello World

  6. What is an attribute?
    An attribute modifies the behavior of an element, or provides metadata based on the user.
  7. What is the anatomy of an HTML document?
1 Like

1. What is HTML?
markup language not a programming language. Code used to structure web page.
2. What is HTML used for?
It is used to structure a web page and it content.
*It is like when we were in school and have to write an esei. It has a way to do it. we can´t just write letters, we need and structure to follow to take sense *
3. Why are we learning HTML?
We need to study it cause it is a “gate” to interact with the blockchain.
We have the back end which are the Smart Contracts, and we need the frontend which is going to be our simple web programmed with HTML.
4. What is an HTML tag?
Tag is a tool for create an element.
*Imagine a a man in a forest just with an axe (it will be the tag). with the axe he can protect himself, build a house, hunt a wild animal… *
5. What is the structure of an HTML tag?
It is needed an opening tag and a closing tag. The opening tag has this structure and the end tag is the same plus a slash, .
6. What is an attribute?
It contains extra information of the element but it doesnt appear in the actual content.
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? Hypertext Markup Language markup language that defines the structure of your content.
  2. What is HTML used for? A language or code used to structure page s and its content
  3. Why are we learning HTML? So we have the ability to build the pages of a website front end of course
  4. What is an HTML tag? The main parts of our element
  5. What is the structure of an HTML tag? Its the Anatomy of the HTML element
  6. What is an attribute? Contains Extra info about the element that doesn’t appear in the content
  7. What is the anatomy of an HTML document? this is what forms the webpage
1 Like
  1. What is HTML? Hyper Text Markup Language.

  2. What is HTML used for? It is used to enclose or wrap different parts of the content to make it appear or act a certain way.

  3. Learning HTML will make learning other languages such as Solidity somewhat easier.

  4. The tag encloses the content and tells the computer how it will be displayed or what it does.

  5. It must have an opening and closing tag with content.

  6. Attributes contain extra information about the element that you dont want to appear in the actual content.

  7. 1-opening tag, 2- the content, 3-closing tag. All this makes up the element.

1 Like

What is HTML?

  • HTML is a markup language that define the structure of yout content. Is composed by a series of elements that define different part of the content and make it appear or act in a certain way.

What is HTML used for?

  • To define the content of the internet an display certain thing like text or images in the way we want.

Why are we learning HTML?

  • To be able to understand better the other languages.

What is an HTML tag?

  • A tag is a enclosure that makes the text or image hyperlink to somewhere else. Tag can also make the font change and italicize words.

What is the structure of an HTML tag?

  • HTML tag are composed by
    The Opening tag: < p > (“p” in this case is the name of the element)

    The Closing tag: < /p > ("/" this is important to define the closing tab)

    The Content: Is what stand between the opening and closing tag. It can be a text or an image.

    The Element: Is the Content and Opening/Closing tags all together.

What is an attribute?

  • An attribute can be a part of the Element that contain extra information but doesn’t appear in the actual content.

What is the anatomy of an HTML document?

  • The anatomy of HTML consist in all the parts that compose the document like:

< !DOCTYPE html > : Required preamble. Needed to make sure the document work correctly.

< html > < /html > : Root element that wraps all the content of the page.

< head > < /head > : Contain all the stuff you want to include in the HTML but the viewers of the page can’t see. Iclude things like keyword, page description, charater set declaration and more.

< meta charset=“utf-8” > : This set the character your document should use. “utf-8” iclude most character from the majority of languages.

< title > < /title > : This set the title of the page

< body > < /body > : This contain all the content you want to show to the users. Can be text, images, videos, games, audio track or something else.

1 Like
  • What is HTML?
    HTML stands for Hyper Text Markup Language
  • What is HTML used for?
    HTML is used to format or encapsulate and order certain elements in webpages to make them appear and behave in a certain way
  • Why are we learning HTML?
    We are learning HTML so we can hopefully connect our smart contracts and blockchain code to the standard web… And also because it is the basis of many other languages including javascript.
  • What is an HTML tag?
    The HTML tag links the element inside to whatever other attributes are enclosed between the tags
  • What is the structure of an HTML tag?
    An HTML tag has an opening tag in angle brackets and then a closing tag, same as the opening tag with a / in front, also in angle brackets.
  • What is an attribute?
    An attribute is something that is linked to the text or picture in the HTML tag, It could be a link or a style attribute
  • What is the anatomy of an HTML document?
    An HTML document consist of the !DOCTYPE, HTML, HEAD, META CHARSET,TITLE, and BODY tags
1 Like
  1. HTML is not a programming language, but a Markup language. it stands for hyper text markup language.
  2. It is used to create the basic framework of a website.
  3. It is a basic skill which will allow us to make our learnings in blockchain etc embedded in a visual/interactive form.
  4. Tags are used in html to open or close a section. they are like brackets that define what kind of content is to appear within them. for example the tags define the title of a website. whatever text we put in between these tags in the code will appear at the title of the website.
  5. there’s opening and closing tags. they are displayed as explained in my previous answer.
  6. attributes contain extra information that we do not want to be displayed in the actual content.
  7. the very basic anatomy is:

!Doctype, html opening tag, head (open and close), body (open and close), html ending tag

1 Like
  1. What is HTML?

  2. A markup language that defines the structure of your content.

  3. What is HTML used for?

  4. It is used to organize the text on a website

  5. Why are we learning HTML?

  6. It’s foundational to web design

  7. What is an HTML tag?

  8. A tag is what’s used to make an element to do something to the text.

  9. What is the structure of an HTML tag?

  10. Brackets before and/or after some text

  11. What is an attribute?

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

  13. What is the anatomy of an HTML document?

  14. All fo the HTML Tags you need to make a working webpage

  15. My test page
  16. My test image

1 Like

1. What is HTML?
HTML is a markup language that is used to structure a web page and all of its content.

2. What is HTML used for?
It is used to define the structure of a web page and all of its content.

3. Why are we learning HTML?
We are learning HTML to get a proper foundation of web development. Web development will be key to build a front end for our smart contracts and DApps. Moreover, web development is a good starting point to start developing coding skills. Many companies start their junior employees off as web developers to build up a good base before moving on to more complex teams.

4. What is an HTML tag?
An HTML tag is a part of an element which marks the beginning and end of the element. Within the opening tag we can add attributes which can define that element. Between the opening and closing tags are where we put the contents of that element.

5. What is the structure of an HTML tag?
The structure of an HTML opening tag is the opening angle bracket, name of the element, attribute of the element, and a closing angle bracket.
The structure of an ending tag is simply an opening bracket, forward slash, name of element, and a closing angle bracket.

6. What is an attribute?
An attribute is extra information that you don’t want to appear in the actual content of the element. This can include things such as class, href, src, style, width, etc.

7. What is the anatomy of an HTML document?
The anatomy of an HTML document is:

1. html
2. head
3. title
4. body
1 Like

What is HTML?

HTML is an abbreviation for Hypertext Markup Language. It should not be confused for a programming language but rather a text-processing language used to define websites.

What is HTML used for?

HTML is standard for creating and giving structure to web pages and applications.

Why are we learning HTML?

It is imperative that we have an understanding of how websites are built and structured and how this ties to blockchain programming when we create smart contracts and DApps.

What is an HTML tag?

An HTML tag is an essential part of an element. It defines the beginning and the end of said element and not having these results in errors.

What is the structure of an HTML tag?

HTML tags have a very simple structure. It should always start with a left angle bracket (<) called an opening angle bracket followed by the name of the element and ending with a right angle bracket (>). An element consists of two tags, an opening tag and a closing tag. Note that the closing tag should contain a forward slash (

) to mark the ending of the tag and failing to include this will give you strange results.

What is an attribute?

An attribute is part of an element which is used to include additional information that is not displayed as part of the content on your website. It is used to define and modify the content within said element.

What is the anatomy of an HTML document?

Consists of 4 main components:

  • DOCTYPE declaration to ensure your document behaves correctly
    -HTML which is the root element
    -HEAD which includes essential information which is not displayed on your website
    -BODY which as the name suggests contains the body of information you want to display on your website
1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    It is not a programming language. It is code that is used to structure the content on webpages.

  3. Why are we learning HTML?
    Because I am new to programming and its good to start with the basics first.

  4. What is an HTML tag?

  5. What is the structure of an HTML tag?
    Opening tag states where the element begins and consists of <>.
    Closing tag states where element ends, and has to include the / before the element name within the <>.

  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?
    Root element
    Head element
    Title element
    Body element

1 Like

1.HyperText Markup Language is a mark up language that defines the structure of your content.
2. It allows the user to create and structure sections,paragraphs, headings, links, and blockquotes for web pages and applications.
3. Learning HTML can be used for situations like formatting a blog or email., working with a CMS, embedding external content on your site, and creating usable content.
4. HTML tags are the hidden keywords within a webpage that define how your web browser must format and display the content.Most tags must have two parts, an opening and a closing part.
5. Generally, an HTML document is composed of three parts, a line containing a opening tag, closing tag, and content tag. Which when combined together comprise the element.
6. Attributes contain extra information about the element that you don’t want to appear in the actual document.
7. Every HTML document Must have two elements. Head element which provides page title and general page formatting commands and a Body element which puts the main HTML text in this part.

1 Like
  1. Hyper text markup language

  2. For basic structure and formatting of web pages.

  3. To ensure that we can build something to use online with our blockchain knowledge.

  4. Defines the fonts, sizes, sections, headers, paragraphs etc.

  5. Element, content, opening and closing tags.

  6. Information about the element that doesn’t appear in the content.

  7. , , ,
1 Like
  1. It is a markup language that defines the structure of your web content
  2. It is used to enclose or wrap different parts of your content to make it appear or act a certain way
  3. To get an idea of front end design
  4. point to the beginning and end of an HTML element.
  5. Opening tag, content, and closing tag
  6. Extra information about the element that you don’t want to display in the actual content
  7. It contains: ,,,
1 Like
  1. Hyper-text Markup Language, a defined structure on how to write code in a way to display or give content an action in a specific way.

  2. to display or give content and action in a specific way.

  3. because every webpage uses HTML to display information in a browser.

  4. the beginning and end of an HTML element, they give the content attributes.

  5. an element enclosed in angle brackets

  6. extra information about the element that isn’t displayed in the content

  7. the anatomy is the basic structure of how an HTML document is created and organized. The order is the DOCTYPE, Root Element, Head, Character Set, Title, and Body.

1 Like
  1. What is HTML?
    It is not a language. It is a different type of language that organizes text and pictures on a website.

  2. What is HTML used for?
    HTML organizes text and pictures in a website.

  3. Why are we learning HTML?
    It’s good to know and web sites are important to learn because it is easy to understand other things.

  4. What is an HTML tag?
    It’s something the computer recognizes to do something specific.

  5. What is the structure of an HTML tag?
    Starts with and ends with .

  6. What is an attribute?
    Something you don’t want to put inside the tag but it is needed to refer to something that is needed.

  7. What is the anatomy of an HTML document?
    HTML needs a beginning and closing head and then the body which is the content.

1 Like

1 & 2. HTML is not necessarily a programming language. It stands for Hyper Text Markup Language. It consists of elements and helps structure webpages and its content.
3. We’re learning HTML to understand how to build things that work, such as websites that we can create to access the blockchain.
4 & 5. An HTML tag is where the element begins (starts to take affect) and ends. It is structured with angle brackets <> and a front slash for the closing tag </>
6. An attribute is extra information about the element which is hidden from the viewers. Attributes are written within the opening tag.
7. < !DOCTYPE html>
< html> < /html>
< head> < /head>
< meta charset=“utf-8” >
< title>< /title>
< body>< /body>"

1 Like