HTML Reading Assignment

@KryptoDr
Excellent answer sir(s)! remember you can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.

I am a happy Preformatted Text box, please use me wisely!

Keep that amazing job! :slight_smile:

Carlos Z.

2 Likes

I’m not entirely sure if you are adressing me but just in case thanks thanks a lot for the support. :call_me_hand:

yes, both of you guys are doing a great job! keep it up man!

1 Like
  1. HTML stands for hyper text markup language. HTML is the main language used in website development. Contrary to popular believe it is not a programming language, it is a “markup language” that is used to give structure to content.

  2. HTML is used for web development and front end site creation. It provides all of the textural and image structure and formatting that you see when you visit any website on the internet.

  3. We are learning HTML because without basic web development knowledge we will not be able to set up our own website that will later interact with the blockchain. If we cannot create our own website up we must pay someone else to do this for us, which can me expensive and possibly more time consuming depending on that coders amount of clients.

  4. An HTML tag is used to start and end an element in the markup language.

  5. Examples of the structure of an HTML tag include opening tags < p > and closing tags < / p > (normally these would not have spaces between characters). P is the tag variable in the case, and all tags will use angled brackets, with the end tag always having a backslash before the variable to signify a cease of the element.

  6. An attribute in HTML is a way of extending a tag or changing the way a tag behaves. Attributes can also help to feed the tag metadata. An attribute will always consist of a name and a value given to that name. Ex. name=“value” Attributes allow for elements to be given identifiers.

  7. The anatomy of an HTML document first includes the doctype, followed by the html opening element. Then comes the head element with wraps any metadata and titles inside of it. After the head comes the body element (traditionally text paragraphs and images will go in here), and finally the closing html element.

1 Like
  1. HTML is an abb. for Hyper text Markup Language (not a programming language). It defines the structure of the language & consists in a series of elements to enclose or wrap different parts of the content to make it appear in a certain way (hyperlink, font type).
  2. HTML is the code that is used to structure a web page and its content.
  3. We are learning html to understand static content in web 2.0. first, before learning more complex websites.
  4. A HTML tag is a definer of where the elent begins and where it ends.
  5. Attributes are extra information about the elements that you don’t want to appear in the content.
  6. We have different tags: opening and closing tags. The structure an opening tag consists of the name of the element put inbetween angle brackets:

    (for paragraph). The closing tag is the same as the opening tag, exept that includes a forward slash before the element name:

    . Inbetween of the tag is the content(text). All together is the element.
  7. The anatomy of an HTML document includes the basics of HTML elements. It is the structure of the elements that define the HTML.
1 Like

