HTML Reading Assignment

1. What is HTML?
a markup language, it determines how text is displayed
2. What is HTML used for?
HTML is used for designing web pages
3. Why are we learning HTML?
it imparts the basic knowledge of programming languages, it is probably the most easy one to learn as a beginner
4. What is an HTML tag?
a tag determines how text is actually displayed
5. What is the structure of an HTML tag?
< opening tag name > content < closing tag name >
6. What is an attribute?
a attribute assigns additional properties to an element
7. What is the anatomy of an HTML document?
the anatomy is the natural structure of a HTML document, which wraps the document and separates the document in visible an non visible content

1 Like
  1. HTML (Hypertext Markup Language) is a markup language that defines the structure of your content.

  2. it is used to create websites that only displays text, images etc.

  3. To learn how to present the content we want onto the web and to get a basic understanding on how to code.

  4. HTML tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller etc.

  5. The opening tag consists of the name of the element, wrapped in opening and closing angle brackets. The closing tag, same as the opening except that it includes a forward slash before the element name.

  6. An attribute provides additional information about contents of an element. They appear on the opening tage of the element and are made up of a name and a value seperated by equal signs.

  7. Doctype, then the html element, head element, utf-8 element, title element, then the body element.

1 Like
  1. What is HTML? HTML stands for Hyper Text Markup Language.

  2. What is HTML used for? HTML is a simple programming language used to build websites with images, text, and links.

  3. Why are we learning HTML? We are learning HTML to be able to understand the basics of programming.

  4. What is an HTML tag? Tags are instructions that tell your computer how to structure the content you are creating. Example: < p> content < /p> } the tag tells the computer to put the content in a paragraph.

  5. What is the structure of an HTML tag? There must be an opening tag… < tag> and a closing tag… < /tag> Minus the spaces within the tag (done for readability).

  6. What is an attribute? An attribute is extra information placed within the element that can only be seen when looking at the code. It will not appear in the content.

  7. What is the anatomy of an HTML document?

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

1 Like
  1. Hyper Text Markup Language
  2. It is used to create the static portions of a web page and structure the content.
  3. So we can build/understand Front End GUI’s for our dev projects.
  4. HTML tags are used to create elements. (Paragraph, H# headings for SEO, Etc.)
  5. Opening Tag-> Content-> Closing Tag = Element
  6. attributes add extra info that you do noy want to appear in the content. (I.E. labels for CSS additions, style changes, etc)
<!DOCTYPE html>
<html>
  <head>
 <title> TITLE </title>
 </head> 
 <body> 
 Content
</body>
</html>
1 Like
  1. HTML (Hypertext Markup Language) is the code that is used to structure a webpage and its context.

  2. HTML is used to define the structure of the content of a web page.

  3. So that we understand the foundation on which all programming languages are based upon.

  4. HTML tags are pieces of code used for creating elements, which are used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

  5. An HTML tag consists of the name of the element wrapped in opening and closing angle brackets (and a forward slash in the case of a closing tag).
    For example: ā€œp>ā€ & ā€œ</pā€ for a paragraph element.
    In empty elements the closing tag is not required nor allowed.

  6. Attributes are optional parts of a tag that contain extra information about the element one does not want to appear in the actual content.

  7. The anatomy of an HTML document looks as follows:

!DOCTYPE html (doctype, required preamble)

html></html (the html> element, to wrap all the content on the entire page)

head></head (the head> element. It acts as a container for all the stuff one wants to include on the HTML page that isn’t the content one is showing to their page’s viewers.)

<meta charset="utf-8" (it sets the character set one's document should use to UTF-8, which includes most characters from the vast majority of written languages)

title></title (the title> element. It sets the title of one’s page, which is the title that appears on the browser tab the page is loaded on).

body></body (the body> element. This contains all the content one wants to show to web users when they visit their page, whether that’s text, images, videos, games, playable audio tracks, or whatever else).

HOW CAN ONE WRITE BOTH ANGLE BRACKETS WITHOUT THEM BEING IDENTIFIED AS OPENINGS AND CLOSINGS OF TAGS OF CODE? :grimacing:

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

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

3)Why are we learning HTML?
We are learning HTML in order to develop web pages.

4)What is HTML tag?
An HTML tag identifies the name of the element wrapped in opening and closing angle brackets. The closing tag bracket includes a forward slash before the element name.

