HTML Reading Assignment

1 Hyper text mark up language
2 html is used for properly displaying info on the cmputer screen to internet
3 its good to learn as a foundation of web developing
4 html tag is the instruction given to the website
5 opening tag closing tag
6 extra information that i do not want to appear in the content
7< 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?
    HTML is a rudimentary language called “Hypertext Markup Language”.

  2. What is HTML used for?
    HTML was the only way to display simple pages on the web, involving text and images. HTML uses blocks, where the text and images inserted, are also hyper-links. So one can click on it and access another link or web page.

  3. Why are we learning HTML?
    We are learning HTML because, as developers, we will need to know how to interact with web pages and is probably easier to get comfortable writing and seeing code.

  4. What is an HTML tag?
    An HTML tag is a bit of text within angle brackets for opening and closing statments

  5. What is the structure of an HTML tag?
    HTML tags contain text that is called “elements”, such that the elements are enclosed by the opening and closing tags.

  6. What is an attribute?
    An attribute, which exists within the opening tag, is a command or set of words which provide more functionality to the entire structure. The whole structure is called an “Element”.

  7. What is the anatomy of an HTML document?
    HTML documents consist of three main components.

a) The root element is the base of the document tree.
b) The heading, which is information about the HTML document, including the title.
C) The Body, which contains the contents of the HTML document.

1 Like
  1. HTML (hypertext markup language) is a markup language that defines the structure of content.

  2. It is used to select certain parts of text, so you can make that part appear a certain way.

  3. To learn how to structure a webpage

  4. A tag is used to open and close an element

  5. an opening angled bracket <, the name of the element, closing angled bracket>=

    . a closing tag has to include a forward slash before the element name

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

  7. It is the structured combination of the individual HTML elements, forming a web page.

1 Like
  1. HTML - Hyper Text Markup Language.
  2. HTML is used as the front end code for websites.
  3. So that our website would look nice.
  4. It states where the element begins or starts to take effect
<p> //Starts
Loremipsum //Paragraph content
</p> //Ends

would mean its a paragraph.
5.

<p> starts tag
</p> ends tag
<p //defines tag type (p = paragraph)>
  1. Attributes contain the path to your images.
<!doctype html>
<html>
//Code
</html>
1 Like

Welcome to the discussion about the first assignment.

Leave your answers to the questions below in this thread. If you have any questions or you want to discuss something connected to the assignment feel free to do it in this thread as well, but please everything to the topic of HTML!

1. What is HTML?
H(Hyper)T(Text)M(Markup)L(Language) is a tool inform of a code that a webpage interacts with and utilised.
2. What is HTML used for?
It is used to structure the appearance or display of every content of a webpage from the words to the diagram or tables that is present on the webpage
3. Why are we learning HTML?
We are learning HTML to be able to provide a client user interface to connect to the Blockchain Backend
4. What is an HTML tag?
The HTML tag consist of an element which shows where the element begins and close with an angle bracket
5. What is the structure of an HTML tag?
It starts with Opening Angle Bracket <> and a Closing Angle Bracket with a forward slash </>
6. What is an attribute?
An attribute is extra information about the element that the programmer do not want to appear in the actual content but use as a classification of some other attribute of the same category to target them.
7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
        <head>
            <meta charset= "utf-8">
            <title>My testpage</title>
        </head>
        <body>
               <<img src="C:\Users\DELTA\Documents\TRADESTRATEGY\BLOCKCHAI\javascript\Mozilla icon.png" alt="My test image">
        </body>
    </html>
1 Like
  • What is HTML?
    HTML is a markup launguage that defines the structure of your content.

  • What is HTML used for?
    It is used to wrap or enclose your content to make it act or appear a certain way.

  • Why are we learning HTML?
    Because it allows us to structure our content and tell it it how to act.

  • What is an HTML tag?
    An HTML tag tells the element where to begin and end.

  • What is the structure of an HTML tag?
    It contains the name of the element Wrapped in opening and closing angle brackets.

  • What is an attribute?
    Attributes are extra information you want attached to the element but dont want to actually appear visible.

  • What is the anatomy of an HTML document?
    !DOCTYPE html, , , , , .

