HTML Reading Assignment

È un piacere. :slight_smile:

Ivo

Cool name, my brother. I like it very much.
:sunglasses:

Ivo

Thank you :+1: :+1: :+1:

1 Like

Thanks man,
short from Ivelin.

1 Like
  1. Hyper text Markup language defines with a set of rules how you can structure of the content of a website.

  2. Html is used to give a website the appearance you want .

  3. A good foundation in Html makes it easier to move on to programming languages.

  4. An element open and closes with a tag so the browser understands what exactly it is dealing with.

  5. The opening tag has the name of the element wrapped in angular brackets.
    The closing tag is the same but with a forward slash before the elements name.
    Both equally important.

  6. An attribute gives information about the appearance of the content, without showing itself.

  7. It starts with the !DOCTYPE html element to make sure it behaves like a htlm.
    The html element wraps the complete page.
    The head element wraps the “invisible” information of the page content like keywords and style.
    The title element is just that and will be what appears in the browser and bookmarks.
    The body element wraps the all visible content.
    You wanna stick the meta charset=“utf-8” element in there to make sure it can handle most types of characters.

1 Like

1, Hyper text mark up language
2. It is used to define the structure of your contents
3. We learn HTML to make contents of a webpage appear or act in a certain way
4. A HTML tag is used to open, name and close an element
5. The structure is a HTML name wrapped in opening and closing angle brackets
6. An attribute is extra information about an element that is not visible in the content
7. It’s an element consisting of opening tags, content, attributes and closing tag

1 Like

What is HTML?

Hyper-text Markup Language. A browser based mark-up language that used to structure webpages.

What is HTML used for?

To organize content on a webpage

Why are we learning HTML?

So that we can build web-based apps that interact with the blockchain

What is an HTML tag?

Identifiers that demarcate and HTMl element such as a paragraph or a list

What is the structure of an HTML tag?

opening tag is and the closing tag is . In between is the content.

What is an attribute?

Extra information about a tag that does not appear in the actual content. Such as class name or id.

What is the anatomy of an HTML document?

Doctype, html element, head, character set, title, body, closing html tag

1 Like
  1. HTML (Hypertext Markup Language) is a markup language that defines the structure of the content on the webpage.
  2. It is used for the creation and structuring of the content of all websites.
  3. Without it, it is not possible to build the webpage, which can be used as the user interface for the Dapp.
  4. An HTML tag tells the browser which element is being displayed. It usually consists of a pair of tags.
  5. There is an opening tag, which is the name of an element wrapped in angular brackets. Also, there is a closing tag, which is the same as the opening tag, but with a slash before the name of the element.
  6. An attribute is a piece of extra information about the element that is not shown as the content.
  7. Every HTML document should consist of the head part, which is not part of the content and the body part which contains all content of the webpage. In addition, both parts should be enclosed by the HTML tag.
1 Like
  1. Hyper Text Markup Language.

  2. It is used for structure a web page

  3. To understand the basics of programming

  4. Structural element

  5. Opening , attributes, content, closing

  6. A note of a tag

-!DOCTYPE html

-html

-head

-title

-body

1 Like
  1. HTML stands for Hypertext Markup Language - mark up language code.

  2. HTML is used to define the structure of websites content or on another words, it used to make the website content appear in different ways and orders.

  3. We are learning HTML in order to know and understand how a website works and how to build it so in the future it will be easier for us to make the website we will build interact with the smart contract.

  4. HTML tag is part of the element that shows us where the element begins and start to take effect and where does it end.

  5. The structure of an HTML tag is :
    the name of the element, the content </closing tag>

  6. An attribute is a quality that is applied on elements.

  7. Anatomy of an HTML document:
    < !DOCTYPE html>

Would appreciate any corrections if done anything wrong :slight_smile:

1 Like
  1. What is HTML?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
  6. What is an attribute?
  7. What is the anatomy of an HTML document?
  1. Hypertext markup language that defines the structure of your content.

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

  3. HTML is the base for building/coding in the future. Many languages evaluated from HTML.

  4. Tags are used to to tell the browser what and where content is beginning and ending. HTML tags are element names surrounded by angle brackets.

    • HTML tags normally come in pairs like <p> and </p>
    • The first tag in a pair is the start tag, the second tag is the end tag
    • The end tag is written like the start tag, but with a forward slash inserted before the tag name
  5. Attributes are used to add extra details to the element and content such as text style, size,etc. They don’t appear in the website or web content.

<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>

Page title

This is a heading

This is a paragraph.