5)What is the structure of the HTML tag?
The structure of the HTML tag is the opening and closing angle brackets.

6)What is an attribute?
An attribute contains extra information about the element that you do not want to appear in the actual content of the web page.

7)What is the anatomy of the HTML?
The anatomy of the HTML is that it wraps up the basics of individual HTML elements. Individual elements are combined to form an entire HTML page.

1 Like

HTML is Hypertext Markup Language.

HTML is programming language used to make static websites.

HTML is the basic website format used in Web 1.0. It is the basic structure for web programming.

An HTML tag contains the content of the website.

An HTML tag consists of an opening tag, and closing tag, which contains the desired content for the website.

An attribute contains extra information of the element, or the opening tag/closing tag combo, that you do not want visible in your site content.

The anatomy of an HTML document includes, doctype, the html element, the head element, the UTF-8 element, the title element, and the body element.

1 Like
  1. HTML - hypertext markup languange
  2. HTML is a code that is used to structrue a website and its contents.
    3.To structure web page and understand coding on basic level so in the future it is easier to recognise and use other softwares
  3. HTML tag is a for creating an element with content
  4. Creating and standing out paragraphs
  5. Attribute is a element which contains extra information that you dont want to appear in the actual content
  6. It has Opening tag, elements/content, closing tag making up element.
1 Like

HTML = Hypertext Markup Language.
HTML is used to structure a webpage and its content.
Learning HTML will help us understand coding. We will need it for coding the blockchain.
A tag identify an element.
It has an opening and a closing tag. The text in between act according the the element in the tag.
Attribute, as the name suggests, identifies what attribute the text has. It is useful for identifying the text and making reference to the text.
Under , you will have the various elements in between and

1 Like
  1. HTML - Hypertext Markup Language
  2. To structure a web page and its contents
  3. To develop web pages and also to prepare for learning JavaScript
  4. A set of characters that define how how the content will be displayed on a web page
  5. An opening tag and closing tag
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
  7. Doctype
    html
    head
    meta chaset utf-8
    title
    body
1 Like
  1. What is HTML?
    A. Hypertext Markup Language
  2. What is HTML used for?
    A. To code and structure a website.
  3. Why are we learning HTML?
    A. Everyone interacts with the web on a daily basis. To be successful in crypto anything that we do has to be made available on the web. Since HTML codes the web it makes sense to start the programming journey here.
  4. What is an HTML tag?
    A. This is the root element which encapsulates the code into a web page.
  5. What is the structure of an HTML tag?
6. **What is an attribute?** A. An atribute contains additional information about an element within the page. 7. **What is the anatomy of an HTML document?** A. The anatomy of HTML document is the combination of HTML elements to construct a page.
1 Like

1.) Hyper text markup language.
2.) Used for creating basic webpages.
3.) In the early nineties, internet was only based on html, to create simple webpages, that included text, links and images. Later it was upgraded using java and other programming languages, to make internet more interactive. Today it is still used and necessary to learn.
4.) Html tag is a formatting tool, that encloses an object and makes possible to add attributes to that object.
5.) Formatting tag is a pair of tags. Opening tag in front of and closing tag at the end of an object.
6.) Attributes are properties put inside an opening tag, and can define size, color, appearance, etc of an object.
7.) HTML document begins with a line <!DOCTYPE>, which ensures, that a webpage behaves correctly.
The whole content of a webpage is enclosed within a tag , that defines a html document.
Inside there are two parts, head and body. Inside head tags are things that arent a content of web page and include search keywords, title, format etc. Inside body, there is webpage content.

2 Likes
  1. HTML is a markup language that defines the structure of your content.

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

  3. HTML is a good approach to begin learning to code. It can also be useful later when we want our blockchain code to interact with a webpage.

  4. 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.
  5. Most HTML documents have the following structural tags inside the body tags.

The tags contain information about the website as a whole. This is often the information at the top of the page that stays exactly the same as you go from page to page on a website. The logo, tagline, and navigation are usually found here.

The tags hold main navigational items for the website. This is usually found inside the tags, or directly underneath these tags. These are the links that take you to the main pages of the site.

The tags hold the main information about the current page. This content is usually the information that changes from page to page.

