HTML Reading Assignment

  1. What is HTML? A markup language that defines the structure of content on a webpage.
  2. What is HTML used for? To design a webpage
  3. Why are we learning HTML? It’s a foundational piece to understand and in which we can build upon.
  4. What is an HTML tag? The name of a specific element
  5. What is the structure of an HTML tag? tag is enclosed with < > and ends with </>
  6. What is an attribute? Extra information about an element that aren’t visible in the FE
  7. What is the anatomy of an HTML document? A required doctype, , , , , and any other formatting located in the body
1 Like
  1. What is HTML?

HTML (Hyper text Markup Language)

  1. What is HTML used for?

HTML (Hyper text Markup Language) is code (markup language that defines the structure) used to create a web page and its content, consisting of a series of elements used to enclose (or wrap) different parts of the content to make it appear a certain way, or act a certain way (i.e. content structured in set of paragraphs, list of bulleted points, images, data tables, etc.).

  1. Why are we learning HTML?

A working knowledge of HTML is useful not only for web developers but also for marketing specialists, designers and content creators, because these jobs frequently require you to optimise landing pages and web pages. Exposing your brain to new information helps you more quickly and easily connect the dots when you actually get to practically write code.

  1. What is an HTML tag?

Viewed as opening tag and closing tag, with content between, enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, etc.

  1. What is the structure of an HTML tag?

The opening tag, the closing tag and the content together comprise the element.

  1. What is an attribute?

Attributes (located inside the element) contain extra information about the element that you don’t want to appear in the actual content, such as allowing you to give the element a non-unique identifier that can be used to target it with style information, etc.

  1. What is the anatomy of an HTML document?

— the doctype, once meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. These days, they are basically just needed to make sure your document behaves correctly.

— the html element, wraps all the content on the entire page, sometimes known as the root element.

— the head element, acts as a container for all you want to include on the HTML page that is not content shown to page viewers. This includes keywords and page description to appear in search results, CSS (to style content), character set declarations, etc.

– meta charset=“utf-8” — This 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 the page, and is the title that appears in the browser tab the page is loaded in, also used to describe the page when you bookmark/favourite it.

— the body element contains all the content shown to web users when they visit the page, (i.e text, images, videos, games, playable audio tracks, etc.)

1 Like

1. What is HTML?
HTML is Hyper Text Markup Language

2. What is HTML used for?
HTML is used to structure a website and its content

3. Why are we learning HTML?
We are learning HTML to gain a basic understanding for coding languages.

4. What is an HTML tag?
An HTML tag is used to instruct how the content should be displayed.

5. What is the structure of an HTML tag?
As an example < p > is a opening tag and < /p > is a closing tag

6. What is an attribute?
An attribute is additional information you add to your element.

7. What is the anatomy of an HTML document?
An anatomy of an HTML document is basically all the elements combined to form an web page.

1 Like

What is HTML?
HTML (Hypertext Markup Language), is not a programming language, but a markup language, giving structure to content.

What is HTML used for?
It defines the structure of a web page and its contents. Examples include paragraphs, bulleted points , placing images and displaying tables. It uses elements to make different parts of the content appear or act is a defined way, such as making it bold, italic or adding a hyperlink.

Why are we learning HTML?
It’s very handy to understand HTML as it has many benefits and applications in different roles. Its a good foundation to start learning from, simple to understand and builds knowledge and skills that can then be applied to programming languages.

What is an HTML tag?
HTML has the concept of an Element, this consists of Tags and Content. The tag is what you use to wrap/encase your content to make it appear or act in a certain way, eg text to appear bold.

What is the structure of an HTML tag?
Tags contain the name of the element, wrapped in open and closing angle brackets < >.
We will use the element p, which refers to paragraph.
The opening tag, shows where the element starts (so where the paragraph begins)


The closing tag, shows where the element stops (so where the paragraph ends) and has a forward slash before the element name </p>
Between the tags, we have the content, that will be affected.

What is an attribute?
An Element at minimum comprises of opening tag, content and closing tag but they can also have attributes, additional information about the element that you don’t want to show in the content.
They will have a name and a value that will be separated by an equal sign.
The value should always be wrapped in quotation marks.
There should always be a space between the element name and the first and subsequent attribute names (if more than one attribute).
Example: <p class="note" group="one-liner">That's the way the dice rolls!</p>

An empty element can still have attributes, but has no closing tag, example is <img> used to place an image on a web page.

What is the anatomy of an HTML document?
Individual elements are combined to form an entire HTML page. They are nested elements. To get a complete page you need the following: doctype, root/html element, head element, meta, title, body.

doctype - legacy requirement but makes sure the document behaves correctly.

root/html - this element wraps the entire page.

head - this element acts as a container for stuff you want to include on the HTML page but is not the content you are showing to the viewers. It may include the CSS style sheet, character set or keywords and page description.

meta - sets the character set to be used, by setting it can avoid problems later.

