HTML Reading Assignment

  1. It is a markup language used to structure content on a web page. There are different elements to make things appear in certain ways.

  2. It is used for web pages

  3. We are learning HTML to be able to build a web page as a precursor to blockchain development

  4. The HTML tag is used to create an element

  5. There is an opening tag and a closing tag around the content which indicates the start and end to occur.

  6. Attributes have more information about the element that you don’t want in the content

Doctype
Html
head
meta charset
title
body

1 Like
  1. HTML is a markup language that structures your content
  2. It’s used for creating and structuring the elements in a webpage
  3. We learn HTML so we can provide a front end for our programming
  4. A tag is used to define how a section of content is to be treated
  5. A tag has an opening, a closing, and attributes
  6. An attribute describes how a tag will be used or displayed
  7. The anatomy of HTML consists of opening and closing tags, the attributes of the tags, and everything that is contained within the tags along with the tags themselves which is referred to as an element
1 Like
  1. Hyper text markup language.
  2. HTML is used to structure a webpage.
  3. We are learning HTML to be able to construct an application that can interact with a smart contract.
  4. A tag is used to create an element. And show where an element starts and ends.
  5. Open [tag] , close [/tag]
  6. Elements can have attributes. Attributes contain information about the elements.
  7. Combining multiple elements to form a HTML page.
1 Like
  1. Language that defines the structure of content
  2. To make content act or appear a certain way
  3. So we know how to make content act or appear a certain way
  4. An instruction for content to be something different
  5. < p > content < /p >
  6. Extra information within the element
  7. Website code < html > < head > < body >

I’ve had to put spaces in the tags due to the answers not appearing correctly in the answers

1 Like
  1. Hypertext Markup Language
  2. HTML is the code used to structure a web page and its content.
  3. We learn it as a foundation for web development.
  4. A tag makes the browser recognise what content appears on the page and how.
  5. Tag starts with opening , has an attribute inside and closes with
  6. It specifies how the content appears.
  7. HTML page starts with the tag, followed by (all the information thats needed, but wont appear as content.) and finally, (the actual content.) The tags need to be closed. :slight_smile:
1 Like

Reading Assignment: HTML

Ivan Tech Tech
JAVASCRIPT

  1. Reading Assignment: HTML
    HTML & Web
    If you are stuck, have tried your best to get unstuck and still can’t figure it out, please post here (I am completely stuck).

Before we get our hands dirty and actually start coding we would like to tell you that if you have any questions at all use the forum (forum.ivanontech.com)!
Here is the specific thread for this section:
HTML Basics Dicsussion

So what is the task?

Read this article (https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics). While reading, try to answer the following questions.

What is HTML?
HTML is a markup language
What is HTML used for?
is the code that is used to structure a web page and its content.
Why are we learning HTML?
To design a web pages

What is an HTML tag?
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.

What is the structure of an HTML tag?
For example, take the following line of content:

My cat is very grumpy
If we wanted the line to stand by itself, we could specify that it is a paragraph by enclosing it in paragraph tags:

My cat is very grumpy

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 main parts of our element are as follows:

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 — in this case where the paragraph begins.
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 — in this case where the paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
The content: This is the content of the element, which in this case, is just text.
The element: The opening tag, the closing tag, and the content together comprise the element.

1 Like
  1. HTML = HyperText Markup Language, its a code
  2. Its used to structure a web page and its content
  3. We are learning it so we could make a simple web page so it can later interact with the blockchain
  4. Because it is a markup language that defines the structures of the content of web page. It consists of series of elements which are used to enclose/wrap ( hyperlink, italicize words, make font bigger/smaller )
  5. The opening tag, the closing tag, and the content ( example of paragraph text

    content

    )
  6. Attribute is extra information about the element that you don’t want to appear in the actual content.
  7. Basic anatomy consists of:
  • <html> </html> = element wraps all the content on the entire page ( root element )
  • <head> </head> = acts as a container for all the stuff you want to include on a page that isn’t actual content that you are showing
  • <meta charset="utf-8">= handles any textual content you might put on
  • <title></title> = sets the title of your page, title you see when the page is loaded or bookmarked
  • <body> </body>= contains all the content that you want to show to web users when they visit your page, no matter what it is ( videos, audios, games, images, etc. )
1 Like
  1. What is HTML? Hypertext Markup Language is code that is used to structure a website and its content.

  2. What is HTML used for? Used to build (usually static and simple) websites

  3. Why are we learning HTML? We learn it because it is a starting point to understanding greater coding languages and processes. It will allow us to have an understanding of the basics. It is like learning the alphabet before learning to read words, sentences and paragraphs.

  4. What is an HTML tag? A tag is the coded directive included in an element to format, structure or lead the enclosed content.

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

  6. What is an attribute? An attribute is an addition to the element that contains extra info that you do not want to be appear in the actual content. It consists of both a “name” and “value”

  7. What is the anatomy of an HTML document? The Anatomy of an HTML document is the “element” and consists of the opening tag, content and closing tag. It may also include additional attributes.

