HTML Reading Assignment

  1. What is HTML?
  • html is hyper text markup language that defines the structure of your content .
  1. What is HTML used for?
  • HTML is used to structure a webpage and build websites .
  1. Why are we learning HTML?
  • because when we write a smart contract we want to be able to build an interface website or to front end a smart contract so users can interact with it easily
  1. What is an HTML tag?
  • HTML tag is a root element that used to wrap content .
  1. What is the structure of an HTML tag?
  • < element>content< /element >
  1. What is an attribute?
  • attributes contains extra information about element on which the content will be modified or differed
  1. What is the anatomy of an HTML document?
example

example content

1 Like

1.) HTML is the code that allows you to structure a web page and its content.

2.) HTML is a mark up language that is used to define the structure of the content on a web page.

3.) We are learning HTML to become familiar with the language in most code and gain an understanding of basic web development.

4.) An HTML tag allows a word or image to hyper like to somewhere else.

5.)The structure of an HTML tag is

structure

so its structure with an opening and closing tag with the content between the two tags.

6.) An attribute contains extra information about the element that you don’t want to be seen on the front end of the web page.

7.) The anatomy of an HTML document is as follows.

   <!DOCTYPE html>
     <html>
       <head>
         <meta charset="UTF-8">
         <title> answer</title>
      <head/>
      <body/>
        <img> source="example" alt= "example">
      <body>
    <html>
1 Like
  1. It’s a markup language that defines the structure of your content.
  2. It is used to structure a web page.
  3. To understand the basics of code.
  4. It’s a name of an element wrapped in angle brackets.
  5. < p > for example.
  6. An attribute contains extra information that you don’t want to be seen on the web page. It contains a name and value.
  7. Individual elements that combined to form an entire HTML page.
1 Like
  1. What is HTML?
    Hyper Text Markup Language is a code designed to structure a web page and its content.

  2. What is HTML used for?
    It is used to build web pages.

  3. Why are we learning HTML?
    It is a good way to start learning code, we can program web page and then have some Java elements and some interaction with a database and with blockchain.

  4. What is an HTML tag?
    A web page consists of a series of elements that need tags to define them to make them appear or display in a certain way.

  5. What is the structure of an HTML tag?
    Opening Tag:

    it has opening and closing angle bracket with the name of the element § in this case.
    Content: Content of the element.
    Closing Tag:

    opening and closing brackets with a forward slash and the name of the element.
    Atributes: Extra information about the element, they will target and modify it.
  6. What is an attribute?
    Extra information about the element, they will target and modify it.

  7. What is the anatomy of an HTML document?

1   <”DOCTYPE html>  (LINK TO SET OF RULES)
2   <html>     (WRAPS THE CONTENT OF THE WHOLE PAGE)
3      <head>   (ALL THE CONTENT FOR THE PAGE THAT WONT BE DISPLAYED)
4          <meta charset="utf-8>   (SET THE CHARACTER SET)
5          <title>TITULO</title>  (TITLE ON TOP OF WEB PAGE)
6      </head>
7      <body>
8         <p>Hola a Todos</p>    CONTENT TO BE DISPLAYED AND SEEN)
9      </body>
10 </html>
1 Like
  1. What is HTML?

Hypertext Markup Language.

  1. What is HTML used for?

It is used to construct the content of websites.

  1. Why are we learning HTML?

To be able to brag about what we learned online.

  1. What is an HTML tag?

It is a the root element of an HTML page.

  1. What is the structure of an HTML tag?

image

  1. What is an attribute?

Some functions of elements can be accessed via attributes.

  1. What is the anatomy of an HTML document?

image

