HTML Reading Assignment

  1. What is HTML?
    HTML stands for Hypertext Markup Language is a programming language.
  2. What is HTML used for?
    It’s used to structure content in a webpage.
  3. Why are we learning HTML?
    Create websites.
  4. What is an HTML tag?
    It’s a delimiter of an element.
  5. What is the structure of an HTML tag?
    Opening tag: <name of element + atributes (if necessary)> + Closing tag </name of element>
  6. What is an attribute?
    It’s na extension of the element, it modifies the element’s behaviour or provide metadata to it.
  7. What is the anatomy of an HTML document?
    Opening tag (<name of element + atributes (if necessary)>) + content + closing tag (</name of element>) = element
1 Like
  1. HTML abbreviation stands for Hypertext Markup Language, which is used from early days of internet.
  2. It is used to define and structure content on your webpage.
  3. Because it is basic language and other languages have a lot of common with it.
  4. HTML tag limit where content starts and where it ends.
  5. Opening tag: <name of element + atributes (if necessary)> + Closing tag </name of element>
  6. Attributed has some additional information about the element that you don’t want to appear in the actual content on website.

But you can use also other elements like Images, Links etc.

1 Like
  1. What is HTML?
    HTML is a HyperText Markup Language

  2. What is HTML used for?
    HTML is used to programme websites structure and content.

  3. Why are we learning HTML?
    HTML is a good foundation to build our knowledge and understanding of web development and to build

  4. What is an HTML tag?
    They are the basic building blocks for any webpages. Also known as mark up tags.

  5. What is the structure of an HTML tag?
    Consists of name of element wrapped in opening and closing brackets

  6. What is an attribute?
    Attribute is used to add useful information to a html tag.

  7. What is the anatomy of an HTML document?
    Begins with doctype tag, then head, title and body

1 Like
  1. Is a markupt language to define the structure of documents.
  2. To build webpages.
  3. Because its the basic language that opens the door to most of languages.
  4. The way to name elements inside a html file.
  5. The opening tag, wraped by angle brackets followed by the content and ended with the closing tag, wraped by angle brackets and with a forward flash before the name of the element .
  6. Its the way to include extra information that you dont want to get visualized in the webpage.
  7. It starts with a element named Doctype which ensures your html is correctly writed, then you put the element html that contain all the elements you put on your webpage, after it you put the element Head with informations that you dont want to be showed into the webpage. The you set your character style (mostly UTF-8), choose a Title (that appears in the tab) and start to build the body of your webpage. All the elements must follow the rules described in the answer 5.

Hope to be right

1 Like
  • What is HTML? - Hypertext Markup Language
  • What is HTML used for? - to build a websites
  • Why are we learning HTML? - to make a UI for applications
  • What is an HTML tag? - It’s define content of web site
  • What is the structure of an HTML tag? - open tag + attribute > content > closing tab
  • What is an attribute? - extra information about the element
  • What is the anatomy of an HTML document? - doctype, tags html / head / meta/ title/ body
1 Like
  1. Hypertext Markup Language
  2. HTML is the code used to develop websites that defines the structure of the website.
  3. We are learning HTML to build a website/store front for our smart contracts.
  4. An HTML tag is the beginning and the end of an element, such as enclosing a piece of text to be displayed on the website in a certain way or style.
  5. An HTML tag is used to develop elements. A tag can look like

    , signaling the beginning of a piece of text and look like this

    at the end of the text piece.
  6. An attribute is a non unique identifier that doesn’t appear in the actual content. It can be used to style text and identify other elements with the same class value.
  7. The anatomy of an HTML document begins and ends with a series of elements. From the article:
<!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

[quote=“ivan, post:1, topic:3055, full:true”]
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, stands for Hypertext Markup Language, is the document format used for web pages. It contains text, as well as tags that give structure to the text, describing things such as links, paragraphs and heading.

  2. What is HTML used for?
    HTML is a set of codes that a website author inserts into a plain text file to format the content. The author inserts HTML tags, or commands, before and after words or phrases to indicate their format and location on the page. HTML tags are also used to add tables, lists, images, music, and other elements to a webpage.

  3. Why are we learning HTML?
    Learning HTML would make sure you can design your unique website without any help. Sure you can create one from a website that provides you with inexpensive or free of charge templates, but not only would that mean you cannot come up with a creative website of your own, it would also make your website look like everyone else’s. So if you want your website to be exclusive, you definitely should learn HTML.

  4. What is an HTML tag?
    The <html> tag represents the root of an HTML document.
    The <html> tag is the container for all other HTML elements (except for the <!DOCTYPE> tag).

  5. What is the structure of an HTML tag?
    HTML have a head and a body, the head contains infos about the document, and the body contains the document itself

  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?

  • Opening tag: name of the element
  • Content: content of the element
  • Element: opening tag+ element+ closing tag together comprise the element
  • Closing tag: this states where the element ends, includes a forward slash before the element name.
