HTML Reading Assignment

  1. HTML is short for ( H yper t ext M arkup L anguage)
  2. HTML is a markup language used to structure a website’s content.
  3. This is the basic structure for building websites and we will need it to as we learn Java scripting.
  4. A tag is used for nestling text in HTML. For example

    ,

    are used to format text as a paragraphs.
  5. Tags are structured with an opening tag (eg. ), the content and closing tag (eg. .
  6. Attributes are extra info about the element that does not appear in the actual content
  7. The element of an HTML document consist of: the opening tag, content, and closing tag.
1 Like

1.HTML is a markup language that defines the structure of your content
2. HTML is used as the base layer of what content is used in a web page
3. We will be using javascript and html to link blockchain codes to websites
4. A tag is the opening and/or closing of an element which also contains the name of the element inside the angle brackets
5. this is the opening tag.
</element name> this is the closing tag for the same element.
6.An attribute contains extra information about the content that you don’t actually want to appear as content.
7. <element name attribute name= "attribute value"> Content </element name>

Edit by @gabba: use preformatted text balise for code Preformatted text

1 Like

Answer:

  1. HTML stands for Hypertext Markup Language.
  2. Its function is to organize information on the web browser page.
  3. HTML is the basic building block of the World Wide Web.
  4. HTML tags are boundaries and rules for the text wrapped inside of them.
  5. It consists of the Opening Tag, the Closing Tag, element, and the content.
  6. An attribute is a particular state assigned to a text inside the outlined element. For example, if the text is bold or italic.
  7. It consists of the document type, beginning, and end of the HTML document, head, title, body, and all the information for user consumption.
1 Like
  1. What is HTML?
    Hypertext Markup Language - Not a programming language but a markup language.

  2. What is HTML used for?
    To wrap or enclose content and make it appear (or act) a certain way on the screen.

  3. Why are we learning HTML?
    Later, we will be learning how to build smartcontracts that interact with a website. In order to build the website, we need to know HTML.

  4. What is an HTML tag?
    The markup code includes the name of the element and ultimately determines how content appears on the screen. For example in

    element (paragraph),

    is the opening tag.

  5. What is the structure of an HTML tag?
    Most HTML tags have an opening tag and a closing tag. Both are similar in that it includes the name of the element, for example

    while the closing tag consists of a forward slash to indicate the closure of the element

Some elements such as an empty element does not need a closing tag. For example, is used to insert an image to the site. Since this isn’t affecting some other content, it doesn’t need to be closed.
6. What is an attribute?
Extra classification you’re giving to the element that you would otherwise not want to appear in the actual content. Attributes can be used later on to categorize and/or identify specific elements.
7. What is the anatomy of an HTML document?
Opening tag, content, and closing tag.
You need to tell the page where the HTML content starts (and ends) and then what the header, body, and other content is.

1 Like
  1. What is HTML?
  • It is a markup language of that defines the structure of your content
  1. What is HTML used for?
  • HTML is used to build websites.
  1. Why are we learning HTML?
  • We are learning HTML because the language involved is easy enough for us to construct a working project
  1. What is an HTML tag?
  • An HTML tag is used to create an element
  1. What is the structure of an HTML tag?
  • The structure of an HTML tag is that the entire element starts with an opening tag and ends with a closing tag. Within the two parts, there will be content.
  1. What is an attribute?
  • An attribute is extra information that the creator does not want to appear in the content
  1. What is the anatomy of an HTML document?
  • The anatomy of an HTML document consists of head and body elements. This will be represented by several open and closed tags.
1 Like

@gabba

 Like this: < element name > is the opening tag. < /element name> is the closing. Pre helps; the spaces change the game as well. Thank you @gabba 
1 Like
  1. What is HTML?: As the name says, it’s a Markup (Descriptive, Non-Procedural) Language for HyperText

  2. What is HTML used for?: Mostly for composing (defining structure and content) web pages to be rendered by Web browsers

  3. Why are we learning HTML?: So that we can write markup code directly or generate it through JavasScript for creating Web pages that interface with DApps

  4. What is an HTML tag?: It’s a particular language construct that defines delimits some type of web content

  5. What is the structure of an HTML tag?: A tag consists of a tag name, optionally followed by attributes, enclosed by angle brackets (e.g. <p class=“my class”>)

  6. What is an attribute?: It’s extra information used to define elements of a given type

  7. What is the anatomy of an HTML document?: An HTML document is composed of a doctype tag followed by a hierarchical nested/sequential structure of tag pairs enclosing different types of content, including header and body

1 Like
  1. Hypertext Markup Language

  2. HTML is used to structure content on web pages

  3. It’s integral for using and directing web services, and spares one from having to hire other with expertise

  4. Tags bookend and include the name of the element

  5. Tag opening structure is , closing tags are identical but include a “/”, i.e. < /name of element>

  6. Attributes can be added to elements and add extra info that will not be showed to the reader of the web page. They are placed in the opening tag and consist of name=“value”, i.e <name of element class=“editor note”

  7. HTML anatomy consists of
    !DOCTYPE
    Root element
    Head (with possible attributes)
    Body
    Root Element

1 Like
  1. HTML, or Hypertext Markup Language, is the language for coding the structures of websites.
  2. websites
  3. How else can I show off my knowledge? It’s to be able to put our code into a practical form for people to use or experience.
  4. The tags demarcate elements, which are used to construct the website.
  5. content is placed between opening and closing tags. Empty elements do not need closing tags or content.
  6. Attributes are used to provide additional information potentially used for categorization purposes.
  7. The anatomy has , some vestigial preamble. Then , or the root element. The head element contains information that doesn’t appear in the content of the website, including the CSS used for stylization. enables the document to include characters from most languages. element, which sets the title that appears in the browser tab. element which contains all the content which is visible to the users.
1 Like

1.- HTML is a markup language. 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.

2.- Is used to structure a web page and it’s content.

3.- Is basic to create a web site so it can interact with smart contracts.

4.- Where an element starts and ends to take effect.

5.- For beggining is the name of the element wrapped in opening and closing angle brackets and for the ending same as begining but with forward slash before the element.

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

7.- Individual elements combined to form an entire HTML page

1 Like
  1. HTML stands for Hipertext Markup Language and is a code for structuring web sites
  2. It structures how websites should be interpreted by browsers
  3. In order to have some basics, and to be able to connect smart contracts with websites to create dapps
  4. Tags are used to create elements
  5. <> and </> in between the brackets you put the element
  6. Attributes specify extra features of content (bolded text etc.)
  7. I wrote code below but it only shows the text :))))
