HTML Reading Assignment

  1. HTML is not a programming language, it is a markup language that defines the structure of your content.
  2. It is used to structure a web page and its content.
  3. To understand how web works and build frontend, to see results of coding fast.
  4. Tag is command for browser that to do.
  5. Opening tag, closing tag and content.
  6. Attribute contains extra information about element (opening tag, closing tag and content).
  7. It consist of basic elements: the doctype (old school something), like root element (all others inside it), element – didn’t visually appear in page, but contains useful information about page, element – contains all content that you want to show, main element, sets usable characters, element – sets title of page, seen in browser tab the page is loaded in.
1 Like
  1. HTML stands for Hyper Text Markup Language.

  2. HTML is used for creating websites, more specific to structure a webpage document and its content.

  3. We need to learn HTML in order to be able to have a frontend for the smart contracts we are creating as backend. With HTML we can create a website that is able to show the work we have done with coding in smart contracts.

  4. An HTML tag is used to define content on the website.

  5. The structure of an element is that is begins with an opening tag, followed by the content, followed by a closing tag.

  6. Attributes point to the HTML tags and contain extra information about the element that we do not want to appear on the content.

  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 element also includes the title element and the meta element.

2 Likes
  1. HTML is hypertext markup language
  2. HTML is used for structuring content (webpage)
  3. We learn HTML to be able to build user interfaces for applications
  4. Tags define what kind of content is introduced
  5. Structure of an element is opening tag (defines what kind of content is being used, wrapped in angle brackets), closing tag (same as opening tag but a forward slash before the definition and also wrapped in angle brackets), the content (usually inserted between opening and closing tags)
  6. Attributes can contain extra information about the element for example class that makes later modifications easier.
  7. First define document type, html tags (head and body tags should be inside html tags), head tags (links to stylesheets, fonts etc…), body tags (page content)
1 Like

1 HTML is the language used to design web pages and make sure the browser can execute it following a standard set of code elements, Tags and other instructions.

2 It is used when designing and creating web pages used by browsers

3 Ultimately what we create in code we want to up=load to the web so others can access it.

4 It is a special instruction that the browser can interpret and act on - It sets out elements which contain content and with the exception of images has an open and closed structure.

5 The structure of an HTML Tag is a “Container” for other elements of the web page structure and content Eg.

My test page this shows the content of the "Head" Tag. 6 An Attribute is information about some element of the code that you don't want to show up in the page - it's like a placeholder that helps understanding of the code So An attribute is used to define the characteristics of an HTML element and is placed inside the element's opening tag. 7 The anatomy of an HTML document is made up of some standard HTML TAGS in order that the Browser sets it out properly - Some are Historic and My test page - Logical structure Title Body etc.
3 Likes
  1. Abbreviation of Hypertext Markup Language
  2. To structure content
  3. because we want to build blockchain frontends
  4. a short word wrapped in <> to define the beginning and ending of an element
  5. < name and maybe attribute>
  6. an option to add information about an element within the opening tag
  7. opening html-tag, header and body element, closing html-tag
2 Likes
  1. Hyper Text Markup Language - that defines the structure of my content
  2. HTML s used to display images or text a certain way or make the site behave a certain way
  3. Every webpage uses html elements therefore a basic understanding of html is necessary to build sites or applications
    4.an html tag is used to wrap or enclose different parts of the content to make it a ppear a certain way or act a certain way
  4. the opening/closing tag </> and the content make up the whole element
  5. attributes contain extra information about the element, that you dont want to appear in the content
  6. a basic html website is made up out of a body element and header element
2 Likes

1.HTML is Hyper Text MarkUp Language CTRL + U in shows the HTML on a web page in IE

2.HTML is used to link webpages together and for formatting placing of text and media elements on a webpage.

  1. We are learning HTML because we need to develop a “Front End” or user interface to our programs.

  2. A HTML tag <> </> is used to tell the browser how to display the content and the sort of content

  3. structure is <tag name attribute> Content </tag name>

  4. an attribute is extra information about the tag

  5. < !DOCTYPE html>
    < html>
    < head>
    < meta charset=“UTF-8”>
    < title>Test Page < /title>
    < /head>
    < body>
    < p> Stuff < /p>
    < /body>

