HTML Reading Assignment

  1. Hyper text markup language is a code that enables structuring a webpage and content in it.

  2. To build/ create webpages/ websites.

  3. To be able to learn Java script the starting is at HTML.

  4. A tag ensures the content is placed or structured in a certain manner.

  5. Open with < then add the tag: p and close with>. Eg;

  6. An attribute contains additional information that is not displayed in the main text/ content.

  7. -prerequisite
- wraps all the elements, aka root element. - all code that is non viewable content. - universal character set - the title of the webpage - the content that is displayed
1 Like

1: A markup language that defines the structure of your content -> using elements.

2: To create the static foundation of a functioning website.

3: To create websites that will later interact with our smart contracts.

4: An element that decides over the look of your content.

5: -The opening tag, the closing tag, the content, the element.

6: It contains extra information about the element that you don’t want to appear in the actual content.

7:

My test page My test image
1 Like

HTML is hypertext markup language.

HTML is code language used to structure a webpage.

Learning HTML so i can create websites to interact on blockchain.

A tag is a hyperlink.

A tag structure a word or image hyperlink to something else.

A space between itself and the element name.

Anatomy of HTML document is explore a paragraph, element, and content.

1 Like
  1. HTML is a markup language rather than a coding language which helps structure the content of a website that one may be building.
  2. To build websites or at least contributes in building one in combination with other front end languages.
  3. To spread mass adoption to the masses. On a serious note, to get the very basics of programming and without understanding the basics and how to structure no one is going anywhere.
  4. An html tag is basically a command that gives information to the client or browser to read and understand the website and what follows.
  5. Opening tag < including command or information like html and closing tag > for instance which lets the browser know that what he reads is html. Then, we have to close with to let know that the file has been closed and ended.
  6. Variables give additional information about a tag or a piece of information within the tag, like making a statement bold, italic etc.
  7. It consists of html letting the client know it reads an html document, of a head element and a body element which serves as the main piece of the website. all three aforementioned need to also be closed.
