HTML Reading Assignment

  1. HTML is not a programming language; it is rather a markup language.
  2. It is used to define the structure of web content.
  3. Because every application such as a dapp has a UIX and needs to be presented right and appealing in order to be successful.
  4. A tag consists of the name of the element surrounded by angle brackets.
  5. Most tags consist of an opening and a closing tag. The closing tag is different from the opening tag in that it contains a forward slash after the opening angle bracket. The content of the element is placed between those two tags.
  6. Attributes contain additional information about the element that shouldn’t appear in the actual content.
  7. These are the main elements of a HTML document:
  • The doctype - specifies that this is an HTML 5 document.
  • The root element - wraps around the entire content of the page.
  • The head element - container for anything that is not shown to the users of the site.
  • The charset - sets the characters to use the utf-8 standard which allows for the use of many characters and languages on the site.
  • The title element - sets the title of the page that appears in the browser tab and when the page is bookmarked.
  • The body element - contains all the content that is shown to the users.
1 Like
  1. What is HTML?
    A long list of elements that supposed to be wrapped around some text. And some that are not wrapped around anything like fx the element for an image.
  2. What is HTML used for?
    It is used to control how text will appear on a website. and also to insert things like images in between the text and background color behind the text.
  3. Why are we learning HTML?
    To be able to build an interface to smart contracts so we can create a full product that can be used by a user/customer and not just some backend code.
  4. What is an HTML tag?
    The opening and closing tags in an html element that controls where an element starts and where an element finishes.
  5. What is the structure of an HTML tag?
    This content is inside the HTML tag </something in here>
  6. What is an attribute?
    It is extra information about an html element. The attributes are put inside the opening tags of html elements.
  7. What is the anatomy of an HTML document?
    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.HTML is Markup lenguage that defines the structure of the content
2.Its used to structure a web page and its content like paragraphs,images,links…
3.We learn because we have to connect our future crypto project ,smart contract with HTLM web and have complete product.
4.HTLM tag is the root element -wraps all the content on the entire page
5.Structure of HTLM tag contains and
6.Attribute is image element and contains src(source) attribute contains the path of our image file and alt (alternative)attribute that shows the descriptive text for users who cannot see the image.
7.Anatomy of HTLM document contains this elements

 : <!DOCTYPE html>, <html> ,<head>,
<meta charset="utf-8"> , <title> and <body>

Edit @Ivga80 : (You can use the preformatted text button to show the code in the post)

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

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

  3. Why are we learning HTML?
    -We are learning HTML so that we able to create a website/Application that can interact with the smart contracts.

  4. What is an HTML tag?
    It basically instructs how & what content should be shown on the browser.

  5. What is the structure of an HTML tag?
    Opening and closing <> </>

  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 Like
  1. Hypertext markup language.
  2. It is the language used to make and display websites correctly , to include text , images ,links and other attributes .
  3. We are learning HTML to construct an application , website ,that can interact with a smart contract …Blockchain front ends .
  4. An HTML tag is used for creating an element , tags define what content goes into the script.
  5. The structure of a tag is … < element/attribute />
  6. An attribute is information added to the element i.e font size ,colour, italics , etc
  7. The structure is the way that your page is laid out, including elements , content description. font size, colour, images, etc
<!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?
HTML is the code / markup language used to structure a web page and it’s content.
It is NOT a programming language.

2. What is HTML used for?
HTML is used for structuring the content in a web page.

3. Why are we learning HTML?

  • We are learning to create web pages.
  • HTML is the most basic tool in creating a web page.
  • The web pages represent the ā€œAccess Gateā€ to the Smart Contract.

4. What is an HTML tag?
An HTML tag is a tag name surrounded by < and > brackets.

5. What is the structure of an HTML tag?
In most cases, the structure of an HTML tag consists of an Opening Tag and a Closing Tag.
<p> - Opening Tag
</p> - Closing Tag