1 Like
  1. HTML its a murkup language that defines the structure of content, its the code that used to structure a web page and its content, and also its the most building block of the web.
  2. it used to wrap different parts of the content to make it appear in a certain way or act a certain way to markup to annotate the text image and other content of display.
  3. Its a protocol and the beginning of the web address so e can create any web pages with that protocol that why we learn HTML.
    4.they state where the elements are begins and ends for making the web recognized.
  4. they start with opening tag and closing tag.
  5. Its extra information about the elements that appear in the actual content .
  6. That wraps up the basics of individual HTML elements that they combined to form entire HTML page
    WITHOUT THE SPACE AFTER EACH <
    < !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. HTML -Hypertext Markup Language- a code used to build a basic web page…a series of elements
  2. HTML is a code used for structuring web page and the contents
  3. HTML is based on Web 1.0 and is the building block of what is used today
  4. HTML tag is a hidden keyword that defines how your web browser must format and display the content…ie. to act as a link or to make the text bold
    5 The structure of a HTML tag … there is an opening and a closing pair…the tags

    and

    defines a paragraph. Everything between the opening tag and closing tag are considered an ELEMENT
  5. Attributes contain extra information about the Element that wont be visible on the Web Page. There need to be a ā€œSpaceā€ between the Element name and the Attribute…an attribute name followed by an equal sign and a value in quotes, the close the tag
  6. The Anatomy of an HTML document is…
  • Required preamble …!DOCTYPE html…
  • Root Element …html …wraps the entire content of the page
  • …head…element…contains information not visible on web page
  • meta charset=ā€œutf-8ā€ …element that sets the readable characters from most languages
  • A title of page … Title of Page
  • Close the… head …
  • …body… what you want to appear on the web page ie. and image or text
  • cose the …body
  • close the… html
    I used example elements when writing my answers but anything in carrots would not appear in my posted answer so that why there are periods before and after the tags that would have been used
1 Like

I tried using the tags and they would not show…now I saw your answer and the extra space is a great idea

1 Like
  1. What is HTML? HTML is website code. It is used to build the website itself with its content.** **HTML is an acronym for Hypertext Markup Language. A markup language is not the same as code for content as its use is governs the way the website elements act and the content appears when the user engages with the website.
  2. What is HTML used for? Building the website itself.
  3. Why are we learning HTML? Communications on the internet become possible by using HTML. It is foundational; it is the means by which content is expressed and allows for text to be large, small, italicized, spaced. Links are created and referenced; colors, placement are established. HTML is used to surround content with code that dictates the structure and look of the website and its content.
  4. What is an HTML tag? It is the beginning or end point of an element which is named for its purpose. There is the opening tag and the closing tag.
  5. What is the structure of an HTML tag? The opening tag is comprised of the less than sign: < ,name of element (an abbreviation), greater than sign: >. Importantly the closing tag of the element contains a forward slash: / before the element name.
  6. What is an attribute? The attribute is extra information about an element that is not part of the content. It explains particulars about the element. It has the category of the attribute followed by the value of that particular attribute. Multiple attributes may be added to an element. This marking of the element allows for it to be targeted later with code in order to effect the way they appear or act. It is a way of referencing elements of a particular focus so you may manipulate all elements with that attribute as you continue to code.

The attribute is within the opening tag: one space after the element name, equals sign with no space followed by value within quotes.

I saw a note indicating attribute values can be unquoted, which, I assume, means no spaces where the quotes would be, is that the case?

So, I found out ****** :

Unquoted attribute values in HTML

Most people are used to quoting all attribute values in the HTML they write. For example:

	<a href="foo" class="bar">baz</a>

Single quotes can be used too:

	<a href='foo' class='bar'>baz</a>

However, the following is valid HTML as well:

	<a href=foo class=bar>baz</a>

Also I found out: What is ASCII whitespace ******* ?

In HTML

"HTML Living Standard specifies 5 characters as the ASCII whitespace: U+0009 TAB, U+000A LF, U+000C FF, U+000D CR, and U+0020 SPACE. In the form of text, they are treated as normal space characters and sequential whitespaces are collapsed as a single space in many cases (this behavior can be changed by the white-space CSS property). They are also used as a separator of an element name and its parameters, class names, and so on.ā€

In JavaScript

