HTML Reading Assignment

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

  2. HTML is used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. Like creating hyperlinks, italicizing or making the font bigger or smaller.

  3. So that we are able to build an application that can interact with our smart contracts

  4. To open and close an element.

  5. An opening tag looks like and a closing tag looks like

  6. An attribute contains extra information about the element that you don’t want to appear in the actual content.

  7. The anatomy of an HTML document is the following:

<!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 (Hypertext Markup Language) is the code for websites and their content. Elements or paragraphs and other lists/pictures/special graphics/sections are enclosed or wrapped in code to function.

  2. HTML is used for producing full web pages and their elements and linking them to the rest of the web via search engine keywords and titles as well as embedded links.

  3. We are learning HTML to prepare to learn various coding languages and understand the basis of the modern internet of today.

  4. An HTML tag is a code that provides a certain function and encapsulates text or image files to be displayed on the web page.

  5. The structure of an HTML tag begins a function of a text or image and always repeats after the text or image with a forward slash to denote that the function ends there.

  6. An attribute is extra information in the tag structure to put emphasis on certain words of phrases in text elements.

  7. The anatomy of and HTML document is the combination of different functions performed by a series of tags, nesting elements, and sometimes empty elements which provides an entire web page that can be searched for and favorited, saved and shared on the internet.

1 Like

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

That’s what this is ;d. Okay thanks I added the dots just so it shows on the page, otherwise its blank but now I will be familiar with this feature.

1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    It is the protocol all webpages use to display information from the internet

  3. Why are we learning HTML?
    HTML is necessary for building pages on the web. Dapps that interact with the blockchain will often have a website as part of the Dapp experience

  4. What is an HTML tag?
    A tag denotes the start and end of a section in HTML, like a heading, paragraph, table…

  5. What is the structure of an HTML 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?

< !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< title>My test page
< /head>
< body>
< img src=“images/firefox-icon.png” alt=“My test image” >
< /body >
< /html>
1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    HTML is the code/protocol used to define the structure and content of a webpage.

  3. Why are we learning HTML?
    HTML is the foundational protocol to webpage design, which is integral to interaction with other components of the internet and its progression into the Web 3.0 space and blockchain technology.

  4. What is an HTML tag?
    Opening and closing HTML tags are used to enclose content (text or images) to create an element, which can then be integrated into the structure of a webpage.

  5. What is the structure of an HTML tag?
    An opening tag is comprised of brackets enclosing a name element (), whereas a closing tag is comprised of the same format, but with a forward slash following the first bracket (</name element>).

  6. What is an attribute?
    An attribute is a piece of extra information that defines/modifies an element that one may not want to appear in the content of the webpage itself. It is generally enclosed within the opening tag.

  7. What is the anatomy of an HTML document?
    An element is comprised of an opening tag (which may or may not contain attributes), content (text or an image) and a closing tag. Keep in mind that images technically do not need a closing tag.

1 Like
  1. What is HTML?
  • HTML stands for HyperText Markup LAnguage. The markup language defines the structure of the content (web page) it contains elements which wrap or enclose parts of the content in order for them to appear of act in particular ways
  1. What is HTML used for?
  • it is used to create and structure a webpage and its content.
  1. Why are we learning HTML?
  • HTML allows to build websites that can communicate with the blockchain and create smart contracts
  1. What is an HTML tag?
  • tags state where the element begins and where it ends and give instuction to the behavior of the element
  1. What is the structure of an HTML tag?
    enclosed by angle brackets content

  2. What is an attribute?

  • it further qualifies the content and contains a name and a value
  1. What is the anatomy of an HTML document?
  • the structure of the web page. It contains preamble (DOCTYPE), HTML element that wraps the content, and further elements: .
1 Like
  1. What is HTML? Hypertext Markup Language

  2. What is HTML used for? It defines the structure of the content for the page.

  3. Why are we learning HTML? Javascript is for creating the front end of a website that will be used to communicate and interact with the backend programming.

  4. What is an HTML tag? It is an alert to the system of how you want that element formated

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

  6. What is an attribute? 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?

- document preamble - wraps everything into a webpage - what you want to include on the page, but its not content you are showing like keywords and page description - sets the characters used for the document...this one encompasses most of the global languages - page's title - all of the viewable content pieces of the page
1 Like
  1. What is HTML?
    Hypertext Markup Language. Basic building block of the web.

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

  3. Why are we learning HTML?
    To have the knowledge to build and understand the fundamentals.

  4. What is an HTML tag?
    Set of characters constituting a formatted command for a webpage.

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

  6. What is an attribute?
    Extra information about the element that you don’t want to appear in the content.

  7. What is the anatomy of an HTML document?
    Individual elements are combined to form an entire HTML page.
    !DOCTYPE html, html, head, meta charset=“utf-8”, title, and body. All have to be closed.