6. What is an attribute?

  • Attributes represent the characteristics of the element.
  • The Attributes will not appear in the content.
  • The Attributes will appear in the Opening Tag.
  • The Attribute is made of two parts: name and value.

7. What is the anatomy of an HTML document?

Basic Structure of an HTML document
HTML Structure

<!DOCTYPE html> - This tells the browser that the file you are loading is an HTML document.

<html> </html> - This element wraps all the content on the entire page, sometimes known as the root element (No idea what it means :slight_smile: ).

<head> </head> - This element acts as a container for all the things you want to include on the HTML page that is not the content you are showing to your page’s viewers.

<body> </body> - The Body represents all the content that is visible to the web user that is visiting your page.

1 Like

Answers

  1. HTML is not a programming language, it’s a markup language that defines the structure of your content. It consists of a series of element, which you use to wrap different parts of the content.

  2. HyperText Markup Language is the code that is used to structure a web page and its content.

  3. To have a base to build websites front-end for our smart contracts that we will develop.

  4. HTML tag is an element wrapped in opening and closing angle brackets. Tags can make a word or image hyperlink to somewhere else, can make the font bigger or smaller and so on.

  5. There are opening tags (that consists of the name of the element wrapped in angle brackets) and closing tags (the same as opening tag, except it includes a forward slash before the element name). Tag don’t have closing tag.

  6. Attributes contain extra information about the element that you don’t want to appear in the content (i.e. class, href, alt…).

  7. Anatomy of an HTML document explain how individual elements are combined to form an entire page.

1 Like

nice answer! :wink:

Ivo

Thank you very much :smiley:

  1. Hypertext Markup Language
  2. It is the protocall that all web pages use to properly display information on your computer screen FROM the internet
  3. Because without a knowledge of it you can’t put your information/crytpo/business on the web. Everything we are doing resides on the web and HTML is the language we use to maipulate this environment
  4. HTML Tag tells the browser that this is an HTML document. It is also what defines different parts of the HTML document with regards to the text being bold or italics, headings, graphich placement holders, embeded items etc.
  5. …variable…
1 Like

~1: HTML is a programming language.
~2: HTML is used to write code that will display as webpages in a browser.
~3: to make a userinterface/display for blockchain related applications/website.
~4: A tag sets different types of content of a page.
~5: start: <tag, stop /tag>
~6: attributes are qualitative or additional information about the content of a tag that are not displayed on the page.
~7: head and body

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

  2. HTML is used for structuring a web page and its content.

  3. We are learning HTML because we have to be capable of creating applications and websites to have a background for smart contracts.

  4. An HTML tag is what control where an element starts (opening tag) and where it ends (closing tag).

  5. The structure of the opening tag is and of the closing tab </name of the element>.

  6. An attribute adds extra information or characteristics about the element and won’t appear on the content.

  7. The anatomy of an HTML document is as follows:

<!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?
    HTML stands for HyperText Markup Language.

  2. What is HTML used for?
    HTML is the protocol for formatting the content of a website.

  3. Why are we learning HTML?
    We are learning HTML to be able to create static websites. By adding JavaScript we can create dynamic websites, which are able to interact with the blockchain using DApps.

  4. What is an HTML tag?
    Tags are used to mark the start and the end of an element. You can use tags to give the content of the element a certain format.

  5. What is the structure of an HTML tag?
    Tags in HTML mark the start (opening tag) and the end (closing tag) of an element. Between the tags you can find the content of the element.

  6. What is an attribute?
    Attributes contain extra information about the element, but are not shown in the actual content.

  7. What is the anatomy of an HTML document?

  • The doctype is a required preamble of the HMTL document.
  • The HTML element wraps all the content on the entire page and is sometimes known as the root element.
  • The head element is used as a container for keywords, which are used by search engines. But the content of the head element is not shown to the page’s viewers.
  • The charset element sets the character set (usually UTF-8) of your document.
  • The title element sets the title of your page, which is the title that appears in the browser tab the page is loaded in.
  • 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.