1 Like
  1. What is HtML - Hypertext Markup Language is the code used to structure a web page and it’s content.
  2. What is HTML used for?- defining the structure of your content. By using a series of elements to enclose or wrap the content. Enclosing tags can italicize the content or make is bigger or bolder.
  3. Why are we learning HTML? As a foundation so that we can be familiar with the front end web pages which could interact with smart contracts.
  4. What is an HTML tag?- a tag is used to create an element eg

    for paragraph.

  5. What is the structure of an HTML tag? The tag goes either side of the content as an opening tag and a closing tag- The element must end with a forward slash to ensure it ends properly eg:

    i am learning about html

  6. What is an attribute? - an attribute contains extra content ie. instructions or assisted explanations. that you don’t want displayed. It should always have a space between the tag or anything preceding it, have an attribute name followed by an =sign plus quotation marks on the attribute value
  7. What is the anatomy of an HTML document? -
  • - simply ensures the document behaves correctly but was created to serve a greater purpose.
  • - sometimes called the ‘root element’ - wraps the entire page
  • - is the element to contain all info not intended to be shown on the page but included on the page- eg. keywords or page descriptions for search engine optimisation.
  • - the element defines the character set used in the document- utf-8 includes most characters from the vast majority of written languages and should make the document able to handle any of the text i put on it, this should always be included as it may help avoid later problems
  • My test page - this sets the title of the page in the browser tab and when bookmarked
  • - this contains ALL the content you want to show on the web page, this could be images videos writings etc.
  • My test image doesn’t need to be wrapped as the image embeds on the page in the position it appears via the src (source) attribute. We can also use an alt (alternative) attribute so if it doesn’t load properly or needs someone who is blind to use a screen reader and play an audio description of the picture.
1 Like

1.The HTML is the code that we use to structure a webpage content
2. It is used to make a web page
3. We are learning to create a website that interact with the blockchain
4. it open and close the element it is a paragraph.
5. open tag p and closing tag p
6.An attribute contain extra information about the element that you do not want to appear.
7.Element and content.

1 Like
  1. What is HTML?
    HTML refers to Hypertext Markup Language.

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

  3. Why are we learning HTML?
    We need to use HTML to build websites that serve as an interface to blockchain networks.

  4. What is an HTML tag?
    HTML tag is a syntactic marker inserted into the content of a webpage to tell a browser how to arrange and display the content.

  5. What is the structure of an HTML tag?
    An HTML tag is made up of a keyword which is enclosed in a pair of angle brackets, for example, <p>. Tags are usually used in a pair of opening and closing tags, such as <p>Contents in a paragraph.</p>

  6. What is an attribute?
    An attribute provides extra information about how an HTML tag structures and displays content.

  7. What is the anatomy of an HTML document?
    A basic structure of an HTML document looks like this –

<html>
    <head>
        <meta charset="utf-8">
        <title> Title of the webpage </title>
    </head>
    <body>
        ...
    </body>
<html>
1 Like
  1. Hypertext Mark Up Language is used for building static websites.
  2. HTML is the basic structure of web development and the basic building block of interactive functions.
  3. It will allow us to build a front end for our dapps. We need the ability to broadcast our builds on the web.
  4. An HTML tag is a marker for each section of the website.
  5. <x /x>
  6. An attribute is a quality or characteristic assigned to an element.
  7. < !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

@rowanrobinson86

welcome back to forum :slightly_smiling_face:

1 Like

1.) Hypertext Mark up Language is a code that is the fabric and structure of webpages and the content contained within them.
2.) HTML code is used organizing the content and structure of a webpage in various simplistic ways such as embedding images, changing font sizes and creating hyperlinks.
3.) We are learning HTML because it is most basic structure to learn and understand the principles of web coding.
4.) HTML tag is contains the element and closing angle brackets which indicate for example where a parahraph may start or stop.The closing tag differs from the opening tag in that it contains a forward slash before the element. This indicates where the particular element stops.
5.) HTML tag is a single element that contains HTML tags and the content of the specified elements.
6.)An attribute embeds more detailed information into the content of any particular element with out that information being seen in its actual content.
7.The anatomy of a HTML document is as follows:
a.) b.) c.) d.) e.) f.)

