HTML Reading Assignment

  1. What is HTML?

Answer: Hyper-Text Mark-up Language… 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, and attributes.

  1. What is HTML used for?

Answer: 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, or hyperlink to somewhere else… It can italicize words, make the font bigger or smaller, and so on.

  1. Why are we learning HTML?

Answer: To learn how website’s are built…their anatomy.

  1. What is an HTML tag?

Answer: angle brackets are used to open and close elements like paragraphs

, , and .
  1. What is the structure of an HTML tag?

Answer:

  1. What is an attribute?

Answer: Attributes contain extra information about the element that you don’t want to appear in the actual content. The attribute consists of a name and it’s value.
And, should always have 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.

  1. What is the anatomy of an HTML document?

Answer: As an example website page: , , , , My test page, ,
My test image, , . Are the basic elements of an HTML document.

1 Like
  1. Hypertext markup language
    that defines the structure of your content.

  2. Code to structure a web page and it’s content.

  3. to help me understand the basics of coding the front end (websites) that work with the backend smart contracts.

  4. makes a word or image hyperlink to somewhere else. Used for creating element.

  5. head and a body
    every HTML document should start by declaring that it is an HTML document. These tags are of the form:

  6. Contains extra information about an element that you do not want to appear in the actual content.

Doctype
HTML element
Head element
character set
titile page
content

1 Like
  1. What is HTML?
    It is a markup language that defines the structure of your content.

  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?
    To develop a web page.

  4. What is an HTML tag?
    It is something like a command that you could use to 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?

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

HTML is a markup language, not a programming language.

HTML is used to define the structure of content.

Our goal is to create a website as a graphical front-end for interacting with our own smart contracts.

A tag is used to wrap some content up as a specific element.

There is an opening and a closing tag to set the extent of a new element. Both have opening and closing angle brackets around the name of the element. The closing tag has a forward slash after the opening bracket.

Attributes contain extra information about the element that you don’t want to appear in the actual content. They are part of the opening tag.

It defines how individual elements are combined to form an entire HTML page. There is a head part and a body part. The latter contains the actual content of the page, the former everything else.

1 Like
  1. HTML (HyperTextMarkupLanguage) is not a programming language but rather a markup language that defines your content.
  2. It is used for creating basic and static websites with very limited functionality.
  3. I guess it is a starting point for every programmer since everything started with HTML
  4. It is a part of an HTML element that leads to the content section of the whole element.
  5. Opening tag < p > Closing tag < /p > ( normally you don’t put space )
  6. Attribute is additional information that won’t appear in the actual content
  7. It is a set of different elements that represent the whole HTML webpage
    <! DOCTYPE htm l>
    < 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.- Markup language that defines the structure of content.
2.- For defining structure of content, like a layout.
3.- We need a way to be able to connect our creations to the web by ourselves.
4.- Text that helps us wrap content so it appears as we want, depending on the tag.
5.- (Opening tag) Text (Closing tab)
6.- Information about the element that you do not want to show apart from inside the code itself.
7.- Doctype, opening, head, body, closing.

1 Like
  1. Hypertext Markup language
  2. For organizing content
  3. Its necessary to make a website which will then interact with a blockchain
  4. Instructions to structure the content
  5. Opening tag then content then a closing tag
  6. It will give your content extra features
  7. HTML, head, and body
1 Like
  1. HTML is a Hypertext Markup Language.

  2. HTML is used to define the structure of your content.

  3. In this situation, we are learning HTML because it is paramount to know when building a website.

  4. A HTML tag tells us where something begins and where something ends (Text,heading,paragraph etc.)

  5. is the beginning to the structure while

    defines the ending to the structure.
  6. An attribute is information that you want to input that wont be seen in the content,

  7. The anatomy of the HTML document consists of the structures used to create the document.

1 Like
  1. HTML > HyperText Markup Language: it is the code used to outline and structure a web page and its contents.

  2. it is a language that defines the structure of your content. It consists of different elements which you can use to enclose or wrap different parts of the content to make it look or function on a certain way. you can add hyperlinks to other sites and even edit the look of your font.

  3. to help with understanding of front-end systems and how to interact with them.

  4. tags are used to define different parts of the HTML document into things like paragraphs, italics. they consist of opening tag (start of the element) and closing tag (end of element)

  5. -opening tag
    -closing tag
    -content
    -element

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

    • <!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> 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/favorite 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
  1. Hypertext markup language
  2. to structure content on a webpage
  3. to build a webpage to brag about it
  4. makes content appear and behave in a certain way
  5. open and closing brackets, attributes, closing
  6. extra information that you do not want to appear in de content for the reader. it consist of an attribute name + an attribute value
  7. all tags needed for the document to show as required: <!doctype html>,,, , ,
1 Like
  1. Code used to structucture web content.
  2. To structucture web content.
  3. It is the basic knowledge needed/suggested for us to learn how to program languages such as JavaScript.
  4. To indicate what kind of function we are applying to the following content.
  5. ->
  6. An extra piece of information that modifies the element.