The tags contain information about the website as a whole. This is often the information at the bottom of the page that stays exactly the same as you go from page to page on a website. The copyright info, address, and sometimes contact information is usually found here.

These tags are found between the body tags, and this is the order these structural tags are usually found:

  1. Attributes contain extra information about the element that you don’t want to appear in the actual content.

  2. How individual elements are combined to form an entire HTML page.

2 Likes
  1. HTML stands for Hypertext Markup Language.

  2. Structures websites and anything within those websites like a picture, link or informational content.

  3. So we can construct and build basic websites that can or will interact with smart contracts and/or the blockchain.

  4. A tag basically specializes certain text like italicizing, bolding, and hyperlinking text.

  5. Anything in between an opening tag (

    ) and a closing tag (

    ).

  6. An attribute is something extra in the content without actually showing up as text on the webpage.

    1. Doctype
  7. html element

  8. head element

  9. utf-8 element

  10. title element

  11. body element

2 Likes

1.) A Markup languagee. Defines structure of content. Consists of Elements
2.) It is used to structure content on a Website. Example: make font bigger
3.) To be able to create Websites that are connected to our Blockchain / Smart Contract. It is one of the pieces needed for a good DApp.
4.) A tag signals where an Element begins and where it ends. There are opening and closing tags.
It consists of the name of the Element. Wrapped in opening and closing angle Brackets.
It can also hold an attribute.
6.) Is a part in the tag. Contains information you dont want in the content. Can be used as a non-unique Identifier.
7.) Consist of multiple Elements.
<DOCTYPE! html>: Required preamble, needed to make suree, your document behaves correctly.

: root element, contains all the content : container for contents that arent content. Example: Keywords, page description : sets the character set used in document to UTF-8 : Title of page. Appears in Browser Tab/Bookmark : all the content
1 Like
  1. HTML is a Hypertext Markup Language
  2. HTLM is used to structure a web page and its contents.
  3. We are learning HTML so we can build web pages.
  4. It is a part of an element that states where the element begins and where it ends.
  5. Opening tag, content, ending tag. EX :

    content

  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. Doctype, the htlm element,UTF-8 element, head, title and body.
1 Like
  1. Hypertext Markup Language is a language that defines the structure of the content.

  2. HTML is used to wrap parts of the content and make them appear a certain way.

  3. We are learning HTML , because it is the base of programming.

  4. In HTML tags are used to create an element.

  5. Opening tag:
    Closing tag

  6. Attributes contain extra information that doesn’t appear in the actual content.

    1. Doctype
    2. element
    3. element
    4. element
    5. element
    6. element
1 Like
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? HTML is used to structure a web page and its content
  3. Why are we learning HTML? To understand and have the ability to create a website that would be able to interact with smart contracts
  4. What is an HTML tag? It is used to define the element, give it directions as to what should be displayed on the web page
  5. What is the structure of an HTML tag? it is made of an opening tag and a closing tag with the content in between. Opening tag and closing tag are both indicated with angled brackets, closing tag has a / in front of it.
  6. What is an attribute? Contains extra info about the whole element that you don’t want to appear in the content.
1 Like
  1. What is HTML?
  • HTML stands for hypertext markup language
  1. What is HTML used for?
  • HTML is used for displaying a web page with links or images in a certain way with certain characteristics, say font, color, or position.
  1. Why are we learning HTML?
  • HTML is important for building dapps and smart contracts that interact with a user interface HTML.
  1. What is an HTML tag?
  • a HTML tag is a wrapped or enclosed element
  1. What is the structure of an HTML tag?
    1 - Opening tag
    2 - Closing tag
    3 - Content
    4 - Element

  2. What is an attribute?

  • Attributes contain extra information about the element that you don’t want to appear in the actual content.

What is the anatomy of an HTML document?

  • !DOCTYPE html
  • html
  • head
  • meta charset=ā€œutf-8ā€
  • head
  • body
1 Like
  1. What is HTML?
    code that is used to structure a web page and its content
  2. What is HTML used for?
    to display web page
  3. Why are we learning HTML?
    To bulit static web page which will be the base to use Java script to interact with users
  4. What is an HTML tag?
    is as a wrap to content.
  5. What is the structure of an HTML tag?
    opening tag content 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 element
    Head
    Meta
    title
    Body
1 Like