HTML Reading Assignment

  1. HyperText Markup Language

  2. making websites

  3. so we can make websites that work with various block chains

  4. the HTML commands
    5.whatever tag

  5. helps specify the tag

> <!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. What is HTML?
    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, or act a certain way.
  2. What is HTML used for?
    HTML is used for enclosing or wrapping different parts of the content to make it appear a certain way, or act a certain way in a website.
  3. Why are we learning HTML?
    We are learning HTML because it will help us (developers) in many aspects in building applications deployed on the web. Where web applications can interact with smart contracts applications deployed on the blockchain.
  4. What is an HTML tag?
    Starting and ending points of an element
  5. What is the structure of an HTML tag?
Title
  1. What is an attribute?
    Attribute is an extra information about the element.
  2. What is the anatomy of an HTML document?
    opening tag
    closing tag
    content
    element
    image
1 Like
  1. What is HTML?
    HTML stands for Hyper Text Markup Language

  2. What is HTML used for?
    HTML ensures the proper formatting of text and images so browser may display them as
    they are intended to look.

  3. Why are we learning HTML?
    Help understand the structure of a smart contract starting with front end development.

  4. What is an HTML tag?
    HTML tags are at the center of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.

  5. What is the structure of an HTML tag?
    Denoted in < and >, the end tag additionally starts with a /

  6. What is an attribute?
    An attribute in HTML/XML is used to denote special features/charateristics of an element or tag

  7. What is the anatomy of an HTML document?

... ...
1 Like
  1. What is HTML?
  • Hyper Text Markup Language is the code language to present information onscreen. It’s the framework that allows for text input and formatting etc.

  1. What is HTML used for?
  • Presentation of data on screen. HTML offers you head, body, footer tags and many formatting in-between.
  1. Why are we learning HTML?
  • Learning HTML will give us the knowledge to be able to present a front end (website / UI) for our clever dApp etc.
  1. What is an HTML tag?
  • An HTML tag is a description of what is happening in angular brackets. NOT all tags have closing tags i.e. </…> however, not all. An example of a tag would be an Ordered List
      …
    .
  1. What is the structure of an HTML tag?
    Opening tag is the name inside angular brackets. A closing tag is the same but including “/” i.e

      …
  2. What is an attribute?

  • An attribute sets out extra properties of the data within the tags. Attributes modify the properties in the element.
  1. What is the anatomy of an HTML document?