1 Like
  1. HTML (Hypertext Markup Language) is the code that is used to structure a web page and it’s content.

  2. HTML consists of a series of elements that are used to enclose or wrap different parts of the content to make it appear in a certain way or act a certain way.

  3. We are learning HTML so that we have a basic understanding of the concepts of programming and writing code so we may progress to more advanced skill learning such as creating our own smart contracts.

  4. The opening tag and the closing tag are 2 of the elements that HTML is comprised of.

  5. The opening tag consists of the name of the element wrapped in opening and closing angle brackets.
    The opening tag states where the element begins.
    The 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.

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

  7. The anatomy of a HTML document is as follows-
    html
    head
    meta
    title
    head
    body
    img
    body
    html

Each of these elements is wrapped in opening and closing angle brackets.

1 Like

What is HTML?
HTML is a markup (Hypertext Markup Language)

  • What is HTML used for?
    It’s used to structure the content (such as text and images) of a website.

Why are we learning HTML?
Because HTML is the basic fundamentals of web development, and you need to understand the fundamentals.

What is an HTML tag?
An HTML tag is a formatting tool (angular brackets with corresponding words) used to structure the HTML.

  • What is the structure of an HTML tag?

    <?> <?/>
  • What is an attribute?

Attributes modify the elements of HTML.

  • What is the anatomy of an HTML document?
    Header tag, body tag,
1 Like
  • What is HTML? HTML is a markup language that defines the structure of your content
  • What is HTML used for? the code that is used to structure a web page and its content
  • Why are we learning HTML? To be a kick ass blockchain developer
  • What is an HTML tag? A tag will enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way
  • What is the structure of an HTML tag? </close tag> < open tag >
  • What is an attribute? They 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? It is how individual elements are combined to form an entire HTML page
1 Like
  1. HTML stands for hypertext markup language.

  2. It is the code used to structure a web page and its content.

  3. HTML is a great place to start and is a good foundation for web development and blockchain development.

  4. A tag tells the browser what type of content is inside and informs what it needs to display.

  5. A tag starts with an opening command before the content and then requires a closing command after the content. For example

    Hello There

  6. Attributes are extra information about a specific element that does not appear in the content itself.

  7. It is comprised of a header, a body containing all the majority of the content and a closing tag

1 Like
  1. What is HTML?
    Hypertext markup language
  2. What is HTML used for?
    Code used to structure web pages and their content
  3. Why are we learning HTML?
    To create a front end of our blockchain applications
  4. What is an HTML tag?
    A markup language that defines the structure of your content.
  5. What is the structure of an HTML tag?
  • The opening tag
  • The closing tag
  • the content
  • the element
  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
  • head
  • meta
  • title
  • body
1 Like
  1. Hypertext markup language we’ll use to define structure of the content.

  2. HTML is used to structure the content of a web page.

  3. It is needed to make a web site which will interact with a blockchain.

  4. Intructions of how to structure the content.

  5. <?>
  6. An attribute modifies or adds information to an element.

  7. HTML tags which wrapped all code.
    Head which is the container for all stuff included on the HTML that is not showed for the viewer.
    Body is the container for the stuff i want the viewer to see.

1 Like

1 Is a code - language used for web page from the beginning of the internet.
2 It builds the structure of the page content, and consist of a series of elements.
3 It’s at the ground of many of the followed coding language, and is a good knowledge, to have before to start learning other languages.
4 is used to give instructions to the content like size, color, font, hyperlink, ecc.
5 Opened and closed contents.
6 Brings more elements to the contents.
7

Octopus

That's Me

Mimetic

I'm the best

I will bring you with me

I eat a lot!

  • Crabs,
  • Small fishes,
  • Shells...
  • ... and...
<a href="https://wikipedia.org/wiki/Octopus">click me to go to Wiki</a>




<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjFnZ5JOmWsoSxZEL0wvhf2xZ0B_NEprBSJg&usqp=CAU"/>
1 Like