"ECMAScriptĀ® 2015 Language Specification specifies several Unicode codepoints as white space: U+0009 CHARACTER TABULATION , U+000B LINE TABULATION , U+000C FORM FEED , U+0020 SPACE , U+00A0 NO-BREAK SPACE , U+FEFF ZERO WIDTH NO-BREAK SPACE and Other category ā€œZsā€ Any other Unicode ā€œSeparator, spaceā€ code point . These characters are usually unnecessary for the functionality of the code.ā€

  1. What is the anatomy of an HTML document? The anatomy of an HTML document is comprised of all the elements that make for an HTML page. They are:doctype – This ensures the page acts as it should and was originally a link to a set of rules required in the early days. It looks like this**:The root element is the HTML element which encompasses the HTML pad in its entirety:The head element wraps around everything that is not the actual content for readers,that includes SEO keywords, style, etc.:Next element is to ensure most all characters from different languages may be used within the code. Setting UTF-8 should not be omitted as it saves trouble in the long run:Title of the page element appears on browser tab and when bookmarked:

Last is the body element which is the body of the text people read and any and all images, videos, etc. for reader’s perusal:

References:

7.https://www.w3schools.com/html/html_classes.asp

8.*https://mathiasbynens.be/notes/unquoted-attribute-values

9.**https://developer.mozilla.org/en-US/docs/Glossary/whitespace

1 Like
  1. html (hypertext markup language)
  2. HTML is code used to structure content on web pages.
    3.code is used to structure and create smart contracts,etc.
  3. Tags are elements of HTML used to enclose or wrap content.
  4. Opening tag, content,closing tag, element.
    (I didn’t quite understand the question)
  5. Artribute contains extras information about element.
  6. Wraps up the basics of individual html elements.

:space_invader:

1 Like
  1. HyperText Mark Up Language. It is the language of web.
  2. It structures a webpage giving it content.
  3. It is the starting point for web development.
  4. Use to create an element.
  5. Opening tag element name, including attribute, the content and closing tag e.g

    Omas

  6. It is additional information about the element.
1 Like
  1. What is HTML? Text known as code used to create webpage
  2. What is HTML used for? Create webpage
  3. Why are we learning HTML? Foundation for programming java, c++, solidity, etc.
  4. What is an HTML tag? Code that is used to modify content
  5. What is the structure of an HTML tag? Opening tag and sometime closing tag to encapsulate content which can contain attributes
  6. What is an attribute? Info you want but do not want displayed that allows you to target the element
  7. What is the anatomy of an HTML document? Elements, open/close tags, content
1 Like

1. What is HTML?

HTML is a markup language that defines the structure of the content we want to display.

2.What is HTML used for?

HTML is used to enclose or wrap different parts of the content to make it appear or act in a certain way.

3. Why are we learning HTML?

Because it’s quite simple to learn and also because we will need it to build websites that will eventually interact with the smartcontracts or dapps that we will build.

4. What is an HTML tag?

A tag denotes the start and end of a section in HTML.

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?

<html>
  <head></head>
  <body></body>
</html>
1 Like
  1. HTML is not a programming language, it defines the structure of your web content.
  2. It is used to program/create websites.
  3. To create an web interface (front-end) so we can interact with smart contracts/dapps (back-end).
  4. An identifier usually consisting of an opening and closing pair, that structures a certain piece of content, like a header and list element.
  5. The beginning tag consists of the name whereas the ending tag consists of the same name preceded by a forward slash
  6. Attributes provide additional information about an element.
  7. Has a header that contains information on what the web page will be displaying and a body that will include all of your websites content.
1 Like

1.What is HTML?
HyperText Markup Language - is marking language used to create and write web pages.

2.What is HTML used for?
HTML is used to create structure of web page.

3.Why are we learning HTML?
HTML is base line to allow us to understand further of web and blockchain programming.

4.What is an HTML tag?
Opening and closing tag determine beginning and end of element.

5.What is the structure of an HTML tag?
Opening tag
Closing tag </name of element>
Tags could contain attributes.

6.What is an attribute?
Attribute is placed inside opening tag and contain more information about element.

7.What is the anatomy of an HTML document?
<!DOCTYPE html> - Rules require s to document behaves correctly.

`<html></html>
-  ` `Wraps all
content of page.`

<head></head> - Bunch of stuff attached to web page, but not visible to web users.

<title></title> - Title of web page visible in browser tab.

<body></body> - Contains everything you want to be visible to web page users.