1 Like
  1. What is HTML?
    -The code that is used to structure a webpage.
  2. What is HTML used for?
    -Used to make the content on your website appear a certain way.
  3. Why are we learning HTML?
    -To allow us to get a base knowledge of programming and do the front-end of our smart contracts
  4. What is an HTML tag?
    -Part of the coding that shows the opening and closing of an element.
  5. What is the structure of an HTML tag?
    -open-
    -end-
  6. What is an attribute?
    -Part of the element that contains more info that you don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document?
... ...
1 Like
  1. What is HTML?
    It is a programming language used to create webpages.

  2. What is HTML used for?
    Used to structure your webpage.

  3. Why are we learning HTML?
    To show off what we’ve learnt and link it to the back-end smart contracts that we’ll create using JavaScript.

  4. What is an HTML tag?
    A tag is code that wraps content into an element that can then appear in a certain way.

  5. What is the structure of an HTML tag?
    Main parts are an opening tag, closing tag, content in-between the tags, and the element which consists of the tags and content.

  6. What is an attribute?
    An attribute contains extra information that you don’t to appear in the content.

  7. What is the anatomy of an HTML document?
    Doctype - serves no purpose anymore but needed.
    html element - root element that wraps all content on the page.
    head - content you want to include but not show. Eg. keywords
    meta charset 8 - sets character set to UTF-8, most characters from majority of languages.
    title - page title
    body - all content you want to show.

1 Like
  1. Standard markup language used for creating web pages (Hypertext Markup Language)
  2. Used to structure a web page and its content
  3. To get a better understanding of code, learning HTML will help in developing skills in other languages like Javascript and Solidity
  4. Defines the content within the website
  5. opening tag <p.> content

    closing tag
  6. Contain extra info about the element which you don’t want appearing in the content
    7 Doctype- makes sure documents behave correctly element-wraps all content of entire page element-for the content you don't want viewers of your page seeing <meta charset= "utf-8" - allows it to handle almost all textual content you put on it element - sets the title of the page element - contains all content you want web viewers to see
1 Like

HTML

HTML is Hyper Text Markup Language.

HTML is used to format a webpage and its content.

We are learning HTML because it provides a good foundation for understanding Java Script. I think we are also studying this because later in the course we will be building a website that will interact with smart contracts and the blockchain.

HTML tag: the hidden keywords within a web page that define how your web browser must format and display the content.
Example of HTML tag:

Structure of an HTML tag: tags have two parts and opening and a closing.
For example, if I were to put some words in a paragraph it would look like this:
<p>Some words in a paragraph</p>
Inside of the opening and closing tag is the Content
The Element contains the opening tag, the Content and the closing tag.

Attributes allow you to customize a tag and are defined within the opening tag

Anatomy of HTML:

<!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

@BitBorg, @Rybeck10
You wont face this problem if you use the below approach.

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!”

}

Malik

1 Like

**strong text

  1. What is HTML?
    HTML 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.

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

  3. Why are we learning HTML?
    HTML is a basic starting point that is easy to understand when wanting to learn code.

  4. What is an HTML tag?
    A tag can make a word or image hyperlink, can italicize words, can make the font bigger or smaller, and so on. They are wrapped within any HTML element and consist of an opening/closing/content/element tags. These allow simple text/image act or appear in a certain way.

  5. What is the structure of an HTML tag?

The opening tag
The closing tag
The content
The element
Is the structure of a tag.

  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?**
    It is the individual elements combined to create a HTML page. This 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.