Don’t know why on my brows works, but here not…

  1. What is HTML?
    HTML is a markup language that defines the structure of your content. It consists of elements which you use to enclose or wrap different parts of the content to make it appear or act a certain way.
  2. What is HTML used for?
    HTML is a language or code used to structure a web page and its contents
  3. Why are we learning HTML?
    We are learning to use HTML so that we can learn to create a website that we can then use to connect to an existing blockchain or blockchain that we may decide to develop in the future
  4. What is an HTML tag?
    Tags can make a word or image hyperlink to somewhere else, can italicize words, make them bigger, smaller, and so forth
  5. What is the structure of an HTML tag?
    A tag consists of an element wrapped in opening and closing angle brackets
    ex.
  6. What is an attribute?
    An attribute contains extra information about the element that you don’t want to appear in the actual content. It can do things such as give elements a non-unique identifier that can be used to target it and any other elements with the same class value
  7. What is the anatomy of an HTML document?
    The anatomy of an HTML document may look like this:
<!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>

doctype is just used as a required preamble to make sure your document behaves accordingly
the html element wraps the entire page and is known as a root element
the head element acts as a container for all the stuff you want to include on the HTML page that is not content. Such as key words, page descriptions you want appearing in search results CSS to style your content or character set declarations
the title element sets the title of your page. This is the title that appears in the browser tab the page is loaded in. Also used to describe the page when you bookmark/favorite it
the body element contains all the content that you want to show to the web users when visiting your page. This could include a variety of things including text, images, videos, games, audio tracks, etc. literally anything
1 Like
  1. What is HTML?
    Hypertext markup language

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

  3. Why are we learning HTML?
    To understand the basics of front-end before moving onto smart contracts

  4. What is an HTML tag?

  5. What is the structure of an HTML tag?
    Opening tag:


    Closing tag:


    Items such as images have information stored within the opening tag and don’t need a closing tag

  6. What is an attribute?
    It is extra information used to help define the elements we use. It doesn’t show up on pages.

  7. What is the anatomy of an HTML document?
    [!DOCTYPE html]
    [html]
    [head]
    Data such as font families and css links are placed here.
    [/head]
    [body]
    Content of the page is placed here.
    [/body]
    [/html]

1 Like

1 Its a standard language and the structure pf documents on webpages.
2 It is used to create web pages and configurate how to display the information in them.
3 Because its a basic language, very simple and good way to start learning how to program and what is coding about.
4 Are keywords used to configurate the way that the information will be display on the website.
5 Opening tag <?> , closing tag </ ? > and the content of the element that is normally just text.
6 Atributes contain extra information about the element that you don’t want to show in the document.
7 Its divided in two elements: Head (where is the title and general commands) and body (where mostly of the text is).

1 Like

1. What is HTML?
HTML stands for Hypertext Mark-up Language and is designed to structure a webpage and its content using code.

**2. **What is HTML used for?
HTML is a markup language using codes to define the structure of your content using a series of elements which are used to enclose or wrap different parts of the content to make it appear in certain ways in order to create webpages.

3. Why are we learning HTML?
We are learning HTML because it is foundational to learning to build web pages as well as the window/gateway to learning other computer code languages such as CSS, JAVA, and Serenity.

  1. What is an HTML tag?
    An HTML tag represents the root of an HTML document. It is a container of code language to define the content of a webpage.

  2. What is the structure of an HTML tag?
    The structure of an HTML tag is: Elements = Opening Tag + Content + Closing Tag.

  3. 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?
When individual elements are combined to form an entire HTML page.
These are: !DOCTYPE html>

My test page My test image [ATTRIBUTES]
1 Like
  1. What is HTML?
    It’s a markup language. HTML stands for Hyper Text Markup Language, which is like a backbone of pages/Web Development. It describes the structure of a Web page.
  2. What is HTML used for?
    HTML defines the structure of a Web Page.
  3. Why are we learning HTML?
    We want to build a full-functional dapp or Web Page using a smart contract. So we need both Front-end and Back-end. To create structure of Front-end we need this markup language.
  4. What is an HTML tag?
    It’s a small piece of code in HTML. The <html> tag represents the root of an HTML document. And the <html> tag is the container for all other HTML elements
  5. What is the structure of an HTML tag?
    An HTML element is defined by a start tag , some content, and an end tag
  6. What is an attribute?
    Attribute contains extra information about the element that we don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document?
    An HTML document is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body, which contains the document’s actual content.
1 Like