3 Likes
  1. HTML is an acronym for Hypertext Markup Language, which as the name implies is a markup language, not (as sometimes mistakenly believe) a programming language
  2. HTML is used for structuring web pages and its content (which could be e.g. text, images, forms, buttons etc.)
  3. HTML is the basic language for creating a website, and for our future DApps we will certainly need such a website (“front-end”) that interacts with the smart contracts behind
  4. HTML tags are the building blocks for describing HTML elements. There are opening and closing tags, see next question.
  5. HTML tags are followed by content and a corresponding closing tag, but there are also tags (like <img>) where there is no content and the closing tag is not needed.
  6. Attributes can be specified inside opening tags and contain extra-information about the element that is not part of the content.
  7. A HTML document consists of:
  • <!DOCTYPE html> Doctype (historical artefact)
  • <html> element (enclosing the whole HTML document)
  • <head> element, containing all content not to be shown [inside <html> element]
  • <meta charset="..."> element, describing the used character set (e.g. UTF-8) [inside <head> element]
  • <title> element, setting the title of the page [inside <head> element]
  • <body> element, containing all the content to be shown [inside <html> element]
5 Likes

Q&A

  1. What is HTML?
    Hypertext markup language, a language to structure content on webpages

  2. What is HTML used for?
    Websites, ie interlinked online content rendered within browsers

  3. Why are we learning HTML?
    To be able to create simple websites in which we can later run dapps that interacts with the
    blockchains, and to get an easy start into programming

  4. What is an HTML tag?
    A (pair of) identifier(s) usually consisting of an opening and closing pair, that structures a certain piece of content, like a header, a list element, etc. Sequences of tags together structure the content of a document.

  5. What is the structure of an HTML tag?
    A sequence of letters (>=1) within tags (< and >), including the symbol / when it’s a closing tag. In between an opening and a closing tag is usually the content.

  6. What is an attribute?
    Extra information within tags that indicate how the content is to be rendered, for example font size, the location of an image file, background color, et cetera.

  7. What is the anatomy of an HTML document?
    Traditionally a HTML file always starts with the tag, followed by the opening tag. Those are then usually followed by opening the tag and setting the UTF8 char set and the page title and closing the element. Then the tag opens the main elements of the page, in which text, links etc can be included. Then the opened tags are closed in the order ,

5 Likes

What is HTML?

It’s a markup language

What is HTML used for?

To structure content on a webpage

Why are we learning HTML?

It’s crucial for the front end of development, and it’s an easy introduction to programming in general

What is an HTML tag?

The tags define the start and finish of an element, as well as containing important information about the element type

What is the structure of an HTML tag?

example

hdgishd

What is an attribute?

An attribute contains extra information about an element that you don’t want to appear as content

What is the anatomy of an HTML document?

A collection of elements that form a page. You begin with the Doctype, then the html insert, next the head followed by the body, and the meta charset defines the characters. You can also use a title.

1 Like
  • What is HTML?
    hypertext markup language
  • What is HTML used for?
    to give content to a web page
  • Why are we learning HTML?
    HTML will help us build the front end of our blockchain dapp , this way we can brag about it with our friends :smiley:
  • What is an HTML tag?
    tags are used to form the html document
  • What is the structure of an HTML tag?
    opening tag closing tag and atributes
  • What is an attribute?
    are different characteristics you add to your tag
  • What is the anatomy of an HTML document?
    html, head, title, body
2 Likes

HELPFUL NOTE: writing html tags in your answer will not display the HTML tag in your post, instead it will apply the HTML tag to your content in your post. I got around this by adding a space between the open and close characters of the tags < >, see below for examples.

  1. What is HTML? Hypertext Markup Language used to create the structure of a webpage

  2. What is HTML used for? Creating the front end of an application that is accessible through a browser.

  3. Why are we learning HTML? So that we can create the front end of our blockchain applications

  4. What is an HTML tag? An element used to define the structure of the code that resides within the enclosing tags of a single element. Ex. < strong > Hello World! < /strong >.

  5. What is the structure of an HTML tag? The structure of an HTML tag is an element and the element starts with an opening tag (ex. < p >) followed by content (Ex. Hello World! ), followed by a closing tag (Ex. < /p >).

  6. What is an attribute? Resides inside the opening tag and it adds information that we may want to reference in our CSS and or JS code to change the content residing in the element or run a JS function that will add content and dynamically change. The information in the attribute is not intended to be displayed as content on the page. It is purely for programming purposes. An attribute is made up of the attribute name and the attribute value associated with the attribute name, both are necessary.

  7. What is the anatomy of an HTML document? The anatomy is made up of the following HTML elements doctype, html, meta, head, title, and body.