title - sets the title which appears in the browser tab when the page is loaded - it is the description used by default for a bookmark/favourite.

body - this contains all the content that you want to display to the viewers.

1 Like

1.) HTML is a markup language that defines the structure of your content.

2.) HTML is used to make the content to appear or act a certain way on your site by using a series of various elements.

3.) We are learning HTML so we can set up a website that will be the internet link or portal to our Blockchain project.

4.) HTML tags are used to make a word a hyperlink, to italicize words, font size, make a line stand alone, etc. There are various kinds of tags.

5.) The structure of an HTML tag, (ie. a paragraph tag) consists of the opening tag, <p> "the content of the paragraph" and the closing tag, </p>.

6.) Attributes contain extra info about a certain element that you don’t want to appear in the actual website’s content.

7.) The anatomy of an HTML document is when you take your individual elements and combine them together to create an entire HTML page. It is the finished coded product.

1 Like

What is HTML?
HTML is the code that is used to structure a web page and its contents. It is a markup language that defines the structure of your content.

What is HTML used for?
HTML is used to structure a webpage and its content.

Why are we learning HTML?
Because it is the foundation of the web and is the language that describes the structure of a web page.

What is an HTML tag?
It makes a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller,

What is the structure of an HTML tag?
The opening tag, the closing tag, the content, the element.

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?

the doctype.
the html element
the head element
the title element
the body element

1 Like

What is HTML? It is a markup language

What is HTML used for? It is used for laying out web pages and presenting them in a nice way.

Why are we learning HTML? Web GUI is useful as a way for a user to interact with code running in background, you can include text, images, buttons, widgets, sliders and many other items which can improve the GUI visibly and increase functionality.

What is an HTML tag? tags are used to decide how text is displayed on the screen

What is the structure of an HTML tag? Usually its… opening tag, content, closing tag.
Some tags, for instance ones which load an image, do not have content or closing tag, but the image is loaded up in the opening tag.

What is an attribute? Attributes can be added within tags to affect the output, such as colour for instance.

What is the anatomy of an HTML document? This is a description for a collection of tags (and content) that forms a webpage. Obviously there are many variants but some tags are used very often, such as , and

HTML can be written in ‘strict’ form where it has to meet strict standards (usually for public websites) or ‘loose’ which is ok for little projects where you just want some functionality.

1 Like
  1. HTML is a hypertext markup language.
  2. HTML is used for building the structure of a web page and its contents
  3. We are learning HTML to be able to build a web page or GUI for people to interact with.
  4. HTML tags are keywords that define how your web browser will format and display the content of the web page .
  5. Structure of the tags are: < /closing>
  6. Attribute allows to customize a tag ,usually defined within the opening tag . Information is not displayed.
    7.Anatomy of HTML doc.is doc type, header, character set, title, body content, closing tags .
1 Like
  1. A markup language
  2. To structure websites and it’s contents
  3. As a precursor to javascript so we can work our way to the various blockchain developer language.
  4. Functions used to display the contents of the page.
  5. Opening tag, content and closing tag
  6. Code that contains extra information about elements that one doesn’t want to be seen in the actual displaying of the website content once made public.
  7. !DOCTYPE, HTML opening and closing tags, head " ", title " " and body " ".
1 Like
  1. HTML is a markup language.
  2. It is used to organize content for a web page.
  3. we are learning HTML to create a web page that can interact with the smart
    contracts we will be creating.
  4. An HTML tag is part of an element used to select content for manipulation.
  5. An HTML tag consists off opening and closing angle brackets, the name of
    the element and in the case of the closing tag a forward slash before the
    element name.
  6. An attribute contains extra information about the element that you don’t want
    to appear in the actual content.
  7. An HTML document must include
    a, the doctype.
    b, the html element.
    c, the heading
    d, the character set.
    e, the title sets title of page and describes page when you bookmark or favor
    it.
    f, The body contains all of the content.
1 Like
  1. What is HTML?
    Hypertext markup language

  2. What is HTML used for?
    It is used for structuring the code for a web page and the content in it

  3. Why are we learning HTML?
    To understand how to use markup language to alter content for a web page

  4. What is an HTML tag?
    It forms the open and close parts of a element in html code

  5. What is the structure of an HTML tag?
    An open and a close for an element for example < p > paragraph open < /p > paragraph close

  6. What is an attribute?
    It is extra information that you don’t want to appear in the web page content

  7. What is the anatomy of an HTML document?
    It is the elements structured to form the code for the web page

1 Like

What is HTML? Hypertext Markup Language

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

Why are we learning HTML? The basics of web development can help to develop the front-end of decentralized apps that help to interface with the backend smart contracts.

What is an HTML tag? It consists of open and closing tags that encompass elements such as text on a webpage.

What is the structure of an HTML tag? It consists of the name of the element which is wrapped in an opening and closing angle brackets. It is offset by the closing tag that is the same as the opening, except it includes a forward slash.

What is an attribute? It is extra information that you want to incorporate into the element, but you don’t actually want to reveal in the content.