1 Like
  1. What is HTML?
    H yper t ext M arkup L anguage

  2. What is HTML used for?
    is the protocol used to view web pages

  3. Why are we learning HTML?
    because it will be used to insert javacripts

  4. What is an HTML tag?
    tags are used for search engines to identify the contents of web pages

  5. What is the structure of an HTML tag?

<p> What is the structure of an HTML tag?</p>
  1. What is an attribute?
    Attributes contain extra information about the element

  2. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>photos from last summer</title>
  </head>
  <body>
    <img src="images/last summer/me_at_the_beach.jpg" alt="My picture">
  </body>
</html>

1 Like
  1. What is HTML?
  • HTML is a markup language that defines the structure of a webpage. Hyper Text Markup Language
  1. What is HTML used for?
  • HTML is used to structure a website and ensures the correct formatrting of text and images so that the users browser can display the elements correctly.
  1. Why are we learning HTML?
  • As a foundation for Web Development and blockchain development, mainly as a refresher for myself as its been a while since i last built a website.
  1. What is an HTML tag?
  • A HTML tag is instructions to the browser to define what type of content it is and how to render it
  1. What is the structure of an HTML tag?
  1. What is an attribute?
  • An attribute specifies additional instructions or properties to the content included between the tag
  1. What is the anatomy of an HTML document?
  • The anatomy of an HTML document includes:
    doctype> - sets rules for the HTML page to follow
    html> - wraps the contents on the page
    head> - contains page info that is not content. (keywords, page description, css, character set, etc…)
    body> - contains the contents of the page ( text, images, video, etc…)
    meta charset=ā€œutf-8ā€> - character set of the document, to handle textual content
    title> - sets the title of the page, which appears in the browser tab
1 Like

Reading Assignment: HTML

HTML is a markup language.

HTML is used to describe the structure of a web site.

We are learning HTML because it is a basic building block for all web pages on the internet today. Having this knowledge is an important foundation for building any type of web site or application where users will interact via web browser.

Tags are used in HTML to describe a ā€œblockā€ of content.

HTML uses opening and closing tags around specific. Opening tag names are enclosed in <> and closing tags include a /. For example, <tag>text content</tag>

An attribute can be added to a tag to provide additional information that is not part of the content.

An HTML document contains elements (sets of tags and content) describing the structure of a web page. Each HTML document typically will contain html, head, title, and body elements at a minimum. The html element contains the entire page.

1 Like
  1. HMTL stands for Hypertext Markup Language.
  2. It is used to structure a web page and its content.
  3. We learning HTML so we can create a basic website which gonna be later able to interact with a smart contract.
    4.it’s the name of an element.
    5.An HTML tag has an opening and a closing tag.
    6.An attribute contains extra information about the element you don’t want to show in the actual content.
    7.An HTML document always has: element that’s wrapping all the content on the entire page
element contains all the things you don't want to show in the content element contains all the things you want to show in the content.
1 Like
  1. HTML stands for hypertext markup language.

  2. As the acronym suggests, HTML is a markup language, referring to the fact that it is code that structures a web page and its content. Notably, it is not a programming language!

  3. We are learning HTML to be able to create webpages that can interact with the blockchain. If we don’t learn HTML ourselves, then we would have to pay someone else to do the work, and we may not even understand what they are doing without any of our own background knowlede.

  4. A HTML tag helps the browser recognize what type of content it is meant to be showing.

  5. The structure of a HTML tag is as follows:

<p> The "p" stands for paragraph.
A "p" in chevrons ( < > ) indicates the start of a paragraph,
while a forward slash in front of the letter ( /p ) 
indicates the end of the paragraph. </p>
  1. An attribute contains extra information about the contents of a tag, that you don’t want to be shown in the actual tag when it is displayed on the website itself.

  2. The anatomy of a HTML document is as follows:

<!DOCTYPE html> // this is outdated, but necessary for code functionality
<html> // wrapping the entire webpage's content all in one
  <head> // can include keywords and/or a page description. this info will NOT be shown on the webpage
    <meta charset="utf-8">
    <title="Hello"> // the title of the webpage that you will see in bookmarks and/or tabs of a web browser
  </head>
  <body> // where all the contents of the webpage goes
    <img src="myDirectory/hello.png" alt="Hello Logo">
  </body>
</html>
1 Like