This is another paragraph.

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content. HTML consists of a series of 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?
    HTML is code that is used to structure a web page and its content.

  3. Why are we learning HTML?
    Learn how to structure websites and context or images from scratch. Its a necessary tool and skill to perfect, especially in these new jobs, jobs of the future.

  4. What is an HTML tag?
    They are the basic building blocks for any webpages. Also known as mark up tags.

  5. What is the structure of an HTML tag?

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

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

  8. The content, This is the content of the element, which in this case, is just text.

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

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

  11. 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 markup language to structure content.

  2. HTML is used to structure web pages and to give content to it.

  3. We are learning HTML to see how programming code for static web pages is done.

  4. HTML tag is a command in the code to make elements appear certain way on the web page.

  5. HTML tag consists of the name of the element (for example “p” as paragraph) wrapped in angle brackets, and is located both where the element to be tagged begins and where it ends. The closing tag must also have a slash sign “/“ before the name of the element.

  6. An attribute contains extra information about the element that you don’t want to appear on the web page. It can be used for example as an identifier to make changes to the stylistic details of the page.

  7. Individual elements are compiled to make a HTML document. There could be for example elements such as , , and .

1 Like

Annotation 2020-04-14 121408

  1. Hypertext markup language .
  2. Mainly static website development .
  3. In order to provide potential customer with front end experience by for example building a website .
  4. Tag its used in order to make browser understand the content .
  5. .c.o.n.t.e.n.t e.t.c…
  6. Information you don’t want to expose in the content.
  7. I have general idea but its hard for me to collaborate on this . . Mainly head and body of the content you trying to expose and not to expose . I’m more hands on kind of guy in order to understand the subject .
1 Like
  1. HTML is a structure defining tool to make content act like we want.

  2. It is a widely used structure to create websites.

  3. We are learning HTML to be able to create a correct website that interacts with blockchains.

  4. An HTML tag is a structure that encapsulate a content, making the content act as we would like to.

  5. Opening Tag - Content - Closing Tag, all of this is an element.

  6. Attributes contain additional parameter to the tag, allowing the element to gain some characteristics.

  7. An HTML doc starts with the doctype, basically insuring that everything runs correctly. All the content of the page is wrapped into an “html” tag. A “head” tag allows for inserting content that will not be showed in the page. Then, the “body” tag includes all of the content of the page.

1 Like
  1. Hyper text markup language
  2. to build websites
  3. so we’ll be able to make our code interact the way want with www
  4. a tag allow the browser to recognise the type of content
  5. opening tag

    closing tag

  6. attributes allow to add more features to the element
  7. WITHOUT THE SPACE AFTER EACH <
<html>
   <head>... </head>
   <body>...</body>
 </html>

Edit @ivga80 (Hi, you can use the preformatted text button to show code in a post. :wink:)

1 Like
  1. HTML is a markup language that defines the structure of your content. HTML stands for “HyperText Markup Language”

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

  3. To know the foundation of programming web pages. This knowledge will be needed for blockchain later.

  4. An HTML tag is a code that is used to open and close the elements of HTML structures.

  5. The opening tag is <p> followed with the content, for example, Hello World and then the closing tag </p>
    <p>Hello World</p>

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

<!DOCTYPE html> It is mainly used to make sure your document works properly.

<html></html> This Element wraps all the content on the entire page and is also known as the root element.

<head></head> 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.

<title></title> This is the title of your page and is also the title that appears in the browser tab.

<body></body> This shows all the content you want to show on your page(text, images etc.)

1 Like
  1. What is HTML?
    It is a markup language that is used to structure how content on a website will be displayed such as paragraphs, appearance etc.
  2. What is HTML used for?
    It is used a structure for websites. It is used to position and format text, display images and links.
  3. Why are we learning HTML?
    Because we will need a website to interact with any smart contracts that we write
  4. What is an HTML tag? You put a tag at beginning and end of any content to specify how you want it to look.
  5. What is the structure of an HTML tag? A tag is written at the beginning by opening an angle bracket and closing at end of tag i.e…

    and at the end of the content you close with a tag but also include a forward slash to show it is the end. i…e

  6. What is an attribute? Attributes can be added within an element content to provide additional information but you do no want to be shown in the content.
  7. What is the anatomy of an HTML document? This is all the individual elements that are needed to create an html such as adding images or marking up text.
1 Like

WHAT? :astonished:
This is sooo wrong on sooo many levels… :triumph: :rage:

I was looking forward to some fancy magic shit, wtf happened? We agreed the last time that you had set the standard, the last couple of your answers, and I’m sorry to tell you that this is not accepted as your answer. :thinking:
Go back and return with some code magic shit.
:innocent::innocent:
Ivo

1 Like

Yo, BTCHustler. :v:

Your “test image” doesn’t work, bro.

I’m out! :handshake: Peace :peace_symbol:

Ivo

2 Likes