What is the anatomy of an HTML document? element wraps entire content on a page. element includes keyword searches and page descriptions that appear on web search browsers. element sets the title of the webpage. element contains the content that appears on the webpage including text, images, video, etc.

1 Like

What is HTML? Hypertext Markup Language

What is HTML used for? It is used to structure a web page and its content.

Why are we learning HTML? A knowledge of HTML is the first step in having the ability to be independent in the creation of web content.

What is an HTML tag? A tag is an instruction set surrounding content that is used to make the content appear or act in a certain way.

What is the structure of an HTML tag? An opening tag and closing tag with the content in the middle. Attributes are also utilised within the tag to provide additional information.

What is an attribute? An attribute is extra information about an element that does not appear in the actual content.

What is the anatomy of an HTML document? A HTML document is prefaced by Doctype which is mostly reduntant today but it provides the computer notice that the page is a HTML document. All HTML content is set within an element of with a Header, Title and Body. The Header () section contains information for web search results, character sets utilised and other information that is not present in the actual content designed for display. The Title element is used to display the title page to the viewer as well as naming what the bookmark for the page will be called. The Body is the actual content or substance of the webpage presented to the viewer.

1 Like
  • What is HTML? Hypertext Markup Language

  • What is HTML used for? Basic layout for websites

  • Why are we learning HTML? To understand the relationship between the user interface and a smart contract

  • What is an HTML tag? A container for the various elements within a web page

  • What is the structure of an HTML tag? Open with <> and close with </>

  • What is an attribute? Additional information relating to an element that is not for display in the content

  • What is the anatomy of an HTML document?
    !DOCTYPE html
    html
    head
    meta data for SEO as example
    title, close title
    close head
    body
    …content…
    close body
    close html

1 Like
  1. What is HTML?
    HTML is Hyper text markup language is the code used to structure a web page.

  2. What is HTML used for?
    HTML defines the structure of the content within your web page.

  3. Why are we learning HTML?
    We are learning HTML code to understand the fundamentals of the code used to create websites.

  4. What is an HTML tag?
    HTML tags are hidden keywords within a web page that defines how your browser must format or display the content.

  5. What is the structure of an HTML tag?
    Most tags must have two parts -an opening<> and a closing</> to each tag.

  6. What is an attribute?
    Attributes allow you to customize a tag and are defined within the opening of a tag.

  7. What is the anatomy of an HTML document?
    Every HTML document consists of two elements:

  • Head elements – provides page title and general page formatting commands
  • Body elements – put the main HTML text in this part.
My Title Here
1 Like

1)HTML is Hypertext Markup Language
2)It is a protocol that creates websites
3)So that we can be able to interact with smart contract
4)it is use to start and end an element.
5)…
Opening tag and closing tag
6)Attributes contain extra information about the element that you don’t want to appear in the actual content
7)It contains the opening tag, the closing tag, the content, and the element

1 Like

5)<>(opening tag)
</>(closing tag)

1 Like

[quote=“TCCInvestors, post:9, topic:3055”]

<?> <?/>

[/quote 1. What is HTML?

HTML is short of H yper t ext M arkup L anguage, so it is not a programming language.

  1. What is HTML used for?

It is used to structure data on a certain way on web page.

  1. Why are we learning HTML?

We are learning this language so that we can structure text for JAVA script. The goal is that content appear a certain way, or act a certain way.

  1. What is an HTML tag?

An HTML tag is one of elements we use to structure appearance of txt. HTML tag consists of the tag name in angular brackets. It marks the begins and the end of each section (title, heading, paragraph… it can italicize words, make the font bigger or smaller…). By reading tags, browser will know how to show the content.

  1. What is the structure of an HTML tag?

Opening tag - <>

Closing tag - </>

  1. What is an attribute?

Atributes contains additional information about elements we don’t won’t to show in visible content. Each attribute has name and value.

  1. What is the anatomy of an HTML document?

Anatomy is a layout of HTML, its structure. It consist of preamble part, root element, head element (things we want to include in HTML but not to be shown in content), character set, title element (will be visible) and body (all visible content) element.

1 Like

@ScottAU
Welcome to forum :smiley:

1 Like

HTML stands for Hypertext Markup Language. HTML is a markup language, not a programming language and is more concerned with the structure of content rather than what that content does or how it looks.

Most decentralized applications will need a webpage. HTML is the backbone of every webpage on the internet.

HTML tags are keywords that define how a web browser will format and display content.
HTML tags are composed of four things:

  1. The name of the element.
  2. Angle brackets
  3. Forward slash in the closing tag.
  4. Attributes.

Attributes are extra information about the element embedded in the opening tag.

The HTML element

  • The head element–comprises all of the things that will not be shown a the webpage (i.e., character set declarations, CSS, keywords, title, etc.).

  • The body element–comprises all of the things that will be shown a the webpage (i.e., text, images, links, tables, audio, video, etc.).

1 Like