1 Like
  1. HTML is a markup language that defines the structure of content on a webpage.
  2. It is used to create simple web pages.
    3.We are learning HTML because it is the first building block for us to make blockchain applications. We need to know the basics of coding before we jump into more complicated coding languages.
  3. An HTML tag is code that causes content within the tags to act a certain way on your web page.
  4. An HTML tag consists of an opening tag, encased in , and the a closing tag, specified like so </name of tag>.
  5. An attribute is code for an element that you dont’t want physically shown in your content. Usually used for creating non unique identifiers to content.
a)  <!DOCTYPE html>
     b) <html>
     c) <head>
     d) <meta charset="utf-8">
     e) <title> My test page</title>
     f)  </head>
     g) <body>
     h) <img src="images/firefox-icon.png" alt="My test image">
     i)  </body>
     j)  </html>
1 Like
  1. HTML (HYPERTEXT MARKUP LANGUAGE) is the code that is used to structure a web page and its content.

  2. To define and structure the content of a web page

  3. For structuring web pages and websites to communicate with the blockchain and creating smart contracts.

  4. HTML tags consists of the name of the element and encloses and wraps different parts of the contents to make it appear or act a certain way

  5. HTML tags consists of opening and closing element tags with the content in the middle. The closing tag also has a slash mark to signify it is the closing tag.

  6. Attributes contain extra information about the element that you do not want to appear in the actual content.

  7. Different elements are joined together to form the anatomy of an HTML document. In addition there needs to be a boiler plate (DOCTYPE) that encloses the content of the webpage.

1 Like
  1. What is HTML?

Coding language for structuring a website and its contents

  1. What is HTML used for?

Formatting and providing content in desired visual displays

  1. Why are we learning HTML?

To understand how to communicate, promote, and relate applications built on the blockchain.

  1. What is an HTML tag?

Specific code language that refers to what type of element is displayed and how it is displayed

  1. What is the structure of an HTML tag?

Opening and closing Angle bracket(s) with tag type ending with forward slash

  1. What is an attribute?

Extra information about the content that does not appear in the the output

  1. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My first heading ever</title>
  </head>
  <body>
   <p>Hope this works!</p>
  </body>
</html>
1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language and is a computer language.

2.What is HTML used for?

It is used to structure webpages and their content for example to give paragraphs or headings.

  1. Why are we learning HTML?

We are learning HTML so that we can structure our own websites which is a good start to developing developer skills.

  1. What is an HTML tag?

In HTML we have an opening and closing tag that we place on either side of the element content, which together forms an element. The opening and closing tag define the structure of the content e.g. font type and size, italics etc.

  1. What is the structure of an HTML tag?

content

  1. What is an attribute?

An attribute contains extra information about the element that you don’t want to appear in the actual content.

  1. What is the anatomy of an HTML document?

This is how single elements are combined to form an entire HTML page.

1 Like

Reading Assignment: HTML.

  1. What is HTML?
    HTML = Hypertext Markup Language.

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

  3. Why are we learning HTML?
    So we can build a basic website, that can interact with blockchain.
    ( And also to brag about our new knowledge :sunglasses: )

  4. What is an HTML tag?
    It’s an element, that wraps all the content on the entire page and is sometimes known as the root element.

  5. What is the structure of an HTML tag?
    <html></html>

  6. What is an attribute?
    Attributes contain extra information about the element that don’t appear in the actual content.

  7. What is the anatomy of an HTML document?
    <!DOCTYPE html>
    <head>
    <meta charset="utf-8">
    <title></title>
    </head>
    <body>
    </body>
    </html>

1 Like
  1. HTML is a simple programming language.
  2. It is used for organizing the content of a basic website.
  3. HTML is the ground level language on which basic web content is built.
  4. An HTML tag functions as a sort of wrapping punctuation which defines the presence and type of content that is enclosed within it.
  5. content
  6. An attribute defines other characteristics or details about the element that are not actually to be displayed on the user page, but that determine things like the style and give details about the type of content.
  7. The anatomy of an HTML document begins with the formality of doctype, the root element of HTML, the head element to communicate the nature of content to the greater internet, the character set element, the title element, and the body element which contains within the content and structure of how it will appear for the viewer on the site.
1 Like
  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