HTML Reading Assignment

  1. What is HTML?
    It is a markup language for the internet.

  2. What is HTML used for?
    Used to layout the web page in it’s static form.

  3. Why are we learning HTML?
    HTML is web 1.0. This is the base of the internet and allows to output visually the layout to the users.

  4. What is an HTML tag?
    It is a fragment of text (keyword) that starts and ends with < >. Different tags denote different elements of a web page, for example: a paragraph

  5. What is the structure of an HTML tag?
    There is an opening tag with the opening bracket and the keyword

    and a closing bracket with the slash and the same keyword to en that element:

  6. What is an attribute?
    An attribute is a modifier to the element in question, for example size, color, etc. and is given in the opening tag.

  7. What is the anatomy of an HTML document?

A marker denoting the language (HTLM) , a head and a body.

< html>
< head>

< /head>

< body>

< /body >
< /html>

  1. **What is HTML? it’s a code that is use to structure a web page and its content
  2. Why are we learning HTML? basis of web programming
  3. **What is an HTML tag?**fragment of a text
  4. **What is the structure of an HTML tag? it consist of a content and an element
  5. **What is an attribute?**extra information about the element that you don’t want to appear in the actual content.
  6. **What is the anatomy of an HTML document? opening an closing tag
1 Like
  1. What is HTML?
    HTML or Hypertext Markup Language is not a programming language but a markup language for defining the structure of your content.

  2. What is HTML used for?
    to manipulate the content of your website in a way you want it to be

  3. Why are we learning HTML?
    in order to be able to create simple webpages for later front end use.

  4. What is an HTML tag?
    it determines the type of content that’s being displayed

  5. What is the structure of an HTML tag?
    and tag and the content

  6. What is an attribute?
    Attribute is what we assign to different elements

  7. What is the anatomy of an HTML document?

<html>
  <head>
  </head>
  <body>
  </body>
</html>
1 Like
  1. HTML stands for Hyper text markup language and it defines the structure of the content for a web page.
  2. To build the structure of a website.
  3. HTML is good to learn as part of the foundation for web development and blockchain technology.
  4. A tag is what lets the browser recognize what type of content it has on a website.
  5. Opening tag

    , and usually has an attribute inside and then finishes with a closing tag

  6. It is used to denote some type of special feature or characteristics of an element.
  7. Is the way to package the code of a website.

1. What is HTML?
HYPERTEXT MARKUP LANGUAGE

2. What is HTML used for?
All websites from internet get HTML coding. It is used for framing a website , give proper sizing , correct display …It defines the structure of any website that different browsers displayed on our pc screens ( no need to say BRAVE browser is the best so far hehe)

3. Why are we learning HTML?
HTML is the basic language to master when playing with the internet. It does help for many things and it will be very useful once we start developing smart contracts and link them to the web via website.

4. What is an HTML tag?
A tag is the instruction code that the browser can read and display the content . When coding, we use an opening and a closing TAG to create an “element”

5. What is the structure of an HTML tag?
< p > CONTENT TO BE DISPLAYED < /p > <?> CONTENT TO BE DISPLAYED
front BRAKETS and end brackets… The all parts are forming an ELEMENT

6. What is an attribute?
Attributes contain extra information about the element that it won’t show in the content.

7. What is the anatomy of an HTML document?

< !DOCTYPE html>
< html>
< head>
< meta charset=“UTF-8”>
< title>FRED IS THE BEST< /title>
< /head>
<body>
< p>IVAN ON TECH IS COOL< /p>

< /body>

< /html>

In this example, I had to put a space in the coding to make it appear in the reply…

@ivga80: Pleace format your code correctly.

1 Like

1. What is HTML?
HTML stands for hypertext markup language

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

3. Why are we learning HTML?
HTML seems to be a prerequisite to expressing ourselves in the JavaScript (and possibly others) language.

4. What is an HTML tag?
The enclosing tags can make a word or image hyperlink to somewhere else.

5. What is the structure of an HTML tag?
The structure generally consists of an opening tag and a closing tag. The opening tag is wrapped in opening and closing angle brackets and the closing tag is the same except a forward slash before the element name.

6. What is an attribute?
An attribute contains extra information that you do not want to appear 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">

<a href="https://www.mozilla.org/en-US/about/manifesto/">Mozilla Manifesto</a>
        </body>
</html>

Perfect, thank you for formatting your code!

Hi, question nr 7 don´t work…
what’s wrong with it?

Thank you so much for noticing. Hopefully this is an improvement.

1 Like
  1. What is HTML? Hypertext markup language helps define the structure of your content on a web page
  2. What is HTML used for? it is used to help 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? to builds understanding of how the structure of the blockchain works and how to interact with it
  4. What is an HTML tag? It states where the element begins or starts to take effect and where it ends to close
  5. What is the structure of an HTML tag? Open, content, close. This forms a element
  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? Individual elements that are combined to form an entire HTML page
1 Like

@ivga80

<!DOCTYPE html>
<html lang="en">
< head>
<meta charset="UTF-8">
<title>I HAVE TO IMPROVE MY CODING HAHA</title>
< /head>

< p>@ivga80 ---> THANK YOU FOR SUGGESTIONS, didn't know about it! <strong>AWESOME!</strong></p>

<body>
< /body>
</html>