1 Like
  1. HTML is Hypertext Markup Language

  2. HTML is used to structure a web page and it’s contents.

  3. As blockchain programmers, we would still need to display our inputs and outputs via web pages for people to interact.

  4. HTML tags are the basic building blocks which define how web pages are formatted. There are always opening tags and closing tags

  5. HTML Tag has opening tag followed by name of the element and a closing tag that includes a forward slash.

  6. Attributes are the extra information which you don’t want to appear in the actual content.

  7. A HTML page will always start with defining the doc type of HTML. Underneath consists HTML element, head, title and body.

1 Like
  1. HTML is a markup language
  2. HTML is used for creating web pages
  3. In order to build websites, we need to learn about HTML
  4. An HTML tag is how HTML defines different sections and aspects of a webpage.
  5. An HTML tag has an opening tag and a closing tag.
  6. Attributes controls the specific properties of a tag. By assigning values to attributes, the behavior of the tag can be controlled.
  7. HTML documents consists of a head element and a body element.
1 Like
  1. What is HTML?
    It is a markup language that defines structure of your content. It consists a series of elements.

  2. What is HTML used for?
    Used to properly display information and content. It’s the basic structure of every webpage.

  3. Why are we learning HTML?
    To customize the User Interface of any webpage.

  4. What is an HTML tag?
    Tags are used to format webpages. They make a word or image hyperlink to somewhere else, italicize words, make font size bigger or smaller and more.

  5. What is the structure of an HTML tag?
    <tag class="attribute"> Content </tag

  6. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content. They give tags the opportunity to target them for individual features.

  7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
  <head>
      <meta charset="utf-8">
      <title></title>
  </head>
  <body>...</body>
</html>
1 Like
  1. HTML is hypertext markup language
    it is not a programming language, it is a markup language that defines the structure of your content.

  2. HTML is used to organize the content and structure of your web page.

  3. Because HTML is the basic thing to learn on how to create a web page.

  4. HTML tag is the set of characters that is commonly used to open and close the element.

  5. The structure of an HTML tag does consist the name of the element, the opening does have angle brackets, while the closing also have angle brackets including a forward slash before the name of the element.

  6. An attribute is the extra information about the element that is cannot be seen in the actual content.

  7. The anatomy of an HTML page are the following:
    -Doctype tag
    -Head
    -Title
    -Body

1 Like

Hypertext Markup Language

HTML is used to structure a web page and its content

To create webpages and understand the basics of learning how to code

In HTML, a tag is used for creating an element

Tags have names, opening tag has angle brackets and the closing tag is preceded by a slash character in angle brackets

An attribute extends an element, changing its behaviour or providing metadata.

Anatomy of an HTML document:
1.Opening Tag
2.Closing Tag
3.The content
4.The element

1 Like

1.HTML is an Hyper text markup language
2. HTML is used to structure a web page and its content.
3. We learn HTML as a foundation for web development and block chain development.
4. HTML TAG is what makes the browser recognize what type of content it has to show and in what way.
5. Tag starts with an opening Tag <P>, has usually an attribute inside and finishes with a closing Tag </p>
6.Attributes contain extra information about the element that you don’t want to appear in the actual content included in a tag.
7.The way of wrap codes like <html> <head> <Body>

1 Like
  1. What is HTML?
    —Hypertext Markup Language
  2. What is HTML used for?
    —It is a markup language that defines the structure of how content is displayed on a web page.
  3. Why are we learning HTML?
    —it’s the foundation for web development and it will be helpful for with blockchain development
  4. What is an HTML tag?
    —It is used for creating an element
  5. What is the structure of an HTML tag?
    such as <p> </p>
  6. What is an attribute?
    —It is extra information about an element that you don’t want to appear in the actual content
  7. What is the anatomy of an HTML document?
    —its how all the elements of the HTML go together such as:
    <!DOCTYPE html> , <html></html>, <head></head>, <meta charset="utf-8">, <title></title>, <body></body>
1 Like
  1. HTML is the foundational programming language for the web.
  2. HTML is used for creating static website pages.
  3. We’re learning HTML because it’s foundational and easy for NOOBS :slight_smile:
  4. An HTML tag is used to wrap content for programming purposes (bold, link, insertion, etc.)
  5. HTML tags include the content (for wrapping), opening tag, closing tag, and the element.
  6. Attributes are identifiers to be used for classification purposes.
  7. HTML documents include a title, head, and body.
1 Like