HTML Reading Assignment

  1. HyperText Markup Languague
  2. It is use a base protocol for building a display layout on any web browser from local files or from the world wide web.
  3. In order to learn and use the following languages we need to be able to learn about type of technologies that they can be implement opp-on in order to practice and experience the impact on the new technologies on the industry.
  4. HTML tags are enabling as to add more elements\content in our page
  5. content </closing tag with the element name> , tags can include more details and additional tags within the tag but we eventually always have the above structure when we’re using a most of the HTML tags.
  6. attribute can be added to the tag and add different sort of values to our added element, like adding classes, hyperlink, src, etc.
  7. HTML document anatomy will include: html (protocol), head - will include title and other character encoding for the rest of the document, body - will include the content of the document.
1 Like
  1. HTML is not a programing language, it’s a markup language
  2. HTML is used to define the structure of the content
  3. We learn HTML because it is the foundation to learning other coding languages and is so common in websites
  4. HTML tag is enclosed brackets on both sides of the text that tell the webpage what to do with those words; example: hyperlink, highlight, exc.
    5.An HTML tag structure is made from an opening tag, a closing tag, the content. The element is the word for the opening tag, closing tag & content
  5. An attribute contains extra information about the element that you don’t want to appear in the HTML code
  6. Anatomy of an HTML document is made up of elements -
-required preamble that makes sure the document behaves properly wraps all the content on the page and is sometimes known as the root element acts as a container for everything you want to include in the html that isn't part of the content to display online, things like keywords, search words, thai element sets the character set your document should use to UTF-8 which includes most characters from a vast majority of written languages sets the title of the page and is also what appears in the browser tab when bookmarked contains all the content to show to webpage viewers
1 Like
  1. Hypertext Markup Language
  2. Code used to structure a webpage and contents.
  3. Assist in front end portion of launching our own website.
  4. Tags define sections of the HTML.
  5. Opening and closing
  6. The ā€œmeaningā€ of the element that won’t appear on the page.
  7. Opening and closing tabs form the element which contains content and an attribute can be contained within.
1 Like
  1. What is HTML?
    Ans: HyperText Markup language that defines the structure of one’s content.
  2. What is HTML used for?
    Ans: code that is used to structure a webpage and its content
  3. Why are we learning HTML?
    Ans: So that we can know how to build a website that interacts with our smart contract
  4. What is an HTML tag?
    Ans: A tag is used to create an element in HTML
  5. What is the structure of an HTML tag?
    Ans: It starts with an opening tag <…> and ends with a closing tag </…>
  6. What is an attribute?
    Ans: 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?
    Ans: <!DOCTYPE html> required preamble
    <html></html> wraps around all the content on the page
    <head></head> acts as a container for all the stuff you want to include, but not show, to visitors
    <title></title> sets page title
    <body></body> contains all content you want to show to visitors
1 Like
  1. HTML stands for HyperText Markup Language and core language used on websites worldwide. It was originally developed by Tim Berners-Lee whilst he was working at CERN in the early 90s.

  2. HTML used as the framework describing and specifying the contents of any given webpage.

  3. We are learning HTML in order to be able create web frontends to interactive with Smart Contract backends.

  4. A html tag is a markup system using angle brackets to either wrap around some contents or in some cases single elements with no content exist.

  5. A HTML tag consists of opening and closing tags contained within angle brackets and the opening tag can contain none or more attributes. Most tags contain content between the opening and closing tags apart from the special case of empty elements.

  6. An attribute is a name and value pair.which can be part of an opening tag or an empty element.

  7. HTML documents generally consist of a type definition, Followed by a html tag. Within the html tag are two core elements. The head tag contains header information which is generally at least a meta tag defining the charset and a title tag. Following on from this is the body tag. This is the area where the content designed to be visible to viewers of the document is located. Finally at the end of the document the html tag is closed.

1 Like
  1. What is HTML?
    It is the code that can create website structure

  2. What is HTML used for?
    it is used to create a website

  3. Why are we learning HTML?
    Because we need this to interact with the blockchain

  4. What is an HTML tag?
    It is a container that holds the content.

  5. What is the structure of an HTML tag?
    It has a open, content, close

  6. What is an attribute?
    It is an instruction to do a specific function

  7. What is the anatomy of an HTML document?
    It has 1. HTML root 2. A header 3. Body 4. Footer

1 Like

1. What is HTML?
HTML is a markup language

2. What is HTML used for?
It defines the structure of content on a website

3. Why are we learning HTML?
So we can connect websites to smart contracts

4. What is an HTML tag?
There is an opening and a closing HTML tag which included with the tag content makes the element

5. What is the structure of an HTML tag?
An HTML tag has an open and closed angle bracket that surrounds the symbol for the element name. There is an Opening Tag before the content of the element and a Closing Tag at the end of the content.
6. What is an attribute?
An attribute contains additional information about an element

