HTML Reading Assignment

  1. What is HTML?
    HTML is a markup language

  2. What is HTML used for?
    used to define the structure of the content.

  3. Why are we learning HTML?
    to be able to create a dapp

  4. What is an HTML tag?
    it is a piece of code containing the name of the element that is placed in the beginning and end of each element wrapped in open and closed brackets and the end containing also a forward slash.

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

  6. What is an attribute?
    is something carring extra content of the element that we don’t want it to be seen in the actual content.

  7. What is the anatomy of an HTML document?

<!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 a hypertext markup language that is used to structure a website and its content.

2.) HTML can be used to make the content of the website appear the way that it does. fonts can be made bigger or smaller, bold or underlined. hyperlinks can be added.

3.) We need HTML to understand the basics of website coding to understand more complex coding languages later on and to design better looking websites and user interfaces in the future.

4./ 5.) A HTML tag is used to write the code of how to display something on a website or embed a hyperlink. It consits of an opening and a closing , the content in the opening tag is the attribute, the attribute name and value and the enclosed tag content. everything combined is called the element.

6:) The attribute describes something that will not be visible in the actual display of the website. It needs to have a space between it and the elements name. an equal sign behind it and the value needs quotation marks before and behind it.

7.) A HTML document can consists of the doctype, the HTML element that sourounds everything, the header element which is a container for everything ( not displayed on the website ) , meta character set ( to make sure which characters can be used for the website ) , the title element ( sets the title of the website ) and the body element which contains all of the written content of the website.

1 Like
  • What is HTML?
    HTML ( Hyper text Markup Language) is the code that is used to structure a web page and its content.

  • What is HTML used for?
    It is used to make content appear a certain way

  • Why are we learning HTML?
    It is the basics to start learning code to further learn blockchain code to assist us on our way to becoming a developer.

  • What is an HTML tag?
    A tag open or closes an element

  • What is the structure of an HTML tag?
    <p></p>

  • What is an attribute?
    It contains extra info about the element

  • What is the anatomy of an HTML document?
    …

<!DOCTYPE html>
<html></html>
<head></head>
<meta charset="utf-8">
<title></title>
<body></body>...
1 Like

this took some time playing around to get this last answer to appear here. still not sure what i did.

  1. Hyper Text Markup Language. Its a programming language.
    2.Webpages of all sorts.
  2. We are learning HTML to 1. Understand some of the universal rules of coding, 2. Creating front ends for our websites.
  3. Tags isolate and define elements of code.
  4. Tags are structured as X[content goes here]/X
  5. A descriptor that tells the computer what to do with the content.
<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <title>My test page</title>
 </head>
  <body>
 <img src="https://etcanada.com/wp-content/uploads/2016/09/astley.jpg?quality=80&strip=all&w=720&h=480&crop=1" alt="My test image">
 </body>
</html>
1 Like

:no_mouth: Wow. I’m at the start of my journey and this just opened my mind a little further. Thank you!

1)Html is Hyper Text Markup Language
2)It is a code used to structure a web page and its content
3)We need to learn html to make web pages and for deployment of DAPPS in blockchain and if we don’t learn we have to done that work from someone else by giving them money
4)It is a set of characters provide directions to webpages that how the content should be visual to audience
5)A html tag starts with opening tag and ends with closing tag enclosed in angular brackets

6)It contains some extra information about elements written inside the tags
7)Html document consists of
- wraps content of entire page
-all stuff you want to include in html page but not in your content
-title that appear in browser
- content

1 Like

@shah1 @eldor2011 @heyflex @Doleman @Csabacypto @fakz @magicnum3er1

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

}

prefromatted_text-animated

Malik

3 Likes

The HTML means HyperText Markup Language.

It’s used as a markup language that define the structure of contents. We can write , puts images and do much more with html.

We are learning HTML as a base to our future programing session at the academy but if you ask in general , I guess people who learn html is to build a website, maybe a portfolio.

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.

a tag is used with brackets such as

for paragraph and ends the tags with a slash

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

It start with !DOCTYPE html then the html /html, head /head, meta charset=“utf-8”, title /title and the body /body. All that between < >

1 Like
  1. HTML is hypertext markup language
  2. HTML is used to structure a web page and its content
  3. HTML needs to be learned to be able to understand the structure of a web page.
  4. HTML tag allows us to choose how our content will look.
  5. Opening tag - content - closing tag. For example

    respect the pump</p)

  6. An attribute allows us to mark different parts of our content that cannot be seen by the readers. For example, if we have an article written by two people, we can identify the owner of the word by adding attribute to the HTML tag.
  7. Opening tag - content - closing tag