1- HTML (hypertext markup language) is the code that is used to structure a web page and it`s content.
It is not a programming language, its a markup language that defines the structure of your content. It consist of a series of elements and tags that are used to modify appearance and the way the web page works or acts.

2- HTML is used to structure a web page and order its content.

3- We are learning HTML because it is the base of web development and in order to build websites that work with blockchain we need to know how to structure a web page first.

4- A HTML tag is needed in order for us to create an element, it consist of an opening tag, the content and a closing tag, all these together form an element.
- The opening tag states where the element begins.
- The closing tags states where the element ends.

5- The HTML tag structures as following:

< Opening tag> Content </closing tag> .

6- An attribute contains extra information of the element which you don´t want to appear on the actual content.
Its structure is the following:
< tag attribute name= "attribute value "> Content < / tag >

7- < !DOCTYPE html > the doctype.

< html > < / html> the HTML element wraps the content of the entire web page. Also known as 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

< meta charset = "utf-8 "> it sets the character set your document should use.

< title > < /title > the tittle element set the tittle of your page, which is also the title which would appear on the browser.

< body> the body element contains all the content that you want to display to the web users that use the page.

1 Like
  1. What is HTML?
    HyperText Markup Language
  2. What is HTML used for?
    Structuring web pages and content
  3. Why are we learning HTML?
    As a foundation for other programming languages
  4. What is an HTML tag?
    A tag must bookend an element
  5. What is the structure of an HTML tag?
    It looks like this: “< tag>content< /tag>” but without the spaces
  6. What is an attribute?
    A note within the opening tag with information for a developer. Use a space after tag identifier
  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. It is a markup language that we use to create a website and it content.
  2. Websites and their content.
  3. So we can create a website where people can go and threw that website connect to the blockchain it is applicable to.
  4. It is set of characters constituting a formatted command for a Web page.
  5. <>Content </> = Element
  6. It is additional information about the element ,which you dont want shown in the content. eg. Attribute name or Attribute content.
<?head> <meta charset="utf-8:> <title></title> <body></body>
1 Like
  1. Hyper Text Markup Language
  2. Enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way
  3. To understand how The Internet contents work
  4. Interact with Elements
  5. My Dog is lazy

  6. An identifier
  7. The structure that forms the page.
1 Like

Hypertext Markup Language, HTML, is the markup language that specifies the structure of pages on the Internet. It is used to specify sections of a Web page and links pages together so that one can travel the 'Net. It’s important to learn HTML to understand how a basic web page is put together.

HTML tags mark elements of a page that would occur in natural writing, like a heading, paragraph, image or table.

HTML tags use angle brackets < > to separate tags from the content, usually. The beginning of an element is marked with an opening tag, like <p>, followed by the paragraph’s content, then closed with a similar style tag plus a leading forward-slash as the closing tag, </p>.

Attributes are special values that the element can be assigned, like a “class” that specifies how the element is to appear on screen. Attributes sit inside the opening html tag in name-value pairs, like name="value".

An HTML document starts with the HTML declaration, head, meta, title, end of head, followed by the body, navigation, content, footer, end of body, end of html.

1 Like
  1. What is HTML?

    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.

  2. What is HTML used for?

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

  3. Why are we learning HTML?

    We are learning HTML so we can learn the basics in coding and set a foundation for our learning path.

  4. What is an HTML tag?

    A tag indicates the start and end of an element.

  5. What is the structure of an HTML tag?

    Opening Tag = <>, 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?

    The individual elements that are combined to form an entire HTML page.

1 Like

What is HTML?

  1. Hypertext Markup Language

What is HTML used for?

  1. A programming language that is used to place text, images and other contents on a webpage.

Why are we learning HTML?

  1. HTML is a good foundation to learn for web development and blockchain development and to help understand the structure of a smart contract in connection with a dapp.

What is an HTML tag?

  1. The tag tells the browser that this is an HTML document. The tag represents the root of an HTML document.

What is the structure of an HTML tag?

  1. HTML tags begin with the less-than (<) character and end with greater-than (>). These symbols are also called "angle brackets .".

What is an attribute?

  1. An HTML attribute is an associated property of an HTML element and used to extend the capability of an HTML element.
    HTML attributes (usually) have values and are written after a “=” after the name of the attribute.

What is the anatomy of an HTML document?

  1. Basic structure of an HTML document . An HTML document has two* main parts: head. The head element contains title and meta data of a web document .; body. The body element contains the information that you want to display on a web page.
1 Like
  1. HTML is a hyper text markup language that defines the structure of the web page.
  2. Used for construct web pages browsers to view.
  3. To make front-end to make user experience for our product.
  4. Tags are elements to show on web page like text, paragraphs, images etc.
  5. Opening tag -> content -> closing tag. Some tags don’t have to be closed like for example.
  6. An attribute is an extra information and/or values that can be included to tags to more precisely to do what we want.
  7. HTML has header information that includes for example things like page title character set. Then becomes tag that includes your content what ever it’s more HTML tags, JavaScript functionality etc. and ends with closing tag. All this is wrapped between tags and
1 Like
  1. Hyper Text Markup Language
  2. Code used to structure a Web page content
  3. So that we can learn the fundamentals of programming and build a basic Web page
  4. This names the element and dictates where it will begin and end
  5. < > </>
  6. Attributes contain additional information about the element that you may not want to appear in the actual content
  7. The anatomy contains all the parts that make HTML code relevant…opening and closing Tags, the content, the element, attributes etc.
1 Like

1. What is HTML?
Hyper text markup language

2. What is HTML used for?
To “organize/construct” information a certain way on a website.

3. Why are we learning HTML?
It’s a fundamental part of making websites and is a good startingpoint to learn coding.

4. What is an HTML tag?
The frames for what the element should be. (shows where it begins and ends and what should be included)

5. What is the structure of an HTML tag?
It consists of greater then and lesser then symbols with a indicator betwen that says what type of element the tags are framing. Examples < p > < a > etc. The end tag needs to have a forward slash included so show that it’s the end tag. ( < / p > )

6. What is an attribute?
Information for an element that is not seen in the final version. (instructions/specifikationes for the element)

7. What is the anatomy of an HTML document?
Doctype
Htlm
Head
Titels
Meta charset
Body

1 Like
  1. Hyper Text Markup Language
  2. To make websites who can be found on the internet
  3. because it is the basic programming language to understand other languages in the future
  4. an order you give to display text or pictures
  5. changes or difference inside a tag
  6. head and body
1 Like
  1. It’s a markup language
  2. It’s used to define the structure of content
  3. To make sure we can implement the skills practically and fast and show it off to our friends :stuck_out_tongue:
  4. A tag is used either when you want to open or close an element
  5. You use the angle brackets to open the tag example :

    then to close the tag you add forward slash after the opening bracket like this:

  6. Atrribute is a way to insert note only visable for the programmer?
    7.It’s a combination of elements that creates the website a website.
1 Like

1. What is HTML?

It is a markup language which creates structure of your content.

2. What is HTML used for?

Creating electronic documents (pages) that are displayed on the World Wide Web. (Creating websites)

3. Why we learning HTML?

When we build smart contract we need to have one way to interact our smart contracts with and web interface is the right way.

4. What is an html tag?

It’s an element which include one opening tag and one closing tag, the opening tag represent the name and where the elements begins. The closing tag this tag represent where the element ends. In every element you have content it can be text, images or script.

5. What is the structure of an HTML tag?

An opening tag telling the page what do display and closing tag represent where the element ending.

6. What is an attribute?

A characteristic of a particular element to provide greater information.

7. What is the Anatomy of an HTML document?

This is how a normal html document looks like.

(the head part is used for text and tags that do not show directly on the page, except “title”) (the body part is used for displaying all text, images, hyperlinks and so on, shown on directly on the page.)

1 Like

1 - HTML is a basic language to build simple websites.

2 - It is used as a base language to develop websites

3 - We are learning HTML to help us understanding better programming, to learn how to keep learning withing programming, and to be able to create basic websites that can interact with our smart contracts.

4 - An HTML tag specify what characteristics the text in between needs to have.

5 - < tag> text </ tag>

6 - An attribute has the information of the element that does not need to appear in the page.

7 - The anatomy of an HTML document is the basic layout that it needs. start with HTML tag, HEAD, TITLE, BODY, and always close tags in the right order.

1 Like
  1. A markup language for organising a webpage.
  2. Provides simple functionalities such as organising and formatting text, inserting images and creating links.
  3. HTML is a good introductory path to programming allowing for understanding of basic concepts.
  4. Tags are used to specify an element type and any attributes the user wishes to add, as well as specifying the opening and closing of the element within the code.
  5. Opening tag closing tag </element type>
  6. Attributes allow for additional configuration of the element type
  7. Combination of individual elements making up the webpage, including: html, head, body.
1 Like