HTML Reading Assignment

  1. What is HTML?
    Hypertext markup language
  2. What is HTML used for?
    It si the code that is used to structure a web page and its content.
  3. Why are we learning HTML?
    good entry level use of code to understanding more complex processes for creating apps/contracts.
  4. What is an HTML tag?
    a tag is a set of characters constituting a formatted command for a Web page.
  5. What is the structure of an HTML tag?
    tags have an opening and a closing there are similar except that the closing tag includes a " / " forward slash
  6. What is an attribute?
    An attribute is used to define the characteristics of an HTML element and is placed inside the element’s opening tag
  7. What is the anatomy of an HTML document?
    Here is the basic format for a web page:
<!DOCTYPE html>
<html>
  <head>
        <title>...</title>
  </head>
  <body>
    ...
  </body>
</html>
2 Likes
  1. HTML (Hyper Text Markup Language) It is a markup language that defines the structure of your content.
  2. To structure a web page and it’s contents such as paragraphs, bullet points, images and data tables.
  3. It gives us an understanding of how basic websites are done.
  4. It designates where an element’s content starts and ends.
  5. Consists of the name of an element (i.e.P) wrapped in opening and closing brackets.
  6. It contains extra info about the element that you don’t want to appear in the actual content.
  7. Doctype ID's document as HTML
HTML Element - Wraps all content Head Element - Container for all non-content, but included in html doc such as keywords, page description, etc. Character Set - Sets the document character set Title Element - Sets the title of your page, which appears in browser tab, etc. <'body> Body Element - Contains all the content that you want to show to web users when they visit your page, i.e. text, images, etc.
1 Like
  1. It is a markup language that defines the structure of certain elements.

  2. It is used for web pages to make them look better and reference better.

  3. T0 learn the basics of programming and the logic used.

  4. Tags demarcate the beginning and end of an element.

  5. It consists of elements, including attributes applicable to certain content.

1 Like
  • What is HTML?
    It is a markup language that defines the structure of certain elements. Hypertext Markup Language

  • What is HTML used for?
    To create web pages and make them easier to use and interact with.

  • Why are we learning HTML?
    To be able to use blockchain coding on websites and make it interactive with the web.

  • What is an HTML tag?
    A tag defines the beginning and end of an elements and what markup it should have.

  • What is the structure of an HTML tag?
    It starts with an opening tag, followed by the content and then a closing tag.

  • What is an attribute?
    It is extra information about an element, which you do not want to appear as content.

  • What is the anatomy of an HTML document?
    It is how individual elements combine to form a web page, for example, Document type, html element, paragraph elements, title, body etc.

1 Like
  1. What is HTML?
    HTML stands for Hyper Text Markup Language. It’s the standard markup language for creating web pages.

  2. What is HTML used for?
    It’s used to structure the content of web pages.

  3. Why are we learning HTML?
    Because HTML is the main building block that will allow us to work other languages like CSS and Javascript. These languages allow us to add style and dynamic functionality to our websites.

  4. What is an HTML tag?
    An HTML tag is used for creating elements.

  5. What is the structure of an HTML tag?
    The structure consists of a set of angle brackets with the type of element we want to use to wrap our content.

  6. What is an attribute?
    An attribute identifies and add information to elements.

  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
  1. Hypertext Markup Language is a code, used for creating static websites
  2. Building statitic websites for text, images,…
  3. To understand basic codes and to learn other programming languages easier like java or solidity
  4. There is an opening an closing tag which are telling what to do with the content betweent them two
  5. Name of the element in one closing and one opening angle brackets. The closing tag has also a forward slash in front on the element
  6. All elemts can have atrributes (how they work I didn’t really understand yet)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> </title>
</head>
<body>

