HTML Reading Assignment

  1. A markup language made of elements
  2. To display content in specific/different ways using different types of elements
  3. Because it is a foundational language that many other coding languages are based off of
  4. An identifier that defines the type of element
  5. Open tag inside “<>” and then a closing tag inside “<>” with a “/”. Example :
  6. Extra information about an element that is not displayed in the element
  7. a. Doc types - defines the ruleset that the document is using
    b. Root element - wraps all of the content (what does this mean? Can there be elements outside the root element? If not, why is it necessary?)
    c. element - place for information you do not want displayed with content
    d. Character set element - defines the “alphabet” of characters that can be displayed (?)
    e. self-explanatory
    f. SE. as well
1 Like

Thanks for these answers in different terms than just copy paste from website. Helps to apply context.

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content, and it consists of a series of elements, which you can use to manipulate how content appears on a page.
  2. What is HTML used for?
    It is used to format and structure texts on websites in any given way.
  3. Why are we learning HTML?
    To learn how to structure text on a client-side interface.
  4. What is an HTML tag?
    a Tag is the name of an element, and it is wrapped in opening and closing angle brackets. A tag states the beginning of the element taking effect, as well as when the element ends (depending on the tag).
  5. What is the structure of an HTML tag?
    “< element>content< /element>” , and you can have nested elements to emphasize specific text, in which case, the structure can look the following way:
    “< element>the< element2>content< /element2>content< /element>” (There are not supposed to be spacing after the first angle bracket).
  6. What is an attribute?
    They are non-unique identifiers that can be used to target an element. Basically, attributes contain extra information about the element that we do not want appearing on the actual content of the web page we are building.
  7. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>All in</title>
  </head>
  <body>
    <img src="images/dogecoin.png" alt="dogecoin to the moon">
  </body>
</html>

Thanks a lot. Appreciate it.

Keep up the good Work :+1: :muscle:

1.2.Html is a hyper text web markup language developed to build and display web sites.
3. to understand the web better and create sites for our smart contracts :slight_smile:
4 tags are instructions for the content in the elements of html files.
5.(tag)content(/tag)
6.attributes provide extra information about the element: attribute name=“attribute value”
7.

<!DOCTYPE>
<html>        
           <head>
           </head>
           <body>
           </body>
    </html>

:nerd_face:

1 Like
  1. What is HTML?

HTML (HyperText Markup Language). It’s a code.

  1. What is HTML used for?

HTML is the code that is used to structure web page and its content.

  1. Why are we learning HTML?

To understand basics of the coding.

  1. What is an HTML tag?

Opening of the certain command.

  1. What is the structure of an HTML tag?

Open & closing.

  1. What is an attribute?

It’s an extra info that would not be shown to users.

  1. What is the anatomy of an HTML document?

It’s combination of individual elements to form an entire HTML page.

1 Like
  1. What is HTML?

It is a coding language for creating websites

  1. What is HTML used for?

To build websites and structure how information will look like and behave on websites

  1. Why are we learning HTML?

This is so we can create a way to interact with our smart contract through a website

  1. What is an HTML tag?

A part of an element that enclose the data on a website

  1. What is the structure of an HTML tag?

Open tag and Close tag

  1. What is an attribute?

Information about the data the people seeing the website doesnt see

  1. What is the anatomy of an HTML document?

A series of elements and tags nested into an html doctype

1 Like
  1. What is HTML?
    Hyper Text Markup Language
  2. What is HTML used for?
    Designing web pages
  3. Why are we learning HTML?
    Because we need design a web page for use with java script therefore creating a client
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
    An HTML tag is commonly defined as a set of characters constituting a formatted command for a Web page. At the core of HTML , tags provide the directions or recipes for the visual content that one sees on the Web.Feb 1, 2017
  6. What is an attribute?
    An attribute specifies some additional properties regarding the content included inside a tag
  7. What is the anatomy of an HTML document?
<html>
   <head>... </head>
   <body>...</body>
 </html>
1 Like
  1. What is HTML? HTML is a markup language that defines the structure of your content.
  2. What is HTML used for? Creating web pages
  3. Why are we learning HTML? It is a good starting point for programming.
  4. What is an HTML tag? Tags enclose elements and can effect the text or image in different ways.
  5. What is the structure of an HTML tag? An opening tag, the content, and then the 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? Doctype, HTML, Head, Meta charset, title, body
1 Like
  1. What is HTML? - Hypertext Markup Language is the code that issued to structure a web page and its content.
  2. What is HTML used for? - HTML is used to be able to customize content on websites by giving said content attributes or different ‘elements’ to make, for example, the font look certain way or hyperlink it.
  3. Why are we learning HTML? - we are learning HTML so we can see what the front end
  4. What is an HTML tag? - Tags enclose content.
  5. What is the structure of an HTML tag? - There are opening tags that start the content and closing tags the finish it and the they both look the same except the closing tag as a / before the element name.
  6. What is an attribute? - They are pieces of extra information that you don’t want to appear in the actual content itself.
  7. What is the anatomy of an HTML document? - doesn’t really have much use these days, but makes sure that you document behaves correctly. The element wraps all of the content from the entire page (root element). The element wraps all of your non-viewed content. This content can describe the page in the search results. The is an element that can set your character settings to UTF-8. This is used because it can access characters from the vast majority of written languages enabling / allowing most text to be input seamlessly. The element sets the title to your page that appears in the browser tab the page is loaded in. The element contains all of the content that you want to show your viewers when the go to the page.
