HTML Reading Assignment

Hello everyone. I’m excited to learn coding with all of you and look forward to growing together and helping each other out.

Best wishes to everyone.

Jorge

2 Likes
  1. HTML stands for Hypertext Markup Language,
  2. HTML is used to display text and media on a website
  3. We are learning HTML so that we can create good looking websites that interact with crypto
  4. An HTML tag designates what type of media/text will be displayed on a website.
  5. The structure of an HTML tag is “opening tag, content, closing tag”
  6. An attribute is a way of changing the appearance of text or anything.
  7. An HTML document starts with , then , then whatever lines of HTML you want on your document, then close the document with .
2 Likes
  1. HTML is a markup language. It stands for HyperText Markup Language

  2. HTML is used for structuring a web page as well as its contents.

  3. We are learning HTML as it is needed for creating web pages to act as an interface to access a blockchain.

  4. An HTML tag is a tool used to wrap content in order to give it certain attributes such as; distinguishing the content as a paragraph, list, or title, as well as embedding hyperlinks among others.

  5. The structure of an opening HTML tag is an element name wrapped in angled brackets such as follows :

The structure of a closing HTML tag is the element name with a forward slash at the end of the element name without a space, all wrapped by angled brackets as follows:

  1. An attribute is written term that contains extra information attached to an element that is not intended for the end user to view. Such attributes can be used for purposes such as assigning specific formatting or values to an element.

  2. The anatomy of an HTML document consists of the preamble which is required for the document to function properly, proceeded by an element with other nested elements within in it. Amongst these nested elements there should always be a element containing non-end user viewable information, a element for tab and bookmark labeling, and a element containing everything that is visible to the end user. It’s highly advised to include a element as it adds a high degree of flexibility when it comes to entering text in many different written languages.

2 Likes

What is HTML?
HTML (HyperText Markup Language) is code used to structure a web page and its contents.

What is HTML used for?
HTML (HyperText Markup Language) is not a programming language, it is a markup language used to define the structure of content.
HTML consists of elements which can be used to enclose, wrap different parts of the content to appear or act in a certain way.

Why are we learning HTML?
In order to interact with the smart contracts we may need web pages and web sites to communicate with the smart contracts. We will be using HTML to build these web pages.

What is an HTML tag?
A tag in HTML is used to create an element.

What is the structure of an HTML tag?
HMTL tags have a start (opening tag) and end (closing tag) systax. The tag are encapsulated in <> brackets and end with </> with the tag name with the angle brackets. So a paragraph tag would look like

My First Paragraph

What is an attribute?
Attributes contain extra information about the element. The attribute of the element extends the element changing its behavior or providing metadata. It always has the form:
name=“value”(attribute’s identifier followed by associated value)
examples of attribute names are: background, align, border, class, etc

What is the anatomy of an HTML document?

html element wraps content of entire page head element container of all items included on the HTML page meta element sets the character set document will use My test page title element sets the title of the page body element contains all the content the web users will see text, images, videos etc My test image
2 Likes

1.HTML stands for Hypertext Markup Language , it is not a coding language but a language that understands the structure of websites
2.HTML is used to construct a website containing text , image’s , video’s or links.
3.We are learning HTML because it’s the basic language you need to understand to be able to read , alter or construct webiste’s in the future.
4.An HTML tag is used to wrap the content (elements) to specify the way the outcome of the website should show you the result.
5.The structure of a tag consists of an opening and closing angle bracket.
6.Attributes are known as additional information of the element you don’t want to include in the content itself.
7.I could copy the information from a website but i would like to get to know the real anatomy by practising with it to better understand how it works…
I know the DOCTYPE… to begin , html element at the beginning and end and in between you have the head and body element…

2 Likes

You can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.


function formatText(){

let words = “I’m a preformatted Text box, Please use me wisely!”

}

prefromatted_text-animated

Carlos Z.

2 Likes

[quote=“ivan, post:1, topic:3055”]

  • What is HTML?
    Is an hyper text markup language, a building code.
  • What is HTML used for?
    To build websites and content.
  • Why are we learning HTML?
    Because we want to program, to know how to create from the basics.

* What is an HTML tag?
Indicates the beginning and the end of the element.

  • What is the structure of an HTML tag?
    Consists of an opening and a closing

  • What is an attribute?
    Is information and value of the element

  • What is the anatomy of an HTML document?

