HTML Reading Assignment

1.HTML (Hypertext Markup Language) is a coding language that enables the structuring of a web page.

  1. HTML is used to structure web pages and it’s contents.

3.To build the front end of blockchain projects.

4.An HTML tag opens and closes content within the element. It commands where the element begins/ take effect

5.The structure of a tag depends on if it’s an opening tag or closing. An opening tag consists of the name of the element, wrapped in opening and closing angle brackets

  1. A closing tag adds a forward slash before the element name.

  2. Attributes give extra command about the element that the coder does not want to appear in the created content.

  3. The anatomy of the HTML document combines the individual elements to form a HTML page. They consists of the head, title and body.

1 Like
  1. What is HTML?
    Hyper Text Markup Language
  2. What is HTML used for?
    Structuring web pages
  3. Why are we learning HTML?
    So that I can create web pages
  4. What is an HTML tag?
    Opening and closing angle brackets around elements
  5. What is the structure of an HTML tag?
    Open and closing tag, content. element
  6. What is an attribute?
    Attributes contain extra information about the element
  7. What is the anatomy of an HTML document?
<!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?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
  6. What is an attribute?
  7. What is the anatomy of an HTML document?

Answer 1. HTML is the code to structure a website.

Answer 2. HTML is use code to define the structure of a website to make elements act in a certain way.

Answer 3. We are learning HTML to create a simple user interface or website to interact between the user and the blockchain.

Answer 4. Tags wrap contents with an opening tag and closing tag. These combined are called elements.

Answer 5. The structure of the HTML tag; There is an opening tag and a closing tag. Within the tag is an element. This element is wrapped on either side with angled brackets.

Answer 6. An attribute is an information about the element that you don’t want to appear in the text. It can be used to attribute a value or rule for a specific element.

Answer 7. The anatomy of an HTML document is a series of codes to make the content of a website behave in a specific way.
Specifically, list below:

  • To specify the type of document. Use the code. <!DOCTYPE html>

  • Code that wraps the entire page and is also known as the root element. Use the code. [ <html> ]

  • A container the holds all the information but does not show up on the page, will turn up in keyword search results this is defined by, using the code [ <head> ]

  • To set the character of your page. Use the code <!DOCTYPE html>

  • To set the title of your page as it shows in the search and to describe the page when it’s bookmarked. Use the code <title></title>

  • To show all the entire elements on a page including pictures, text, playable audible and whatever else. Use the code <body></body>

1 Like
  1. What is HTML?

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

  1. What is HTML used for?

It is used for structuring a web page and its content.

  1. Why are we learning HTML?

To be able to create a front end interacting with the blockchain.

  1. What is an HTML tag?

Tags are used before and after elements to state where it starts and ends.

  1. What is the structure of an HTML tag?

The opening tag consists of the name of the element wrapped in opening and closing angle brackets (< and >). The closing tag consists of a forward slash before the element name in edition to the element name and angle brackets.

  1. What is an attribute?

An attribute is extra information about the element that is not shown in the actual content.

  1. What is the anatomy of an HTML document?

It combines individual HTML elements into an HTML page which consist of head, title and body.

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. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, and can make font bigger or smaller, and so on.

2. What is HTML used for?

  • HTML is most commonly used as the format of the online documents we call web pages.
  • When you create a set of complete HTML documents having a similar look and feel and linking to one another, this is referred to as a website.

3. Why are we learning HTML?

  • We use it for example for:
    • formatting a blog or email
    • working with a CMS
    • embedding external content on your site, and creating usable content.

4. What is 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.
    5. What is the structure of an HTML tag?

<> </>
6. What is an attribute?

  • A property that sets tags

7. What is the anatomy of an HTML document?

Using !DOCTYPE tab functionality in VSC:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
1 Like
  1. Hypertext markup language is detailed instructions that contain standard words rather than programming syntax.
  2. HTML is used to define the structure of a web page and its content.
  3. We are learning HTML to help us to begin to think as programmers as well as developing fundamental skills to be front end developers.
  4. An HTML tag provides the direction for the visual content that one sees on the web page.
  5. An HTML tag are < > symbols that contain a character/s, this is referred to as a opening or start tag. A closing tag has a forward slash in front of a character/s inside the bracket.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. !DOCTYPE, needed to make sure your document behaves correctly. HTML, contains all the content of the web page. Head, contains everything not visible to the viewer. Meta charset = "UTF-8, sets the character set your document should use to UTF-8. UTF-8 is a unicode, an international encoding standard, which enables processing, storage and transport of text independent of platform and language. Body, contains all the content shown to the viewer including img that embeds an image into our page in the position it appears.