<!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
2. What is HTML used for?
It is a markup language used to display web pages over a browser
3. Why are we learning HTML?
Although it is not a programming language, it is a language that bridges a segway into programming language such as JavaScript
4. What is an HTML tag?
It is a definition to direct the browser to interpret a visual activity.
5. What is the structure of an HTML tag?
An opening < tag > and closing < /tag > are used. Opening tags may have attributes to further define markup.
6. What is an attribute?
They are additional properties that further describe the tag. An example would be sizing an image file with certain pixel height and length through the < img src > tag.
7. What is the anatomy of an HTML document?
HTML documents usually have the hierarchy HTML to define the file, header to define the browser page title (and CSS elements) and body to define the webpage contents.

1 Like
  1. HTML is short for Hypertext Markup Language and it is the code that makes up websites.
  2. HTML is used to establish a web structure so that websites are easily usable and readable.
  3. We are learning about HTML because it is the basis of code that makes up the structure of the internet, which blockchains are then built on top of.
  4. HTML tags are coding indicators that are placed before and after a paragraph to establish where any given paragraph begins and ends.
  5. The structure of an HTML opening tag is the letter P between brackets,

    , which is an indicator that a paragraph has started; while the structure of the HTML closing tag is similar except it also includes a slash symbol to indicate that a paragraph has ended;

  6. An attribute is extra information that is included between the HTML tags, but instead of being a part of the paragraph element, the attribute defines the paragraph element; instead of being actual content, an attribute classifies content.
  7. The anatomy of an HTML document consists of: the doctype, which establishes the HTML to its own structural rules; this is then followed by a series of elements, including a header element, a body element, and a root element that wraps it all together. The header element consists of an additional title element which defines the website in search engines, as well as a character element which establishes the text language that can be used within the body element; the body element is then what will be seen by users of the webpage.
1 Like
  1. What is HTML?
    HTML is a markup language

  2. What is HTML used for?
    To define the structure of the content of an HTML page

  3. Why are we learning HTML?
    Because HTML is to have a solid base for structuring a page content.

  4. What is an HTML tag?
    An HTML tag can give content different functions such as a paragraph or italicizing it.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag is an opening tag followed by content and the closing tag.

  6. What is an attribute?
    An attribute can give 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 anatomy of an HTML document is all the elements combined together which sets out the structure of that specific page.

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?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
  6. What is an attribute?
  7. What is the anatomy of an HTML document?

1- HTML (Hypertext Markup Language) it’s the code used to structure web pages and its contents.

2- Vid. Supra .

3- Weel, first, it’s a great start up code. It will give us the knowledge of how web pages work (eventually becoming our front end of our Smart Contracts), It’s a stepping stone to get to more specific languages as Solidity, C++ et al., and, I think, will get us in the right frame of mind to become consistent developers.

4- A tag is the name of an element, wrapped in opening and closing angle brackets. The closing tag add a closing slash after the opening angle bracket and before the name of the element.

5- An element consists of an opening Tag + the content + closing Tag.

6- An attribute is extra information that does not appear in the content, but adds a non unique identifier.

7-7- !DOCTYPE html head Body html

Each of them with angle brackets.

1 Like

Great answers. It’s easy to understand. Great work. :clap:

Carlos Z.

1 Like
  1. It is a markup language that defines the structure of the content.
  2. To enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
  3. By learning the basics of web development we will be able to build our own websites that interact with the blockchain
  4. The enclosing tags can make a word or image hyperlink to somewhere else, can italicise words, can make the font bigger or smaller, and so on.
  5. The opening tag, the content, the closing tag.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
  7. Consists of the structures used to create the document.
1 Like

1-HTML is a mark up langugage allowing one to publish content on the web
2-HTML is used to structure content when publishing online
3-Learning HTML will allow us to show online in a nice manner what we can do with the blockchain. Also it is always good to understand the basic of it, if you want to lead a team in the IT field.
4&5- A tag name an Element such as a paragraph or an image. It defines when it ends and when it begins. It is encapsulated by < and > at both ends. There is a start tag and a end tag starting with </ . For “empty” element there are only one tag
6-Attributtes are pieces of informations about the content that does not appears in the result pages.
7-The anatomy consists in the structure of the the HTML coding. It does not reflects the structure of the result page. It is practicaly the lists of the tags.

1 Like
  1. HTML is short for Hypertext Markup Language. HTML is a marking language that defines the structure of your content.
  2. HTML is used to structure a web page and its content.
  3. Exposing our brains to HTML allows us to use the information we learn and apply it to blockchain development. This will help us have a better understanding we get our hands into writing code.
  4. The tag is used in HTML to construct an element.
  5. There are two main sections to the HTML document: the head and the body. But first of all, any HTML document should start by stating that it is an HTML document. These tags are in the form: .
  6. Attributes provide additional details about an aspect that you don’t want to see in the actual material.
  7. The structure or internal workings of our content is the anatomy of HTML.
1 Like
  1. What is HTML? It is a markup language that defines the structure of the content in a web page.

  2. What is HTML used for? It is used to organize the contents of a web page and display them as intended. It can also be used to create hyperlinks within the content.

  3. Why are we learning HTML? It is a good starting point in understanding programming and web content. HTML is important in terms of the front end of a web app.

  4. What is an HTML tag? It is the code that determines and initiates/terminates a particular HTML element.

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

  6. What is an attribute? It is a way to give an element a non unique identifier that can be used to target it with style information amongst other things.

  7. What is the anatomy of an HTML document? An HTML doc contains a:
    a. Head element (contains keywords, page description, character set declarations and other elements you don’t want included in the content of the web page)
    b.Body element which contains all of the content you want people visiting your page to see.

3 Likes