1 Like
  1. hypertext markup language
  2. structure a web page and its content
  3. The backend applications will interact with the web so understanding html is a foundation for blockchain integrations.
  4. Beginning and ending of an element. Used to define type of content
    5.Opening tag, content, followed by a closing tag make up the element.
  5. Attributes contain information you don’t want to appear. They are non-unique id that give additional properties to the content within the element.
  6. doctype, htlm or root element, head, meta charset, title and body.
1 Like
  1. HyperText Markup Language, it defines the structure of the content.
  2. it is used to create websites
  3. good start to kick it off with programming
  4. is the name of an element
  5. content
  6. additional information about an element that is not seen by the user
<!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?
    It is a programming language for websites

  2. What is HTML used for?
    To create content and structure for websites

  3. Why are we learning HTML?
    To learn the basics of creating a website so that we can combine it to what we will learn in Java

  4. What is an HTML tag?
    Indicates the element to be used

  5. What is the structure of an HTML tag?
    <> & </>

  6. What is an attribute?
    Adds extra information to the element which is not viisble to the viewer of the website

  7. What is the anatomy of an HTML document?
    All the elements combined to form the HTML website

1 Like
  1. Hypertext markup language
  2. Static (web 1) web pages
  3. It deals with how things are displayed on web pages and will come in handy for creating applications.
  4. It starts the instructions on how to display, what to display, and partitioning parts of the web page.
  5. Attributes assign additional information to a tag such as assigning a specific color to text.
  6. A structure that allows the internet browser to read instructions for displaying information to a web page. It has hidden instructions and display instructions. It uses a system of tags to interpret how to display the information and what information to display.
1 Like

1: Hyper text mark up language.
2:Todefine structure and its content of the webpage
3:because html language is fundamentals on building Daps later on.
4:html tag is hidden keyword which define how your content will look like on webpage
5:content of element wrapped in opening and closing tags
6:attribute is additional info about elemnts you dont want to be seen on web page.
7: 2 elements: head and body elements.

1 Like
  1. HyperText Mark Language
  2. Is used to structure a web page and its content.
  3. To learn the basics of programming. The first step to make our won Dapps
  4. Set the starts and finish of an element. Enclose the data to show.
  5. Consist of the name of the element wrapped in opening and closing angle brackets. Closing tag includes forward slash before the element name.
  6. Contains extra information about the element that you don´t want to appear in the actual content.
  7. How the individuals elements combined together. Here the most important
    * wraps all the content on the entire page
  • contains all the stuff you want to include on the page that isn´t the content you are showing
  • contains **aaaaallll** the content that you want to show on your page
1 Like

1.HTML is a protocol that webpages use on the internet to show info on our screen
2. used to edit websites.
3. We´re learning it because it´s a good solid base to understand coding and when and why you´re using the different tools.
4. A tag is used to edit in a webpage. Defines different parts in the document.
5. example yadayada
6. An attribute is used to add content.
7. Starts with a tag and has a head where the info is needed from the website(that wont appear as content and then the body where the content is.

1 Like

What is HTML?
HTML is a language developed for the purpose of generating a Graphical User Interface that would be understood by a web browser. Prior to HTML, web interfaces were rather cryptic and lacked a natural intuitiveness. Web interfaces were simple screen like message boards and you needed to know what you were looking for and where is was. With HTML it became much easier to create useful & pleasing graphical interfaces that helped guide users intuitively to the information they were seeking. The HTML language was designed to be much easy and faster to program compared to earlier languages.

What is HTML used for?
HTLM is used to create the Graphical User Interface on the front end of a web page.

Why are we learning HTML?
When you understand HTML programming, you will have a better understanding of the relationship between the front of the house (the web interface HTML) and the supporting applications (back of the house apps written in CC+, Python, etc…).

What is an HTML tag?
The symbols < > are used to show that a tag is being used. A tag defines an element within the HTML page. Most elements will be defined by a beginning tag element body followed by an ending tag. There are some tags that do not require an ending tag.

What is the structure of an HTML tag?
A HTML tag is inclosed in < > brackets
Example:

is a tag the denotes a paragraph tag.

denotes the end of the paragraph tag
The letter or word with in the < > denotes what type of tag it is. The slash / placed in front of the letter/word denotes the end of the tag.

What is an attribute?
An attribute is additional information about the element.

What is the anatomy of an HTML document?
the anatomy of an HTML page is made up of two main elements.
There is the head element that contains sub elements that help in defining the page.
There is the body element that contains sub elements that are often displayed on the page.

1 Like

1, Hypertext Markup Language
2, To code the structure of website content
3, Because we need to know these basics as a developer and it is used as part of the interface with smart contracts
4, Is a set of instructions that tell the browser how to display content
5, Two parts, an opening and a closing
6, is extra information about the element that you don’t want to appear in the content
7, HTML, head, title, body

1 Like