1 Like
  1. What is HTML?
    HTML (Hypertext Markup Language) is a markup language that defines the structure of your content.

  2. What is HTML used for?
    HTML is used to make sure that the website displayed on your screen appears correctly. It uses elements to structure how it apperas on your screen

  3. Why are we learning HTML?
    We are learning HTML because it will most likely serve as a the front end for alot of the DAPPS that we plan on learning how to build and it is a natural progression path towards solidity.

  4. What is an HTML tag?
    HTML tag is a part of the element which takes the contents within and executes it.

  5. What is the structure of an HTML tag?
    Opening tag , Content , Closing Tag

  6. What is an attribute?
    Attributes are specified in the opening tag which gives it additional properties.

  7. What is the anatomy of an HTML document?
    [,

, ,]
  1. It stands for: Hypertext Markup language and it’s the code used to structure a webpage and its content.
  2. It is the code used to structure a web page and its content, and it consists of a series of elements, which you use to encode, or wrap, different parts of the content to make it appear a certain way, or make it behave a certain way.
  3. Because it is the basic language of websites and it help when we want this said website to interact with the blockchain
  4. An HTML tags are used to contain the content and element of which we wish to show
  5. for example

    sandro is super cool

    . So we opened the tag, described our content, and closed the tag.
  6. An attribute contains extra information about the element that you don’t want it to appear in the actual content. An attribute should always have:
  • a space between them and element name
  • an attribute name followed by =
  • the attribute value wrapped by ‘’ and ‘’
  1. It looks as below:
  • we need a <!DOCTYPE html> , however these days, they don’t do much and are
    basically just needed to make sure your document behaves correctly.
  • HTML tags This element wraps all the content on the entire page and is sometimes known as the root element.
  • head element: This 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.
  • the title element. `This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favourite it.
  • the body element. This 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.
1 Like
  1. What is HTML?

  2. Code that is used to structure a web page and its content

  3. What is HTML used for?

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

  5. Why are we learning HTML?

  6. So that we know how to build visual interfaces for people to interact with the smart contracts we create later.

  7. What is an HTML tag?

  8. An element that we can use to wrap content to make it appear or behave in a certain way.

  9. What is the structure of an HTML tag?

  10. An HTML tag is an element. An element consists of an opening tag followed by some content and then a closing tag.

  11. What is an attribute?

  12. Attributes contain information about the element we don’t want to see in the content. An attribute which is composed of a name and a value.

  13. What is the anatomy of an HTML document?

  14. An HTML document must have, at minimum, the following elements where “…” could be include additional elements. (spaces added between <> so the text is visible here on this HTML page)

  15. < html >

  16. < head > … </ head >

  17. < body >…< /body >

  18. < /html >

1 Like
  1. What is HTML? H yper t ext M arkup L anguage
  2. What is HTML used for? Used to code or build a web page.
  3. Why are we learning HTML? I think it is a fundamental basics of web world.
  4. What is an HTML tag? We have opening and closing tag and it is a beginning of magic.
  5. What is the structure of an HTML tag? Series of elements
  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? It is a skeleton of HTML.
  • My test page
  • My test image
1 Like
  1. What is HTML?
    It is a hypertext markup language.

  2. What is HTML used for?
    It is used to structure the web page and all of its content.

  3. Why are we learning HTML?
    We learn HTML in order to be able to build the webpages at the front-end, which will be linked to the smart contracts in the back-end. HTML is also a pretty simple language to start understanding programming for beginners.

  4. What is an HTML tag?
    The HTML tag is a part of HTML element stating where the element begins and where it ends.

  5. What is the structure of an HTML tag?
    The tag, for example <p>, consists of brackets and the tag name. Usually, there is an opening (<p>) and closing (</p>) tags wrapping the content of the element. There are also self-closing tags, like <br>, which stand alone and do not require content inside.

  6. What is an attribute?
    An attribute is the part of the element that contains the info about this element, that is not intended to be displayed in the content.

  7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My page.</title>
</head>
<body>
<h2>Web-page 1.</h2>
<p>Content</p>
<img src="https://www.website.com" alt="web-page alt text.">
</body>
<html>

This is the basic HTML document structure. The <!DOCTYPE html> tag is a required preamble, the <html> tags wrap all the content, the <head> contains everything not intended to appear on the web-page, including <title>- the browser tab name of the page. The <body> contains the page content, including <h1> - <h6> headers, <p> paragraphs, <li> lists(ordered <ol> and unordered <ul>), tables <table>, images <img src="...."> and links <a href="...">.

1 Like
  1. HTML is an acronym for Hypertext Markup Language.

  2. HTML is a code for structuring a website and its content.

  3. I am learning HTML so that I can structure a website and its content to interface with a front-end user and a back-end smart contract on the blockchain.

  4. The HTML tags are parts of an element, which are used to enclose different parts of the content to make it appear or act in a certain way. For example, by enclosing content within a set of tags you can change the text font of the content or make an image or text hyperlink somewhere else.

  5. An opening tag consists of the name of the element wrapped in angle brackets and states where the element, a paragraph, begins. A closing tag also includes a forward slash before the element name, which indicates where the paragraph ends.

  6. Attributes are extra information that you don’t want displayed in the website content. They are found within one of the tags and follow the element name and are separated from it or previous attributes by a space. They are composed of an attribute name, an equal sign and an attribute value wrapped within quotation marks.

  7. An HTML document contains elements, root, head, meta charset, title and body suitably arranged with opening and closing tags.

1 Like