</html </head <meta charset="utf-8" `</title </body
2 Likes
  1. HTML stands for Hypertext Markup Language
  2. HTML is used to structure a web page by enclosing content in so called ‘‘elements’’, thus making it appear or behave in certain ways, and then combining those elements together forming the page layout.
  3. From my understanding we are learning HTML because its a great start for people that don’t have any prior programming knowledge, its a fairly simple language to understand and learn compared to other ones, its a great foundation to start with and it is somehow necessary for and related to smart contracts (though I don’t yet understand particularly how)
  4. The HTML tag consists of an opening and a closing tag and its the way we wrap our content in elements while using the HTML.
  5. content</closing tag> - opening tag is always wrapped in opening and closing angle brackets, closing tag is the same except it also includes a forward slash after the opening angle brackets stating that the element ends.
  6. An attribute is a piece of additional information about a given element, which won’t be displayed in the actual page content.
  7. The anatomy of an HTML document are the mandatory elements that need to be combined in order to have a fully functional and good structured HTML page. It looks something 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>
1 Like
  1. What is HTML?
    it is a markup language that defines the structure of your content.
  2. What is HTML used for?
    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?
    We need to be able to create at least simple websites that interact with smart contracts
  4. What is an HTML tag?
    They define different structures of the code and modify the way in which are displayed.
  5. What is the structure of an HTML tag?
    opening, content and closing
  6. What is an attribute?
    Atributes 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?
    The anatomy is everything between the opening and closing tags
1 Like

A markup language used to format text on the screen in a webpage
formatting web pages
to build web pages as interfaces to our smart contracts
Tags bracket the text we want to format, telling the web page what is is and how it should display
opening and closing tags
A variable characteristic specified by a keyword=“value” following the element name in the opening tag before the >
Preamble then a header . charset= and content

1 Like

What is HTML?
Hypertext markup language
It’s a language that defines the structure of your content.

What is HTML used for?
it is used to programme websites structure.

Why are we learning HTML?
to programme how your content appears or acts on the web page or website.

What is a HTML tag?
all content on web page must have opening and closing tag, to determine how they appear or function.

What is the structure of an HTML tag?
an opening tag and closing tag.

What is an attribute?
attribute in HTML has extra information about the elements.

What is the anatomy of HTML document?
Doc type, HTML element, head element, body element,

1 Like

1 Hypertext Markup Language
2 it is a markup language that defines the structure of your content
3 Its part of what is needed is blockchain.
4 It help with the structure of the page.
5 the opening or closing Tag
6 Attributes contain extra information about the element that you don’t want to appear in the actual content
7 html consist of Head elements and Body elements

1 Like
  1. html is a markup language used to structure content.
  2. structure content.
  3. by learning html which is used to built every website, it will then be easier to learn other language.
  4. html tags are used to state where an element starts and close.
  5. it starts with an opening tag the content in the middle and finishes with a closing tag
  6. an attribute contains extra information about the element wich we dont want to see in the actual content.
  7. it starts with , then we have and at the complete end , in between the html open and closing we have the head and body tags and in both of those we have content.
1 Like
  1. HTML is the code that is used to structure a web page and its content.
  2. To build a website structure.
  3. To have a base to connect our dapps with the website.
  4. A tag is used for creating an element.
  5. The open and finishing tag (

    ) and (

    ) and between them the content.
  6. Elements can also have attributes, attributes contain extra information about the elements.
  7. Every HTML document starts with the doctype element. It further consists of at least the HTML element which includes the head and body elements. The head elements also includes the title element and the meta element.
1 Like
  • What is HTML? Hypertext markup language
    Symbols or codes used as a standard in a file to be displayed in a certain way on the internet. HTML tells the browser how to display the content.
  • What is HTML used for? To tell the web browser how to display the content of the file on the internet.
  • Why are we learning HTML? Because it will serve as a platform to understand basic coding and how to program
  • What is an HTML tag? They are the codes or symbols or keywords surrounded by brackets that specify to the browser how to display something. Usually at beginning and end of a command. They open and close.
  • What is the structure of an HTML tag? Start tag the body and the close tag
  • What is an attribute? They are modifiers of the element type like “p” for paragraph or “strong” for emphasis.
  • What is the anatomy of an HTML document
    Sections defined by code
    Defining doc type /
    Defining html /
    Heading /
    Character encoding <meta charset= utf- 8>
    Title. /
    Body. /
1 Like
  1. HTMS is a markup language which used to structure the content on webpage.
  2. It’s used to make content of page appear or act by the way you want it.
  3. We are learning HTML be for smart contract programming to learn how to build a complete project starting from website
  4. tags are used to encose the element inside it
  5. content</closing tag>
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
  7. The anatomy of HTML doc:
    it starts with the - doctype - basically just needed to make sure your document behaves correctly
    next is - This element wraps all the content on the entire page and is sometimes known as the root element.
    next is the element - 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.
    next - -his element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages.
    than the element
    next is the element - This contains all the content that you want to show to web users when they visit your page
1 Like
  1. What is HTML?
    A markup language that defines the structure of your content.

  2. What is HTML used for?
    Used 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 understand how HTML are used in coding and structuring of a website.

  4. What is an HTML tag?
    Commonly defined as a set of characters constituting a formated command for a web page. Tags provide the directions or recipes for the visual content that one sees on the web.

  5. What is the structure of an HTML tag?
    Head and body of a HTML document

  6. What is an attribute?
    An attribute contains 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?
    The Anatomy wraps up the basics of individual HTML elements, headers, meta, title, head, body, doctype, etc.

1 Like
  1. What is HTML?
    HTML ( Hyper text Markup Language) is the code that is used to structure a web page and its content.

  2. What is HTML used for?
    Hypertext is used 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?
    It is a major part of the front end website.

  4. What is an HTML tag?
    They are the text items that begin and end a text field.

  5. What is the structure of an HTML tag?

<?> to open and to close.
  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?
    Starts with the declaration of the document. Then a head and a body of text.

1 Like

1+ HTML stands for Hypertext Markup Language.

2+ It is not a programming language, but a code that is used to structure the content of a web page.

3+ HTML is the most basic way we can use to transmit / display content to users / visitors of the web page.

4+ Tags provide the directions or ways content appears on the Web.

5+

This is an element

6+ An attribute contains extra information about an element but does not appear in the content of the page.

7+ As follows:

(text) (...)
1 Like

The answers to questions 5 and 7 did not appear!

1 Like