7. What is the anatomy of an HTML document?
An HTML document contains the following:

  • doctype declaration
  • html element html element wraps all the page content - root element
  • head element head element is a container for all invisible content such as page titles, descriptions, meta data
  •  sets character set to utf-8
  • title element sets page title which appears on the browser tab and names the page if you bookmark it
  • body element contains everything you want to show the visitors to your web page
1 Like
  1. HTML is the code and the markup language used to structure the content of a web page

  2. It is used to define the structure of the web page

  3. So that we can build simple websites to interact with our smart contracts

  4. An HTML tag is what is used to define what is wanting to be done to a particular portion of content

  5. There are two tags, the opening tag and the closing tag. The opening tag consists of the name of the element you’re using with opening and closing angle brackets. The closing tag is the same as the opening tag except it has a forward slash in front of the element name and after the opening angle bracket.

  6. An attribute is used in html to group content into categories that can be pulled up later

  7. Doctype, root element - html, head, meta, title, and body

1 Like
  1. What is HTML?

HTML is short for Hyper Text Markup Language.

  1. What is HTML used for?

HTML is the code that is used to structure a web site.

  1. Why are we learning HTML?

We are learning HTML so we can build a front end/user interface to the website that will later interact with smart contracts on the back end.

  1. What is an HTML tag?

An HTML tag dictates where the element starts and ends.

  1. What is the structure of an HTML tag?

An HTML Tag contains an opening tag and a closing tag both containing how the content is to be structured and the closing tag also indicates where the content contained within the tags ends.
content</closing tag> all of this together makes up the element.

  1. What is an attribute?

Attributes are contained in the opening tag after the element name. It consists of an attribute name and is followed by an attribute value. They can be used to configure the element or adjust their behavior such as changing the font, the color, playing music or a video, can allow spell checking, etc.

  1. What is the anatomy of an HTML document?

An HTML document contains
< !DOCTYPE html> required preamble
< html> begin wrapping all the content on page/root element
< head> contains stuff you want inserted into the page but can not be seen by viewer.
< meta charset=ā€œutf-8ā€> This element sets the character set and includes most characters from the vast majority of written languages.
< title>page title sets the title of the page
< /head> end wrapped/hidden content.
< body> begin viewable page content
< img src=ā€œimages/image sourceā€ alt=ā€œimage descriptionā€ >
< /body > end viewable page content
< /html> finish wrapping all the content on the page

1 Like
  1. It is not a programing language, it is a markup language that defines the structure of your context.
  2. TO define the structure of the content that consists of the elements which you use to ensure or wrap varies parts of the content to make it appear a certain way or act a certain way.
    3 HTML is the basic building blocks of building web design and the foundation.
  3. Tag is used for creating a element and used in angle brackets such as § for paragraph.
  4. Opening tag, Closing Tag, content,
  5. Attrib ute contain extra info about the element that you dont want to appear in the actual content.

DOC
HTML
HEAD
META
TITLE
HEAD
BODY
IMG
Body
HTM

1 Like
  1. Hypertext Markup Language

  2. HTML is a markup language used to structuring a webpage content.

  3. Learning HTML can be used a foundation for learning other programming languages. Moreover we are learning to as this serves as the frontend to interact with the back end which is the smart contract.

  4. A HTML tag are used for structure and format the contents on a webpage.

  5. Opening tag, content, Closing tag (This os just one example, it varies depending upon the requirement)

  6. Attribute contains extra information that is not visible in the actual content of the webpage.

1 Like
  1. Hyper Text Markup Language.
    2.Markup language that defines the struture of your content.
  2. To connect websites to smart contracts.
  3. It is a container that holds the content.
  4. we have an Opening Tag before the content of the element and a Closing Tag at the end of the content.
  5. Extra info about the element taht you don“t want to appear in the atual content.
    7 . Doctype, html, head, meta, title, and body.
1 Like

It“s a technology that let“s you see contents in your browser, and HTML means Hypertext Markup Language.

  1. What is HTML used for?
    It is used to program websites with a fixed content.

  2. Why are we learning HTML?

To understand how Web works and build frontend, to see results of coding fast.

We learn HTML to be able to build user interfaces for applications

  1. What is an HTML tag?

An HTML tag is used to define content on the website.

  1. What is the structure of an HTML tag?

starting and ending. It starts like < Hello World > and closes like < / Hello World >

  1. What is an attribute?

Attributes provide additional information about an element within the opening tag.

  1. What is the anatomy of an HTML document?

The structure which define a full page of a website, which contains all the elements needed such as body, head and title.

1 Like