1 Like
  1. HTML (HyperText Markup Language) as the name suggests is a mark-up language, rather than a programming language. By this we meant that it is used to define format and structure (e.g. the properties such as alignment, size, colour and hypertext links of the various items such as text or images).

  2. HTML is used to structure webpages and their content.

  3. In order to construct simple static webpages, from which logic and interactivity can be added using JavaScript. This will ultimately allow us to create front end website to interact with a blockchain.

  4. A HTML tag is used to define the properties of an element (such as a piece of text), e.g. that the text in question should be in its own a paragraph.

  5. The structure of the opening tag is an opening angle bracket ( < ) followed by the element name and a closing angle bracket ( > ). Following the content to which the tag applies, a closing tag is required. A closing tag consists of angle bracket followed by a forward slash ( </ ), the element name again, and a closing angle bracket ( > ).
    E.g.

    The quick brown fox jumped over the lazy dog.

    (which means the text enclosed in the opening and closing tags will appear in its own paragraph).

  6. An attribute allows you to store extra information about the element (that isn’t part of the content itself).

  7. The anatomy of an HTML document is how the individual elements of HTML instructions are combined together to form an entire (web) page.

1 Like

Nice… that’s what i meant. Good job.
Ivo

  1. HTML is not a programming language, rather a structural language to the backend of any website.

2)It is used to keep and structure the content of any website.

3)We are learning front end, so we are able to connect to our back end “smart-contracts” or dapps in the future and connect the best of both worlds

4)A tag is what sets the beggining and end of any information at the web page. It consists on having the info between brackets (< >) It defines the type of content you wanna input on the website and a tag starts with an opening , and finishes with a closing

5)A tag starts with an opening , has usually an attribute inside and finishes with a closing

6)An attribute specifies some additional properties regarding the content included inside a tag.

  1. The anatomy consists in the way you wrap website code, like
1 Like
  1. HTML is a markup language that you can use to change and create the structure of the content that you want to show on a webpage.

  2. HTML is used to structure the content of webpages in a standardized way so all webbrowser know how to display the content to you screen like it is supposed to look.

  3. We are learning HTML because we will need an understanding of how webpages work to work with them later on with blockchain programming.

  4. An HTML tag is used to wrap content that it is working with. Wrapped content can then be modified inside a tag.

  5. An HTML tag will start with an opening angle brackets, the element name and a closing angle bracket followed by the content and ending with an opening bracket, forward slash, element name and closing angle bracket.

  6. An attribute inside HTML can be used inside a tag to give the element extra attributes like having the content text be written in bold or italic. The attribute that changes the element will not be actually shown when looking at the webpages content, as it is inside the tag, defining the content.

  7. An HTML document will start by declaring that it is using HTML standards with
    the first tag that you know use is which wraps everything that will be displayed on the page, also called root element.
    now you start a where you can include all information that you need but dont want to display to users looking at your page.
    After that you can create a tag to include most characters that are used in most languages.
    Finally you can set the titles of your webpages with and your contents with

1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? To structure web pages and its content
  3. Why are we learning HTML? It is important for any developer to learn because regardless of what you are building, you want people to be able to find a description (at the very least) of what you built. You can then show them on a website.
  4. What is an HTML tag? to isolate content within any element you create.
  5. What is the structure of an HTML tag? HTML consists of a series of elements used to enclose, wrap or make parts appear in a certain way.
  6. What is an attribute? Attributes contain additional information about the element we do not want to appear in the actual content
  7. What is the anatomy of an HTML document? It’s the way the whole code will look like containing attributes, elements and other tools to allow the content to be shown in a understandable format to those who just want to consume the content we make available through the code.
1 Like
  1. Hypertext Markup Language - code used to structure a web page. Its not a programming language, but a markup language.
  2. Structuring websites in a standard way.
  3. We need to interact with the internet.
  4. Tags are structural parts of HTML. They open and close an element.
  5. Open tag

    and closing tag

  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 describes the standard way of structuring an HTML page. It contains all the pieces that are needed to structure the page including what the user sees and what they don’t see.
1 Like
  1. html is a markup language used to describe the content that is displayed on your webpage. This description is behind the scene and not seen by visitors of that webpage.
  2. html is used to make the webpage display content in the manner the creator wants the viewer of the page to see it.
  3. We are learning html because it is the basic level for coding and is a building block to learn other code. Also you will be able to see a finish product to show to others.
  4. An html tag has an opening tag, content, and closing tag. This is how you put in your specific content and wrap it so that it displays where you want it without other information being able to mix into that specific content. For example: I want to learn html. If you don’t open and close this sentence correctly you could have a sentence that states: I want that is for to learn html. The tags keep your content exact and placed in the right position on your webpage.
    5.The structure of a tag is an <> an opening tag, content, </> a closing tag
    6.An attribute is extra information that you don’t want to show up in your content
  5. Anatomy is makes your page work correctly, open tag for the all the content on page, content you don’t want to show on page, how your page shows up on the web, content you want to show on page, closing tag that closes your document and encapsulates all the information you put into the page.
1 Like
  1. What is HTML? HyperText Markup Language
  2. What is HTML used for? To create and structure your web page
  3. Why are we learning HTML? You need to know how to structure an HTML document so you can correctly add a JavaScript script to your page.
  4. What is an HTML tag? Hidden keywords within a web page that define how your web browser must format and display the content.
  5. What is the structure of an HTML tag? Open and close brackets <></>
  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?
My JavaScript Course
1 Like
  1. HTML - hyper text markup language.
  2. It is the code that is used to structure a web page and its content
  3. 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
  4. HTML tags show how the web page is formatted and how it can be read by the browser
  5. “<” tag “>” … “<” /endtag “>”
  6. Attribute specifies additional information about the element
  7. "
... ... "

What would be the best way to write answer in code, that it would be displayed as text and not run as code?

1 Like