1 Like
  1. What is HTML?
    It’s a basic programming language to build websites.

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

  3. Why are we learning HTML?
    Well, because whether be it for programming websites, or getting involved in blockchain or the crypto world, knowing HTML is very useful to know what you are talking about, it’s the basis to almost all websites so it’s a critical skill in developping any computer science skills, and if we want to know how to build smart contracts, websites are the front end, needed to be able to link smart contracts to them, the back end.

  4. What is an HTML tag? A tag is a form of instruction, it has two parts, an opening and closing part, that will define how the web browser will format and display the content.

  5. What is the structure of an HTML tag? Like I just said, previously, there is an opening tag and closing tag. The opening tag consist of the name of the element, wrapped in opening and closing angle brackets, where as the closing tag is almost identical, except that it includes a forward slash before the element name, to state where the element ends.

  6. What is an attribute? Attributes are inserted in a tag, and they contain extra information about the element that you might want to add.

  7. What is the anatomy of an HTML document? An HTML document is a combination of different elements that end up creating an HTML page. The different elements to include will be, in order: the Doctype, the html element, the head element, the charactewr set element, the title and finally the body elements. (Did you need more details on what each element does for the page’s structure?)

1 Like
  1. What is HTML?

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

  1. What is HTML used for?

HTML is the code that is used to structure a web page and its content

  1. Why are we learning HTML?

It’s an introductory language that will be used for the front end of the project and prepare us for smart contracts.

  1. What is an HTML tag?

Tag’s states where the element begins or starts to take effect

  1. What is the structure of an HTML tag?

The opening tag/angle brackets/closing tag

  1. What is an attribute?

Attributes contain 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?
<!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 HyperText Markup Language
  2. HTML is used as the baisc language all websites are built on.
  3. HTML is the bedrock knowledge required to build static websites that we can then build upon with more advance dynamic coding languages.
  4. A HTML tag is used at the start and end of each element of the html code for a page.
  5. A tag starts <tag> to show the start of the new element and ends </tag>
  6. Attributes contain information about an element that is not displayed on the page.
  7. The anatomy of a HTML document looks like the following -
1 Like
  1. HTML = HyperText Markup Language
  2. It is the code that is used to define the structure of a webpage and it’s content.
  3. To get a basic understanding of coding/programming.
  4. HTML tags are code that sets the beginning and end of an element.
  5. opening tags have the name of the element wrapped in angle brackets. Closing tags are the same except they have a forward slash inside the brackets before the name of the element.
  6. An attribute is another level of detail about the element.
  7. A HTML document starts with a]the . All the elements after that are encased within the element.
1 Like

HTML is programing code.
HTML is used for web design and development.
HTML tag is how we want certain content to appear on our webpage.
HTML tags always have begging < > and end </ >
An attribute is additional function or information to the tag.
HTML doc. structure:

<.!DOCTYPE html>

<.html>

<.head>
<.title> </title.>
</ head.>

<body.>
<img.>
<body.>

</ html.>

1 Like

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

  1. HTML is the code used to structure a web page and its content, for example, content could be structured within a set a of paragraphs, a list of bulleted points, or using images and data tables

  2. We are learning HTML to give us a basic understanding of the foundations of the web.

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

  4. Opening tag + contents + Closing Tag

  5. Attributes contain extra information about the element that you don’t want to appear in the actual content

  6. Doctype, html, head, keywords, title, body,

1 Like
  1. HTML stands for HyperText Markup language.
  2. Html is used as a main structure to most websites.
  3. to get a basic understanding of programing and what we can do to build a front-end Dapp for WEB 3.0 and the crypto space.
  4. < >, </ >. these contain descriptors and info for the structure of the website
    5.< >, </ >.
  5. attributes contian info not displayed on the page

<html.>
<head.>
<title.> Webpage Tab name</title.>
</head.>
<body.>
<img src="".>
</body.>
</html.>

i had to put periods because it would show up in the text lol dont hate =D

1 Like
  1. What is HTML? HTML is a markup language that defines the structure of your content.
  2. What is HTML used for? use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way
  3. Why are we learning HTML? So we understand it more front end and how to building it being better managers
  4. What is an HTML tag? This states where the element begins or starts to take effect — in this case where the paragraph begins.
  5. What is the structure of an HTML tag? Opening tag and CLosing tag
  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? 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.
    [/quote]
1 Like
  1. What is HTML? hypertext mark up language
  2. What is HTML used for? structuring your content
  3. Why are we learning HTML? to learn to program web pages
  4. What is an HTML tag? an instruction written in code
  5. What is the structure of an HTML tag? Start, end
  6. What is an attribute? extra information that you don’t wan’t to appear on the page
  7. What is the anatomy of an HTML document? start, contents, finish
1 Like
  1. HTML is a simple makeup language which allows users to convert computer code into simplistic websites.
  2. HTML is mainly used for websites.
  3. We are learning HTML because it is one of the most beginner friendly programming languages, and it is one of the pioneering forms of code that we use in our daily lives.
  4. A tag is a how you differentiate between the beginning and end of a certain programming command/ function.
  5. The structure of a tag is
  6. Attributes are additional information thatr you don’t want to appear in the actual content itself.
  7. In it’s most simplistic form the anatomy of a HTML document is as below:
<!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