The anatomy of a HTML doc Ivan rulz!
1 Like
  1. markup language
  2. to program websites and its content
  3. To create a web page for yourself
  4. tag are used to create page and its content
  5. opening and closing
  6. attribute modify and provide extra information for some elements
  7. The anatomy of an HTML document includes:
    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. What is HTML?
    Stands for Hyper text Markup Language. It is a markup language not a programming language.

  2. What is HTML used for?
    HTML enables the creation of simple web pages and web page elements like bolding a line of text, adding static images, making lists of items, etc.

  3. Why are we learning HTML?
    Because HTML is the basic foundation of web design and will teach us the fundamentals

  4. What is an HTML tag?
    An HTML tag is a predefined set of characters that defines the start and the end of the HTML element.

  5. What is the structure of an HTML tag?
    <p> <body> <head> :arrow_right: opening tags
    </p> </body> </head> :arrow_right: closing tags

  6. What is an attribute?
    An attribute is extra information for tags that will not be seen as content by viewers.

  7. What is the anatomy of an HTML document?
    The anatomy of an HTML documents is the base structure of HTML tags that need to be used when we start to write a new HTML doc so everything will function properly.

1 Like
  1. Hypertext Markup Language
  2. Used to structure a web page and its content
  3. To be able to build the front end for smart contracts
  4. A tag is the difiner for the markeup language
  5. An attribute in HTML/XML is used to denote special features/charateristics of an element or tag
  6. It specifies additional properties regarding the content that is included in a tag

< html>
< head>… < /head>
< body>…< /body>
</ html>

1 Like

What is HTML?

  • Hyper Text Markup Language
    What is HTML used for?
  • Making web pages
    Why are we learning HTML?
  • We will need to interact with our smart contracts and having a web interface is the way to do it.
    What is an HTML tag?
  • It is used to create an element on a web page, it can contain text, images or links to other information.
    What is the structure of an HTML tag?
  • an opening tag telling the page what to display, the information you want displayed and a closing tag
    What is an attribute?
  • It sets an tag on a part of your document that will allow you to change the style of the specific element
    What is the anatomy of an HTML document?
    • It has a head that contains information on what your web page will be displaying, a body that will include all of your websites content
1 Like
  1. HTML (Hypertext Markup Language) is a language used to create websites. It isn’t technically a programming language but instead is used to format the content within it.

  2. HTML is used to structure the format of a website.

  3. We are learning HTML so we can modify websites to interact with the blockchain which is a practical application for blockchain development.

  4. An HTML tag is something that modifies content created within it.

  5. The structure of an HTML tag is beginning before the content and ending after the content.

  6. An attribute is used to assign additional variables to the content without affecting how it looks on the websites. For example you can assign the content to a variable to be able to call it later in the HTML code.

  7. An HTML document consists of the following:
    DOCTYPE html = used to prevent errors later on
    html/html = wraps all content of document
    head/head = used for all stuff that isn’t content
    meta charset’“utf-8” = sets the list of characters
    title/title = sets the name of the tab in the browers
    body/body = this wraps all stuff that is the content of the document

1 Like

1-It is a Markup language
2- it is used to to structure content on a web page
3- in order to build a web page
4- an html tag defines a action which is to be taken with a particular content
5- and opening putting the tag between angular brackets and a closing putting forward slash and the tag between angular brackets
6- an attribute contain additional information about the element which you don’t want to appear in the content
7- it is the structure in which you combine different elements into a webpage

1 Like
  1. HTML is a language that define the structure of a content.
  2. To see clearly and in a friendly way a code
  3. It will enable us communicating our knowledge
  4. An element that affect a content in a certain way
  5. Oopening tag, attribute, content, closing tag
  6. Extra information about the element
  7. DOCTYPE html - makes sure the document behaves correctly
    html - wrap all the contnet
    head - things that inside but not visible for the viewer
    meta charset=“utf-8” - helps with the different languages
    title - the title :slight_smile:
    body - all the visible content
1 Like
  1. HTML is Hyper Text Mark Up Language. It is WHAT is on the web page
  2. HTML is used to display things on a web page
  3. so that we can build a basic web page
  4. it represents an element in the DOM
  5. an HTML tag has an opening < then the tag name ex. h1, then any attributes ex. id/class, then a closing > then the body of the tag ex. text, then a closing tag />
  6. an attribute gives elements a name or other functionality
  7. an HTML document starts with a head which contains meta data and where you can link other files to your document then you typically have a body which contains a header a main section and a footer. Each of these sections can have several other sections and html tags within them.
1 Like

What is HTML?
Hypertext Markup Language

What is HTML used for?
Used for building websites and their structe of pages

Why are we learning HTML?
To have a base to connect our dapps with the website.

What is an HTML tag?
Something to define what type of content we have on the website. For example < h1 > , < h2>, < h3>…

What is the structure of an HTML tag?
opening tag and close 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> - 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