</body>
</html>
1 Like
  1. What is HTML?
  • It stands for HyperTextMarkupLanguage
  1. What is HTML used for?
  • HTML is used for organizing text/data/images/forms on a webpage and making it readable/translatable for the browser parser.
  1. Why are we learning HTML?
  • As programming for Blockchain involves interaction with the so called Front-End, which is the webpage in your browser, HTML is the alphabet of being able to create/program this front-end to further fill it with interactive that JavaScript allows
  1. What is an HTML tag?
  • It is root of the HTML document. Also it is the “keyword” that allows the browser to distinguish normal text from the text that should be formatted for a specific purpose/display in the browser.
  1. What is the structure of an HTML tag?
  • We open the tag place the contents and then we close it.
  1. What is an attribute?
  • it is a special key-word that controls a tag’s behavior
  1. What is the anatomy of an HTML document?
  • Markup
  • Head (title, CSS source file links, JavaScript source file links)
  • Body
  • Sections
  • Footer
  • JavaScript links
1 Like
  1. HTML is a markup language.
  2. HTML is used to enclose a portion of text to appear or act in a set way, creating structure in web content.
  3. We learn HTML to enrich web developments.
  4. HTML tags define parts of the content and are wrapped in < >.
  5. An element begins with an opening tag, followed by content, next followed with the closing tag. An attribute can be included within the opening tag. A nesting element is an element within an element.
  6. An attribute is an additional piece of information that begins with a space between itself and the element name, is followed by an equal sign, and wrapped by open and close quotation marks.
</html)
1 Like
  1. HTML is Hypertext Markup Language.
  2. HTML is the code used to structure the content of a web page.
  3. We learn now HTML so we can use it later in building smart contracts .
  4. A HTML tag is used for creating an element.
  5. The start tags are <> the end tags are </> , their content is variable .
  6. An attribute is included in the start tag and is variable and includes additional information about the element.
  7. The Anatomy of the HTML document is :
    < ! DOCTYPE html >
the content element the head element the element that sets the character element the body element

At 7 , like in my answer, the content is gone :)))

  1. What is HTML? Hyper Text Markup language.

  2. What is HTML used for? It is code that is used to structure a webpage and its content.

  3. Why are we learning HTML? It is a good pace to start learning to write code, and I believe it has some similarities to Solidity which I want to learn.

  4. What is an HTML tag? A tag is used to enclose elements of your web page and are essential to structuring your webpage correctly.

  5. What is the structure of an HTML tag? < “to open” >, and </ “to close” >.

  6. What is an attribute? It is where you can put extra information about the element that you do not want to appear on your webpage.

  7. What is the anatomy of an HTML document?

< ! DOCTYPE  html >
  < html >
<head>
  < meta charset = "    "  >
< / head >
  < body >
< img src = "          "
  < body / >
< / html >

" basic example "

1 Like

What is HTML?

  • Hypertext Markup Language

What is HTML used for?

  • It is used to structure a webpage and the content on it.

Why are we learning HTML?

  • To be able to create realistic interfaces for smart contracts

What is an HTML tag?

  • a notifier to the browser of how to treat the contents of an HTML element.

What is the structure of an HTML tag?

  • <‘tag> </tag’> (ignore quotes, needed for display)
  • However, the structure of an element is an Opening tag, content, closing tag.

What is an attribute?

  • A characteristic of a particular element to provide greater information.

What is the anatomy of an HTML document?

  • HTML tags enfolding a header then a body which are both their own enfolding tags.
1 Like
  1. HTML is the acronym for Hypertext Markup Language, which is the programming language used to create a web page.
  2. HTML is used to create a web page.
  3. We need to know HTML in order to create a webpage which serves as a front-end that interacts with smart contracts (back-end).
  4. An HTML tag acts as an identifier of each component of an HTML element.
  5. Tags consist of an opening and closing tag. The opening tag consist of a character enclosed in an opening and closing bracket. The closing tag consist of a slash symbol followed by a character enclosed in and opening and closing bracket.
  6. An attribute is additional information about an element that the author adds to the element but does not want to appear in the webpage.
  7. The anatomy of an HTML document consist of the correct order of each component of an HTML element, as follows:
<!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
  1. What is HTML used for?
  • code that is used to structure a web page and its content
  1. Why are we learning HTML?
  • To gain a basic understanding of computer language, a foundation that would smoothen the learning journey for all other types like solidity
  1. What is an HTML tag?
  • make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller
  1. What is the structure of an HTML tag?
  • The opening tag, closing tag, content, element
  1. What is an attribute?
  • 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?
- <!DOCTYPE HTML>
- <html></html>
- <head></head>
- <meta charset="utf-8">
- <title></title>
- <body></body>
1 Like
  1. What is HTML?
    HTML is a markup language - the code that is used to structure a webpage

  2. What is HTML used for?
    to structure a webpage and it’s content

  3. Why are we learning HTML?
    as a base for other programming
    to know how to create simple static websites

  4. What is an HTML tag?
    a tag defines a hyperlink. a hyperlink is used to link one page to the other

  5. What is the structure of an HTML tag?
    an opening tag is always in brackets


    where a closing tag has a backslash included in the brackets

  6. What is an attribute?
    an attribute contains extra information about an element that does not have to show on the page

  7. What is the anatomy of an HTML document?
    the anatomy are the parts that an element consists of:
    -opening tag
    -content
    -closing tag

1 Like
  1. Is a markup language used in web pages
  2. It is used on web pages and its contents
  3. Because this is the basic knowledge to interact with the web and structure the content to go towards web3
  4. The html tags define some characteristics to the content.
  5. <> open tag </ > close tag
    6.the elements could have attributes. They content aditional info.
  6. The individual elements are not enough. They have to be combined and layed out in order to form a 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?
    Html is used to structure a web page and its content.

  3. Why are we learning HTML?
    It’s a fundamental building block to start interacting with smart contracts an web developing.

  4. What is an HTML tag?
    A set of characters constituting a formatted command for a Web page.

  5. What is the structure of an HTML tag?
    Opening/closing tag </> and the content make up the whole element

  6. What is an attribute?
    Extra info about the element that does not appear in the content.

  7. What is the anatomy of an HTML document?
    doctype> - sets rules for the HTML page to follow
    html> - wraps the contents on the page
    head> - contains page info that is not content. (keywords, page description, css, character set, etc…)
    body> - contains the contents of the page ( text, images, video, etc…)
    meta charset=“utf-8”> - character set of the document, to handle textual content
    title> - sets the title of the page, which appears in the browser tab

1 Like
  1. HTML is HyperText Mark-up Language
  2. HTML is used for web page designing.
  3. We need HTML as a base language to learn programming and also to design simple front end websites to interact with our smart contracts.
  4. HTML tag defines what kind of content we want to see on the website.
  5. Opening tag, element, closing tag
  6. An attribute is a feature that provides extra information or modifies an element
  7. head elements, body elements,
1 Like
  1. HTML is a markup language that defines the structure of a content.
  2. HTML is used to code web pages.
  3. Because a DAPP needs to have a web page for frontend.
  4. Tags are used to create HTLM elements.
  5. Angle brackets, the name of the element and the end tag contain forward slash before the name.
  6. Attributes contain extra information about the element.
  7. Doctype, html, head, meta charset, title, body.
1 Like

1). What is HTML?

  • HTML is a markup language that defines the structure of your content. It has elements that do certain actions.

2). What is HTML used for?

  • HTML is used to make webpages and content

3). Why are we learning HTML?

  • We are learning HTML because it can better expose us to programming and understand Javascript better.

4). What is an HTML tag?

  • An HTML tag contains the content, the tags have both a opening and closing and this determines where the element opens and closes.

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

  • The structure of a HTML tag is Opening tag, element, content and closing tag. Below is a picture of the structure.

6). What is an attribute?

  • A attribute is contain extra info about the element that will not appear on the actual content itself.

7). What is the anatomy of an HTML document?

  • The anatomy contains 5 main tags: <!DOCTYPE html>, <html></html>, <head></head>, <meta charset="utf-8">, <title></title>, <body></body>
1 Like