2 Likes

What is HTML?
It’s a markup language.

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

Why are we learning HTML?
The knowledge about HTML is useful in the crypto and blockchain industry as well.

What is an HTML tag?
Set of characters creating a formatted command for a Web page.

What is the structure of an HTML tag?
There is an opening tag and a closing tag. Like < p> and < /p>

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?
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.

1 Like
  1. What is HTML?

HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.

  1. What is HTML used for?

It is used to define the structure of your content. It 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.

  1. Why are we learning HTML?

I think we are learning HTML in order to understand how web pages are created, so that we can eventually learn how to make them interact with the blockchain.

  1. What is an HTML tag?

HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content. Most tags must have two parts, an opening and a closing part.

  1. What is the structure of an HTML tag?

The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets. This states where the element begins or starts to take effect,

The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends.

  1. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content. It consists of the attribute ā€œnameā€ and the attribute ā€œvalue.ā€

An attribute should always have the following:

  1. A space between it and the element name (or the previous attribute, if the element already has one or more attributes).

  2. The attribute name followed by an equal sign.

  3. The attribute value wrapped by opening and closing quotation marks.

  4. What is the anatomy of an HTML document?

1 Like
  1. What is HTML?
    A markup language
  2. What is HTML used for?
    structuring a website and content
  3. Why are we learning HTML?
    to be bale to build a front end, later interacting with the blockchain
  4. What is an HTML tag?
    characters for formating the beginning and end of e.g. text
  5. What is the structure of an HTML tag?
    opening tag - content - closing tag
  6. What is an attribute?
    extra information for reference
  7. What is the anatomy of an HTML document?

e.g.


<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
<h1>heading</h1>
<p> hello </p>
    <img src=".png" alt="My test image">
  </body>
</html>
1 Like
  1. Hypertext markup language
  2. HTML is used for-HTML is not a programming language; it is a markup language that defines the structure of your 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. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on. For example, take the following line of content:
  3. HTML can be used to build front end design for websites to embed data
  4. Tag tells the browser that this is an HTML document. It is also what defines different parts of the HTML document with regards to the text being bold or italics, headings, graphich placement holders, embeded items etc.
    
  5.  A tag starts with an opening <tag>, has usually an attribute inside and finishes with a closing </tag> also contains elements 
    
    1. Attributes contain extra information about the element that you don’t want to appear in the actual content or additional porperties to appear
  6. A head of an HTML document contains information on what is displayed on a webpage. The body includes all of the websites content and images
1 Like
  1. Hypertext markup language is not a programming language. It is a markup language that defines the structure of your content
  2. Used to structure your webpage
  3. To show off to my friends I can make a webpage and have my program talk with my coding
  4. Not sure I saw the answer to this in reading
  5. Not sure
  6. Attritube contains extra information about the element that you don’t want to appear in the actual text
  7. The opening tag,closing tag, the content & the element
1 Like

It stands for Hypertext Markup Language.

It enables creation of web pages by allowing content structuring.

This knowledge is needed in order to be able to build websites for our crypto projects and to be able to work with other developers.

A HTML tag helps to define and format contents on our website by wrapping them within an opening and closing tag.

Opening tag: opening angle bracket, name of element, closing angle bracket.
Closing tag: opening angle bracket, forward slash, name of element, closing angle bracket

An attribute contains extra information about the element in between the tags.
They come in pairs connected with an equal sign: name=value.

opening < html> ,
opening heading < head> ,
closing heading < /head> ,
opening body < body> ,
closing body < /body>,
closing < /html> .

1 Like
  1. HTML- HyperText Markup Language used to define the structure of a content
  2. To create web pages and structure their content
  3. To be able to build websites
  4. It defines where an element starts and finishes and what is its name
  5. It consists of the name of the HTML tag and possibly some element’s attributes all wrapped in opening and closing angle brackets
  6. It is extra information about the element
  7. Doctype, root element, head element, meta element, title, body element
1 Like