> <html>
> 	<head>  (Including loads of info such as description, charset, metadata, title etc </head>
> 	<body> (Including the info that you wish displayed ... within the body can be header and footer also </body>
> </html>
1 Like
  1. HTML stands for Hyper Text Mark up Language
  2. It’s used to distinguish and add features to text on web pages, make lists, make certain words stand out
  3. To understand the basics of programming and get our brains to think a certain way
  4. The Tag is placed at the beginning and at the end of the words that you need to mark up
  5. <>
  6. An attribute is additional information that you don’t want to appear in the content
1 Like
  1. HTML is Hypertext Markup Language
  2. HTML is used for the markup of a website, the layout of the way you se a website on internet.
  3. We are learning HTML, because programming languages and blockchain work together with HTML.
  4. A HTML tag can make a word or image hyperlink to somewhere else.
  5. The structure of an HTML tag: you have an opening tag and a closing tag. and in between this angle brackets a letter < p>. A closing tag has also a slash between the angle brackets < /p>.
  6. An Attribute controls the behavior or has extra information about the element. But does not appear in the actual content.
  7. The anatomy of an HTML document begins with < !DOCTYPE html>
    Then < html> and inbetween you have < head> and < body>.
    like this:
    < !DOCTYPE html>
    < html>
    < head> < head/>
    < body> < body/>
    < html/>
1 Like
  1. What is HTML?
    It is the code used to structure a website and all its content.

  2. What is HTML used for?
    It is not a programming language, it is a markup language that defines the structure of your content.

  3. Why are we learning HTML?
    So we can how to create basic websites with plain text, it is important to know how the front works to better understand the back-end (apps).

  4. What is an HTML tag?
    An HTML tag consists in a command in a web page that tells the browser to do something. Tags are enclosed in less than (<) and greater than (>) signs.

  5. What is the structure of an HTML tag?
    The opening tag, the closing tag, the content and the 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?
    The two main parts of an HTML document are the head and the body. Each section contains specific information. The head section contains information that is useful to the Web browser and search engines but is not visible to the reader. The body section contains the information that you want the visitor to see.

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of the content of a web page.

  2. What is HTML used for?
    It consists on a series of elements that can be used to enclose or wrap different parts of the content so it is shown in a certain way.

  3. Why are we learning HTML?
    To give a Front End to our Back End Blockchain Developments.

  4. What is an HTML tag?
    An HTML tag defines the way the content is shown in the web page.

  5. What is the structure of an HTML tag?

<head>
body
</head>
  1. What is an attribute?
    Is a characteristic of a page element (e.g. font size/color)

  2. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html lang="en">
     <head>
         <title>This is the title</title>
    </head>
    <body>
         <h1>Hello world</h1>
    </body>
</html>
1 Like
  • What is HTML?

‘HTML’ is a programing language and is an acronym for ‘Hypertext Markup Language’.

  • What is HTML used for?

HTML is used to help create structure webpages and their content on the internet.

  • Why are we learning HTML?

We are learning HTML to have an understanding of how webpages are structured. HTML has been around since the early 90’s, so its like an internet history lesson.

  • What is an HTML tag?

An HTML tag is a type of command that when put around certain content, tells that content to do something different.

  • What is the structure of an HTML tag?

HTML tags are seen with ‘<>’ and '</> around the specific tag. For example ’

’ to indicate that what ever content is between the tags will be shown as a ‘paragraph’.
  • What is an attribute?

An attribute allows for extra information to be placed on the elements that we are creating.

  • What is the anatomy of an HTML document?

HTML documents are usually set up like this;

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

The whole webpage is set inbetween the <html> tags.

1 Like
  1. HyperText Markup Language is used to structure a web page and its content.
  2. HTML is used to structure a web page and its content.
  3. Tou should br able to create a basic webpage that interacts with the blockchain.
  4. Tags are used to enclose, or wrap, different parts of the content to make it appear a certain way, or act
    a certain way.
  5. The structure of a HTML tag consists of a opening tag

    and a closing tag

    .
  6. A attribute contains extra information about the element that you don’t want to appear in the actual
    content.
<!DOCTYPE html>
   <html>
   <head>
   <meta charset="utf-8">
   <title>My test page</title>
   </head>
   <body>
   </body>
   </html>

Edit @ivga80 (You must use the preformattet text to show the code in a post.)

1 Like
  1. What is HTML? HTML it is a markup language that defines the structure of your content

  2. What is HTML used for? 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 enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

  1. What is an HTML tag? In HTML , a tag is used for creating an element . The name of an HTML element is the name used in angle brackets such as

    for paragraph. Note that the end tag’s name is preceded by a slash character,

    , and that in empty elements , the end tag is neither required nor allowed. If attributes are not mentioned, default values are used in each case.
    ’
  2. What is the structure of an HTML tag? opening tag, a attribute and then a closing tag

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

  4. What is the anatomy of an HTML document? An HTML page always starts with the tag , it has and where all the info needed to the website that won’t appear as a content (title, descriptions, seo, scripts and so on), and finally the where all the content lies. All these tags need to be closed

1 Like

Hi.
You have set the backslash / on the wrong side inside of the tags.

It should be like this:

<head> </head>
<body> </body>

:slight_smile:
Ivo

1 Like

Hi.
The last part is not correct.
Do you see what I mean?

Ivo

2 Likes
  1. HTML stands for Hypertext Markup Language.
  2. HTML is used for structuring a web page its content.
  3. We are learning HTML in order to have the basic knowledge to eventually be able to interact with smart contracts.
  4. An HTML tag is used to indicate the beginning and end of an element.
  5. It is the opening tag, content and the closing tag.
  6. An attribute is the extra content you don’t want to appear in the actual content.
  7. It consists of the element, which includes the opening tag, then the content and lastly the closing tag.
1 Like
  1. What is HTML?
    Hypertext Markup Language
  2. What is HTML used for?
    Structuring a web page and content
  3. Why are we learning HTML?
    To help with understanding the root concepts behind the various programming languages that html helps to illustrate the practical value of the programs we build with such languages. And to help us learn how to learn as it pertains to computer science.
  4. What is an HTML tag?
    The html tag specifies the name of the element and where it begins and ends
  5. What is the structure of an HTML tag?
  6. What is an attribute?
    An attribute is used to give an element an identifier that can be used to target the element later on and it should always have an equal sign that leads to quotation marks that contain the attribute value
  7. What is the anatomy of an HTML document?
<! DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Anatomy of html doc</title>
</head>
<body>
<img src="image.jpg" alt="this is an image of me doing homework: sitting in a white chair.">
</body>
</html>

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

2 Likes

2 Likes
  1. HTML is a markup language
  2. HTML is used to define the structure of the website
  3. We are learning HTML to create the front end of our website (brag about our knowledge :wink: )
  4. A tag is used to define the use of a particular element, i.e. p (paragraph) or img (image)
  5. <‘name of the tag’ ‘AttributeName=“AtrributeValue”’ >
  6. And attribute further defines the properties of the tag, such as ‘href’ to make references to paths or ‘class’ to create a pointer to that tag

DOCTYPE
html tag
head “metadata that is not content”
body “content data”

1 Like

hi,

Thank you, now i see its wrong.
i will correct it.

Alberto

1 Like
  1. It is a mark up language for web building.
  2. Define’s the structure of your content.
  3. To learn how to build site on top of ETH and then connect it to blockchain.
  4. That’s the bracket identifying the opening and closing of elements of the structure of HTML
  5. You have the html - root element
    head - all the stuff we want to include but its not shown on the page.
    body - the shown content on the page.
  6. Attribute give the element identifier.
  7. You can break down the HTML to all of its elements:
  • paragraphs
  • headings
  • lists
  • links
    Combined together they making the whole look and functionality of the page.
1 Like
  1. What is HTML? - HTML is a mark-up language that defines the structure of your content.
  2. What is HTML used for? - HTML is used to make content appear in different ways and styles.
  3. Why are we learning HTML? - I am learning HTML to know how to build a website that interacts with a blockchain.
  4. What is an HTML tag? - An HTML tag is a piece of code that opens and closes elements.
  5. What is the structure of an HTML tag? - The structure of an HTML tag consists of the name of an element and opening and closing angle brackets.
  6. What is an attribute? - An attribute contains extra information about the content that you don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document? - The anatomy of an HTML document consists of all the elements that are combined to form an entire HTML page.
1 Like