1.HTML or Hypertext Markup Language, is the code that is used to structure a webpage or its content.
2.HTML consists of a series of elements which you use o enclose, or wrap different parts of the content, to make it appear a certain way, or act a certain way.
3. We are learning HTML because it is the groundwork for web development, its a markup language that defines the structure of your content.
4. HTML tags are hidden keywords in a webpage that define how your web browser must format and display the content.
5. An HTML tag consists of the name of the element wrapped in opening and closing angle brackets.
6. Attributes contain additional information about the element that you dont want to appear in the actual content.
7. Head elements and body elements

1 Like

1.) What is HTML? Is the code that is used to structure a web page and it’s content.HTML ( HyperText Mark Language) is not a programming language.
2.) What is HTML used for? Provides a basic structure for a website. Makes sure text and images are properly formatted on a site.
3.) Why are we learning HTML? In order to be able to build our own site to feature any projects, business, etc without having to hire a outside source to build a site.
4.) What is an HTML tag? Keywords that define how you want your site to be formatted.
5.) What is the structure of an HTML tag? tags start with and can have a attribute in following the tag. Then need to be closed with the closing tag is the same as the opening tag except is contains a forward slash.
6.) What is an attribute? HTML Elements can also have attributes which give additional information about the the element.
7.) What is the anatomy of an HTML document? Shows that the site is written in HTML. Contains information about the site. Shows the sites title. Contains the content of the site.

1 Like
  1. Hypertext Markup Language
  2. HTML defines the structure and appearance of your content on a web page.
  3. Its important to learn HTML since it is a fundamental tool to and a first step in building web pages.
  4. An HTML Taga are used to create elements. They start with a ā€˜<’ and end with a ā€˜/>’ e.g.

    paragraph content

  5. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  6. The anatomy consists of a list of different elements all combined to make up the page.
1 Like
  1. HyperText Markup Language,meaning that is the set of markup symbols or codes inserted into a file for display on the Internet
  2. We use this markup language in order to tell web browsers how to display a web page’s words and images, to build the structure of the website
  3. In order to use it as a tool to structure a website and with the help of java script to add logic and interactivity in order to make a good front-end that will interact with our smart contracts
  4. An HTML tag is a special word or letter surrounded by angle brackets, < and >.We use them to enclose, or wrap, content like words, images etc to make them hyperlink to somewhere else.
  5. The structure is:
    a) opening tag (it states where the element begins)
    b) content (which can be text,image etc)
    c) closing tag (it states where the element ends).
  6. Attributes gives us some more information for the characteristics of the element.They are specified in the opening tag and usually consists of name/value pairs like name=ā€œvalueā€
  7. The anatomy is:
    <! DOCTYPE html> It shows that document behaves correctly
    < html>< /html> we enclose all the content on the entire page
    < head>< /head> It includes content that don’t want to show to the web viewers but to appear in the browser tab like < title> is
    < body>< /body> it includes the content that want to show to page’s users like
    text, images, videos etc
1 Like
  1. What is HTML used for?

HTML is a hypertext markup language that is used to structure websites.

  1. Why are we learning HTML?

We are learning it because it is a fundamental part in programming itself.

  1. What is an HTML tag?

A tag is used to embed text in it.

  1. What is the structure of an HTML tag?

It has an opening and closing tag.

……

. The closing tag differentiate itself from the opening by including a forward slash in it.
  1. What is an attribute?

An attribute contains extra infƶr about the element which you don’t want to see in the actual website. It has a name and a value

Empty space between opening

  1. What is the anatomy of an HTML document
element that wrapes entire content of page includes keywords that are not included in viewers page utf8 is the allowance to text with the alphabet contains the content

<img src=ā€žImageā€¦ā€œ alt=ā€žtest my imageā€œ> src (source) alt (alternative) for the image

1 Like
  1. What is HTML?
    Hyper text markup langeage

  2. What is HTML used for?it is used to code the structure of the content in a web page and wrap and envolve all the elements into the webpage

  3. Why are we learning HTML?
    because if we know how to create a web page we wll create our own web pages this is the basic ,the fundations.

  4. What is an HTML tag?
    it“s one of the main parts of the element

  5. What is the structure of an HTML tag?

  6. What is an attribute?
    An attribute contains extra info about the element ,
    example: class=ā€œeditor-noteā€

  7. What is the anatomy of an HTML document?

opening tag + content + closing tag

my cat is beautiful

          ELEMENT
1 Like
  1. Hypertext Markup Language
  2. It is a language used to structure a web page and its content.
  3. Because we will use simple website as the frontend for our blockchain applications.
  4. A tag allows our browsers to identify what type of content will be shown and its behavior.
  5. Content
  6. An attribute contains extra information about the element that you don’t want to appear in the actual content
  7. The essential ones are or root element, that is what we want to appear in search results, to support the majority of characters, to put the title to our page and to put the contents of our web page.
1 Like