1 Like
  1. What is HTML?
    – HTML stands for Hypertext Markup Language and is a basic coding language for wrapping simple text and images
  2. What is HTML used for?
    – HTML defines the structure of your content.
  3. Why are we learning HTML?
    – We are learning HTML to bud into well rounded programers, in order to build fully operable websites and apps
  4. What is an HTML tag?
    – An HTML tag initiates a command or action when preceding code and ceases that command or action when placed immediately after a line of code
  5. What is the structure of an HTML tag?
    – For opening commands HTML uses < p >, for closing commands HTML uses < / p >
  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?
    1-- <!DOCTYPE html> — doctype. It is a required preamble.
    2-- <html></html> — the [ <html> element.
    3-- <meta charset="utf-8"> — This element sets the character set your document should use
    3-- <title></title> — the <title> element. This sets the title of your page
    4-- <body></body> — the <body> element. This contains all the content you want to show
1 Like
  1. Hypertext Markup Language
  2. Properly formatting and displaying websites.
  3. To create a basic website to interact with our smart contract.
  4. Indicates different sections of our code.
  5. Starts with and ends with
  6. Contain information helpful to be seen on the back end but not on the site itself.
  7. Tag, head, body. end tag.
1 Like
  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 is a markup language that defines the structure of your content.

2.-To enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

3.- So we know the structure of the page and how to make intereactions with it.

4.- Code elements on a web page that allow the user adjust the structure also some indexers use them for search parameters

5.- < p > Content < /p >

6.- It is a property that point to the tag and can contain extra information such as font size, location of an image, background color and more.

7.-< !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< title>My test page
< /head>
< body>
< img src=“images/firefox-icon.png” alt=“My test image”>
< /body>
< /html>


Español

  1. ¿Qué es HTML?
  2. ¿Para qué se usa HTML?
  3. ¿Porqué estamos aprendiendo HTML?
  4. ¿Qué es etiqueta HTML?
  5. ÂżCuĂĄl es la estructura de una etiqueta de HTML?
  6. ¿Qué es un atributo?
  7. ÂżCuĂĄl es la anatomĂ­a de un documento HTML?

1.- Es un lenguaje de marcado, un cĂłdigo que define la estructura del contenido de una pĂĄgina web

2.- Para definir la estructura de una pĂĄgina web

3.- Por conocer el ambiente de trabajo y conocer la estructura de una pĂĄgina web de forma que en el futuro podamos conectar nuestras aplicaciones a esta

4.- Los tag’s son elementos de código en una página web y forman parte integral de ella porque permiten darle estructura, además algunos buscadores utilizan tag’s como indexación de sitios web y parámetros de clasificación.

5.- Comienza con un sĂ­mbolo de apertura y otro de cierre, con el contenido entre ambos, asĂ­
< p > Contenido < /p >

6.- Es una propiedad que apunta a la etiqueta y puede contener información extra como tamaño de fuente, localización de una imagen, color de fondo y mås.

7.- Un documento HTML contiene las siguientes partes:

  • < !DOCTYPE html > (Instrumento histĂłrico para la buena lectura del documento)

  • < html > < /html > (Conocida como la raĂ­z elemental, abarca todo el documento)

  • < head > (Este elemento actĂșa como contenedor de la informaciĂłn que quieres incluir en tu sitio pero no mostrar, esto incluye ciertas palabras clave y una descripciĂłn para aparecer el los resultados de bĂșsqueda, estilo de contenido y mĂĄs)

  • < meta char et=“utf-8” > (Este elemento establece los caracteres que vas a usar en “UTF-8”
    cual contiene la mayorĂ­a de los lenguajes escritos)

  • < title > < /title > (Establece el tĂ­tulo que aparece en tu pĂĄgina, tambiĂ©n sirve para identificar la pĂĄgina cuand la pones en favoritos)

  • < body > < /body > (Contiene todo el contenido que quieres mostrar a los visitantes de tu pĂĄgina web, ya sea texto imĂĄgenes, vĂ­deos, juegos o cualquier otra cosa que incluyas )

1 Like
  1. HTML is Hypertext Markup Language and is used to create the structure for a website.
  2. it is used to code a website and structure it and its context
    3.to learn how to structure a website with code
  3. tags are to go at the start and end of elements to show the start and finish.
  4. it starts with an opening bracket and then the name of element and then a closing bracket at the start then a closing bracket is the same but with a slash before the name.
  5. An attribute contains more information about an element
  6. the anatomy of a HTML document is everything refined and structured together to create a full HTML page.
1 Like
  1. HTML, hyper text markup language is code used to format the contents of a website.

  2. HTML structures the content shown on a website.

  3. I believe we are learning HTML as an introduction on how to format code.

  4. An HTML tag is the opening or closing part of an element to format the content within.

  5. The structure of a tag is angle brackets (both opening and closing) that house the name of the element.

  6. An attribute is a value embedded in an element of code that helps to identify it.

  7. The anatomy of an HTML document is the doctype, head, body accompanied by it’s opening and closing tags.

1 Like
  1. HTML (Hypertext Markup Language) is a coding language that
    enables the structuring of a web page.

  2. HTML is used to structure web pages and it’s contents.

  3. To build the front end of blockchain projects.

  4. An HTML tag opens and closes content within the element. It commands where the element begins/ take effect

  5. The structure of a tag depends on if it’s an opening tag or closing. An opening tag consists of the name of the element, wrapped in opening and closing angle brackets

    . A closing tag adds a forward slash before the element name

    .

  6. Attributes give extra command about the element that the coder does not want to appear in the created content.

  7. The anatomy of the HTML document combines the individual elements to form a HTML page. They consists of the head, title and body.

1 Like
  1. What is HTML?
    HTML is a language that is used for setting up web pages. It allows one to modify the contents (e.g. text, images, sounds, etc.) of the page.

  2. What is HTML used for?
    Designing web pages, including all the text, images, sounds, etc. contained therein.

  3. Why are we learning HTML?
    HTML is part of the many protocol building blocks required in the crypto space. It serves as a tool that can help design smart contracts and DAPPs.

  4. What is an HTML tag?
    HTML tags define elements within the code. You can have paragraph tags

    , image tags , etc.

  5. What is the structure of an HTML tag?
    Each tag requires an opening tag and a closing tag to properly display information on a page.

  6. What is an attribute?
    Attributes allow one to store additional information that is not shown on the actual page.

  7. What is the anatomy of an HTML document?
    An HTML document has various elements that define its structure/anatomy. It has a preamble, a root element, a “container” which includes all information (shown & not shown), a character set that defines which characters are used, a title, and a body that carries all the text, images, etc., that is shown to a user.

1 Like
  1. defines the structure of content. html stands for hypertext markup language.
  2. html is used to create basic websites in general but it also has other use cases.
  3. html is a good starting place for people just learning to code and provides basics for future more in depth coding.
    4.can make a word or image hyperlink to somewhere else.
    5.

    This class is very useful


    6.attributes contain extra information about the element that you dont want to appear in the actual content.
    7.the anatomy is pretty much the html source in a whole.
1 Like
  1. Hypertext markup language.
  2. to code a website
  3. to be able to code with solidity.
  4. a set of characters constituting a formatted command for a web page
  5. tag contains information ​about the web page
  6. it provides additional information about an element
  7. consist of two elements the head and the body
1 Like
  1. Hypertext Markup Language.
  2. HTML is the code that is used to structure a web page and its content.
  3. To make our smart contracts interact with web site
  4. Tag is used for creating an element.
  5. An opening <tag (may have attribute here)> and a closing
  6. An attribute extends an element changing/modifying its characteristics or providing metadata.
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Title</title>
  </head>
  <body>
    <img src="images/firefox-icon.png" alt="Image">
  </body>
</html>
1 Like
  1. Hypertext Markup Language
  2. It’s a code used to structure a web page and its content
  3. It’s the foundation of any website.
  4. The enclosing tag 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 consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets. 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 opening tag, the closing tag, the content, the element
1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content

  2. What is HTML used for?
    is the code that is used to structure a web page and its content.

  3. Why are we learning HTML?
    in order to know the basic of codification a simple web page

  4. What is an HTML tag?
    is what 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?
    opening tag

    element clothing tag

    all this represents the element

  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?
    every HTLM document start with !IDOCTYPE html then head title body ( here you can add images) close with

1 Like

1.- HTML is a markup language.
2.- It’s used to define the structure of the content of a web site.
3.- It’s necessary to build a dex, the objective of this course.
4.- Enclosing tags are part of the html language, and they can make different thing with the content inside them.
5.- Structure consist on one opening tag and one closing tag. The opening tag consists of the name of the element, wrapped in opening and closing “angle brackets” . This states where the element begins or starts to take effect — in this case where the paragraph 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.- Doctype This is a required preamble.

The html element wraps all the content on the entire page and is sometimes known as the root element.

The head 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.

The 'meta charset=“utf-8” ’ element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages.

The title element 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.

The body element 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

What is HTML? Hypertext markup language,
What is HTML used for? used to structure web pages and its content
Why are we learning HTML? so that we can structure the content indexed from blockchain to show to the user
What is an HTML tag? consists in naming 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>
What is the structure of an HTML tag? <tag> </tag>
What is an attribute? Attributes 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?<!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. Html is the basic code language
  2. It is used to structure your commands for creating your program or website
  3. To know the fundamentals for program developing
  4. Tags are used to give a text some attributes and manipulate it
  5. It opens up with <> than you fill the content in and closes it with </>
  6. attribute is something that changes the content with the value you giving it
  7. It starts with , that the route
    than comes the title, head and body with closing it all up
1 Like
  1. What is HTML?
    HTML is a languade for programming web sites, a code for formatting text, images and other appearance attributes of a website.

  2. What is HTML used for?
    Formatting website content and structuring it.

  3. Why are we learning HTML?
    It can be a good start to understand programming in general before moving on to more complex languages.

  4. What is an HTML tag?
    It is the place where via HTML we can tell what we want the content to do and how. We give command for tha language to fulfill.

  5. What is the structure of an HTML tag?
    It has opening and closing angle brackets and the closing tag, where we want the command to end also includes a forward slash.

  6. What is an attribute?
    Attributes can be used to add functionality to our content without being visible in the web-page itself. They can help sorting things, grouping them etc. They can define characteristics of content.

  7. What is the anatomy of an HTML document?

  1. You should always state doctype.
  2. Then add the html tag, to wrap and include the whole page.
  3. Then head stating data not readable and visible for the users but for the computers to process.
  4. Then meta character set (to utf-8)
  5. Title of the page (appearing in the browser)
  6. Body itself containing all the content of the web-page.
2 Likes