1 Like

What is HTML?
Is the skeleton of the web page written in code.

What is HTML used for?
Web Pages

Why are we learning HTML?
To be able to build web pages and dapps

What is an HTML tag?
A tag is a command within the code to define different parameters

What is the structure of a HTML tag?
Opening tag - Content - Closing tag

What is an attribute?
Extra information not displayed for users.

What is the anatomy of an HTML document?

1 Like
  1. What is HTML? it is the code that makes up a web page and its contents
  2. What is HTML used for? creating paragraphs, lists, Images, links
  3. Why are we learning HTML? its a good starting language, which is simlar to Solitidy and we can create front end tools for blockchain programing
  4. What is an HTML tag? Tags enclose contents within an element
  5. What is the structure of an HTML tag?

    starting Tag,

    ending Tag
  6. What is an attribute? its part of an element that you don’t want publicised
  7. What is the anatomy of an HTML document? Head, Title, HTML, Body and Image Elements
1 Like

1.) Hyper Text Markup Language
2.) The code used to make webpages
3.) Learning the elements of HTML will help us understand JavaScript
4.) Tags are an HTML element that can adjust what’s in between the angle brackets
5.) Opening tag and closing tag <> </>
6.) Special information that will not be inside the content
7.)! doctype, HMTL, Meta, heading, body,

1 Like

What is HTML?

A markup Language that defines the structure of your content

What is HTML used for?

To enclose or wrap different parts of the content to make it appear are act in a certain way

Why are we learning HTML?

It is the very basic of programming, which will give a good understanding about coding in general. We can use it to make websites.

What is an HTML tag?
A tag is the start and the end of an Element. It is a simple instruction but by combining multiple instructions we can make applications.

What is the structure of an HTML tag?

The opening tag: <>, the closing tag: </>

What is an attribute?

The attribute contains extra information about the element which is not shown in the actual content.

What is the anatomy of an HTML document?

<!Doctype>
<html>
	<head>
	</head>
	<body>
	</body>
</html>

2 Likes

What is HTML?
-HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
What is HTML used for?
–HTML is a markup language that defines the structure of your content.
Why are we learning HTML?
-To learn how to program web pages and apps.
What is an HTML tag?
-The tags encompass the information within the element.
What is the structure of an HTML tag?
-An opening tag and a closing tag.
What is an attribute?
-Attributes contain extra info about the element that you don’t want to appear in the actual content.
What is the anatomy of an HTML document?
-Doctype, the HTML element,head element,character set element,the title element and finally the body element.

1 Like
  1. HTML is a markup language that can be used to structure web page content.
  2. HTML is used to structure information into nice and easy readable way.
  3. We are learning HTML so that we can receive and display information on web pages neatly.
  4. An HTML tag formats the enclosed line or words to display in a specific way, like making a paragraph or putting words in italics.
  5. An opening HTML tag consists of ‘< >’ enclosing the name of the tag element inside i.e. . A closing HTML tag consists of ‘<>’ enclosing the name of the tag element with a forward slash before the element specifier i.e.
    6.An attribute gives extra information about the element that should not be displayed in the actual content.
    7.First one needs a doctype: to make sure the html document runs correctly.

then an element to wrap the all the content of the html document.

contains all the information that is not part of the content to be viewed to visitors on the web page. would also be under this section, as well as . contains all the content that should be shown to visitors on the web page.
1 Like
  1. hyper text markup language

  2. provides basic structure for the page + ensures the proper formatting of data so the browser may display them as intended

  3. so i dont have to pay others to do it for me + it is pretty much the base software knoledge needed to embark forward

  4. a tag tells the browser what to show and how.

  5. this is the way to add an attribute to a sentence

  6. an attribute specifies the way the content included in the tag should be represented

  7. is the 1st tag then where all the info needed for the website yet not be seen will be(titles) and finally the where all the content lies
1 Like

what happened to answer number 7🤔