5 Likes
  1. What is HTML?
    It’s a markup language that stands for Hypertext Markup Language
  2. What is HTML used for?
    It is used for structuring web pages and their content.
  3. Why are we learning HTML?
    To get a first approach on how commands have different effects on the computer’s behavior.
  4. What is an HTML tag?
    It is a command that instructs web browsers what to do or how to show contents.
  5. What is the structure of an HTML tag?
    Starts with a “less than” sign followed by the name of the element, then a space, then the attribute (if any) and finally a “greater than” sign.
  6. What is an attribute?
    Attributes provide additional information about the element.
  7. What is the anatomy of an HTML document?
    < !DOCTYPE html> , < html>, < head>, < body>, < meta charset=“utf-8”>, < title>, and their corresponding closing tags.
3 Likes

What is HTML?

HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. 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.

What is HTML used for?

HTML can be used 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 hyperlink to somewhere else, can italicize words, and can make font bigger or smaller.

Why are we learning HTML?

Because we need to be able to build an application that can interact with a blockchain and a fundimenal knowledge of web development is needed.also because it is a very friendly langauge for begginers.

What is an HTML tag?
A tag states where the element begins, or starts to take effect and where the element ends.

What is the structure of an HTML tag?
Opening Tag-> element-> Content-> Closing 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?
It wraps up the basics of individual HTML elements.

1 Like

HTML Reading Assignment

  1. What is HTML?
  • Hypertext Markup Language
  • What is HTML used for?
    • Mark up the structure of a webpage and it's content.
  • Why are we learning HTML?
    • To make a dApp we need be able to provide a user interface. This can be easily achieved using a website.
  • What is an HTML tag?
    • HTML tags are hidden keywords that define how a web browser must format and display content.
  • What is the structure of an HTML tag?
  • What is an attribute?
    • An attribute is a modifier that changes the default functionality of an element. For example an href attribute will add a hyperlink reference. Link to Coding Homepage
  • What is the anatomy of an HTML document?
    • Doctype
    • HTML open tag
      • head open tag
      • head closing tag
      • body open tag
      • body close tag
    • HTML Closing Tag
    2 Likes
    1. A markup protocol for text
    2. Presenting text and web interfaces on webpages
    3. We need interfaces for our webapps
    4. Delimiters that indicate the beginning and end of marked up regions
    5. opening or closing <> </>
    6. configuration value for an element
    7. DOM - Head and Body
    1 Like
    1. HTML (Hypertext Markup Language) is a markup language
    2. it is used to structure a web page and its content.
    3. to have a front end (user interface) to the blochain app
    4. html tag ‘group and delimit’ what needs to be formatted in a certain way
    5. is the opening tag and tells when the formatting starts. is closing tag and tells when the formatting ends. ‘x’ is the command/format that we want to use for the content. (content is what is between the two tags.
    6. attribute can be added to the opening tab as additional information on the element which you don’t want to display. (still I didn’t understand it very well )
    7. < !DOCTYPE html> , < html>, < head>, < body>, < meta charset=“utf-8”>, < title>
    2 Likes

    What is HTML? It’s not a programming language, but a markup language that defines the structure of your content on a web page.

    What is HTML used for? HTMLis used for creating web/editing web pages

    Why are we learning HTML? To properly setup web presense via a website.

    What is an HTML tag? To make something stand out. word or image

    What is the structure of an HTML tag? tags make up parts of an element. Example, Opening

    and Closing

    What is an attribute? Can contain extra information about an element ( not displayed in actual content)

    What is the anatomy of an HTML document? Many elements combined, , , for example.

    1 Like

    What is HTML? Hypertext markup language.
    What is HTML used for? Website pages. Code used for web page and its content.
    Why are we learning HTML? To build the front end so that the user can access the smart contract in the backend.
    What is an HTML tag? it is the angular bracket that contains the element.
    What is the structure of an HTML tag? The opening and closing tage with content in the element.
    What is an attribute? they contain extra information of the element
    What is the anatomy of an HTML document?

    similar to XML
    1 Like
    1. Markup language. It is the tool that helps us create a structure of content we wont to show other people.
    2. It is for creation general standards. Every browser understand this standard so We Can show our created contend worldwide.
    3. We need to create fully functional apllication. HTML is our frontend and other languages are backand. Without front and backand could be useless
    4. space where we put our element. It shows us the begginning of element and and of the element.
    5. name of the element, angle brackets, forward slash
    6. extra information about the element but it is not shown in main content
    7. There are some elements that are never shown in the browser but decide in some circumstances about elements that are visible everytime not visible visible
    1 Like