1. 1 Hypertext Markup Language
  1. HTML is code which tells a browser what to display.
  2. It is used to structure the content of the web page.
  3. Where an element starts and ends to take effect.
  4. Element:
    (opening tag, content, closing tag)
  5. An attribute has the extra information about the element (it does not appear in the actual context).
  6. The anatomy of the HTML document is all the individual elements combined to form an entire HTML page. (doctype, html, header, character set, body)
1 Like
  1. Markup language used for constructing a webpage
  2. ^^
  3. We need a super-cool face for our dApps and such
  4. The thingy in <>
  5. Open and close it
  6. Descriptive txt not included on page
  7. Nesting of tags in proper order
1 Like
  1. HTML stands for HyperText Markup Language and defines the structure of content. It is made up of a series of elements which defines how the content is shown and how it acts
  2. HTML is used for providing information and video/image content files online which can be shared with others and utilized to create a website or front page to an application
  3. We are learning HTML so we can understand the basics of coding as well as to help us in creating a website which can be used as the front end to our eventual dapps!
  4. An HTML tag defines the name of an element as well as where that element starts and ends and what content is included within the element
  5. An HTML tag includes the opening tab which shows where the element starts and a closing tab which shows where the elements ends
  6. An attribute is extra information about the element that you dont want to appear in the actual content. This can be useful for indexing and targeting the elements to include specific styles or other things
  7. The anatomy of an HTML document starts with the DocTYpe which specifies the type of document (HTML), then an opening tab, a header which is information about the document itself, a title (which will show in the tab) and the body of the document which will include a series of elements followed by a closing tag to note the end of the document
1 Like
  1. What is HTML?

Analogy: A bunch of computer labels that tells a web browser how to display our writings, visuals, and programs, just like how you write and draw on the page with paragraphs, pictures with text wrapping it, and having a pop-out origami on that page.

Accurate: HTML (HyperText Markup Language) is a markup language that defines the structure of a web page and its contents, consisting of a series of “elements” or tags that tells a web browser how a content is displayed or acted in a certain way.

  1. What is HTML used for?
  • making contents human-readable and legible by headers, paragraphs, lists, block-segmenting, etc.
  • displaying videos and images
  • creating hyperlinks to another web pages
  1. Why are we learning HTML?

to understand the basics of coding and to help in creating a website.

  1. What is an HTML tag?

HTML tag “< xxx >” creates elements that organizes the structure of the content

  1. What is the structure of an HTML tag?

Opening tag, the content, the closing tag, and other additional attributes to the tag.

  1. What is an attribute?

Additional information about the tag i.e. identifier for calling later etc.

  1. What is the anatomy of an HTML document?

Head elements to provide page title and general page formatting, and Body elements to put the main HTMK text in the part.

1 Like
  1. What is HTML?
    Hypertext Markup Language is the code used to structure a web page and its contents
  2. What is HTML used for?
    Marking up text and content, such as font size, headings, italics, paragraph breaks, etc.
  3. Why are we learning HTML?
    HTML is the heart of every webpage, we have to know at least a little bit of it to function as web developers.
  4. What is an HTML tag?
    Creates a new element for the web page, such as line breaks, headings, paragraph breaks, buttons, and many other things.
  5. What is the structure of an HTML tag?
    Opening tag, tag element, tag content, and closing tag. Should look like this:
<p class="element">My simple paragraph</p>
  1. What is an attribute?
    A piece of an element that contains extra information about the element we don’t want to appear in the content.
  2. What is the anatomy of an HTML document?
<!DOCYTPE html>
 <html lang="en">
  <head>
   <title></title>
  </head>
 <body>
 </body>
</html>
1 Like
  1. What is HTML?
    –> HyperText Markup Language

  2. What is HTML used for?
    –>It is used to structure web pages and websites.

  3. Why are we learning HTML?
    –> Because it is needed for dapps to be able to interact with websites?

  4. What is an HTML tag?
    –> It is used to create an element on a web page, it can contain text, images or links to other information.

  5. What is the structure of an HTML tag?
    –> Opening tag/Closing tag. ex:

  6. What is an attribute?
    –> Attributes contain extra information about the element that you don’t want to appear in the actual content. It is composed by a class and an editor’s note.

  7. What is the anatomy of an HTML document?
    –> (Doctype/ HTML tag /Head / body)

1 Like