HTML Reading Assignment

That’s a nice way of answering html questions, i like it👍.

1 Like
  1. What is HTML? HTML is the abbreviation for Hypertext Markup Language.

  2. What is HTML used for? HTML is the programming language used to create web pages.

  3. Why are we learning HTML? We are learning HTML because it is essential that one knows the structure of a web page in order to properly incorporate javascript codes within a web page.

  4. What is an HTML tag? An HTML tag identifies what kind of element is associated with the respected tag. The tag gives instructions to the browser on how to display/interpret the data associated with it.

  5. What is the structure of an HTML tag? Except for the img tag, all other tags come in pairs. Tags are represented by a letter enclosed in angle brackets. The closing tag is preceded by a forward slash.

  6. What is an attribute? An attribute specifies the properties of an element.

  7. What is the anatomy of an HTML document? The following is the basic anatomy or structure 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>

[/quote]

1 Like
  1. Hypertext Markup Language
  2. Coding the structure of a website
  3. It’s foundational for anything internet
  4. The pieces of code used to open and close elements
  5. opening tag = closing tag =
  6. Extra information about elements
  7. Made up of elements, content enclosed in tags
1 Like
  1. and 2. HTML is a markup language that defines the structure of the content that we are presenting.
    We can use the elements of the HTML language to create titles, paragraphs and so on to construct the layout in which we present our content. We can use the “tags” to integrate links to images or other sites. The elements of the language can be used to make your content appear in a certain way or act in a certain way.

  2. Because it is the basic structure and the fundamentals to understand how the future of the internet aka Web. 3.0 will work.
    4.A HTML tag is used to open and to close or you can also say to wrap an element. A tag consists of an element (for example: head) wrapped in opening and closing brackets ( for example: ). There is an opening and a closing tag the closing tag looks like the opening tag but has also a “” which makes it for example look like <\head>.

  3. The structure looks like the following: content <\head>

  4. Attributes contain extra information about an element that you don’t want to appear in the content. It can help you to classify elements that you maybe want to target with different styles later.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    
  </body>
</html>

The anatomy of an HTML Document is basically the above, we have the this is a part of history that was implemented as a link in the beginning of HTML to make sure that the page follows certain rules now it does not do much anymore, but is necessary to make sure the page works correctly.

Next we got the which wraps the whole page content

Than there is the which contains the set characters that can be used to write the code in our case UTF-8

The also contains this wraps what will be shown as the name of the tab in your explorer

Next there is the which basically contains all the content shown on your site.

1 Like
  1. Hyper Text Markup Language
  2. HTML is used to make text or an image to Strutcture, format and arrange or behave a certain way.
  3. We are learning HTML to understand the basics of a web development upon which further advanced development can be done.
  4. A tag defines the content described in it.
  5. <></>
  6. Attribute defines the style or additional information which does not appear in the content.
  1. HTML (Hypertext Mark-up Language) is a programming code.
  2. It enables structuring of web pages and their content.
  3. HTML is foundation for blockchain and web programming.
  4. HTML tags are instructions in angle brackets, also called HTML mark-up.
  5. HTML are structured in on opening tag followed be content and finished with an closing tag.
  6. Attributes are extra information about the element that you don’t want to appear in the actual content.
  7. The autonomy comprises the standard elements of the a HTML page: (1) Doctype / preamble (2) html / root element (3) Header / content which is not shown on the page (e.g. keywords, page descriptions) (4) titles / description of the tab and bookmark (5) body / visible content of the page
1 Like

1 HTML is a Markup language that defines the structure of my content
2 Is used to design websites and show your images, text on a website
3 Because we need to create websites to start creating smart contracts
4 The tags can modify the way withe content will show, like color, title, is an image, etc
5 consist a enclose the tag to show in a different way
6 attributes contains element, so you can identified for your own reasons
7 is the structure of html content will have in any pages, will always start with an open tag content close tag, and that tag has an element itself

1 Like
  1. HTML (Hypertext Markup Language) - code used to structure a web page and its content
  2. Used to define and organize the structure of your content. HTML is comprised of a series of elements, which enclose/wrap different parts of the content to make it appear a certain way, or act a certain way.
  3. HTML is the most basic structure of web design and helps organize your website. Since dApps are a combination of website + smart contracts, need to know how to create a functional web page.
  4. A tag is used for creating an element and it begins and ends an element in the source code. The element itself can contain data, text, an image, or nothing at all.
  5. There is an opening tag that consists of the name of the element, wrapped in opening and closing angled brackets. This states where the element begins or starts to take effect. The closing tag is the same as the opening tag, except that it includes the forward slash before the the element name.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. <!DOCTYPE html> - required to make sure domain behaves correctly
    <html></html> - root element that wraps all the content on the entire page
    <head></head> - container for all the stuff you want to include on HTML page that isn’t content you want to show page viewers
    <meta charset=“utf-8”> - sets character set to UTF-8
    <title></title> - title of your page
    <body></body> - contains all the content that you want to show to web users
1 Like
  1. Hypertext Markup Language
  2. It is a language for displaying text, pictures, videos, and other media on websites.
  3. It is the basic knowledge for a website developer to start developing.
  4. Tags are used to isolate content within any element.
  5. starting with <?> and close by or using < /> to open and close within one line.
  6. An attribute modifies or adds information to an element.
  7. Html, head, body
1 Like
  1. Hypertext Markup Language
  2. To help webbrowsers to translate pages on the web so they are readable
    3.To be able to make webpages on the internet. This allows you to get you to get your future products out there.
  3. A tag tells the browser what type of content it should show and how it should look.
  4. An opening tag and a closing tag content
  5. The attribute tells more about the content inside a tag.
  6. It has a head with information about the page and a body with the content of the page.
1 Like
  1. HTLM stands for Hyper-Text Markup Language.

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

  3. We learn HTML to enable us create a simple webpage

  4. A tag is used to tell the browser exactly what is intended.

  5. Tags have an opening(<>) and a closing(</>).

  6. An attribute gives extra information to an element such as where a link goes or where an image is located.

  7. Anatomy of an HTML document;

(DOCTYPE html)
(html)
(head)
(tittle)page tittle goes in here(/tittle)
(/head)
(body)contents goes in here(/body)
(/html)

1 Like
  1. Hypertext Markup Language
  2. HTML is used for adding content to our website, its the foundation of any website, because it provides structural supports and frame for our website.
    3 We are learning HTML because its the basic steps/ foundations any programmer should learn when its comes to coding, without learning HTML it would be difficult for us to give our website a good form/structure.
    4.HTML tags are used for creating elements, usually HTML tags have an opening and closing tags which signifies the beginning and end of code.
  3. The structure of an HTML tag starts with an opening bracket like this < and ends with a />
  4. An attribute is the extra form of text in the html using for targeting the content in case of styling
  • List item
1 Like
  1. What is HTML? HTML is a markup language that defines the structure of your content.
  2. What is HTML used for? HTML is a used to make the content appear a certain way
  3. Why are we learning HTML? We are learning HTML so that we will be able to build the web environment around our dApps.
  4. What is an HTML tag? Enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
  5. What is the structure of an HTML tag? An opening tag, closing tag, the content, and the element
  6. What is an attribute? An attribute is html code that contains 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>
  <html></html>
  <head></head>
  <meta charset="utf-8">
  <title></title>
  <body></body>
1 Like
  1. Hypertext markup language is used to define the way content is presented and structured.
  2. It is used for web development to define the visual and functional aspects of a web document.
  3. HTML is basic knowledge needed for front end development and web design.
  4. An HTML tag defines how an element appears or behaves.
  5. An opening tag followed by the content and then a closing tag creates a complete element.
<p> hello frens </p>
  1. An attribute is used to define how specific parts of your content are displayed and can be further used to target elements for style information and other things.
  2. An html document must specify the <!doctype>
    the root element, the head, specify the character set (generally stay the same)
    title and body
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
    <img src="oldpicofme.png" alt="hot guy">
  </body>
</html>
1 Like

What is HTML and what is used for?
This is a markup language to structure the content of web pages.

Why are we learning HTML?
It enables us to build the “visual interface” (bridge) between users and our developments.

What is an HTML tag?
HTML tag defines the way a element will appear on the page. It could be text, images, hyperlink and so on.

What is the structure of an HTML tag?
We have opening and closing brackets, and between the element that we want to show.
We can also add some additional features like attributes.

What is an attribute?
Attribute are informations not visible and linked to an element. It seems like properties of an object.

What is the anatomy of an HTML document?
The simplest anatomy of an HTML doc contains following elements :

  • DOCTYPE
  • html tags
  • head tags
  • meta tags
  • body tags
1 Like
  1. HTML is a Hypertext Markup Language used to create web pages.
  2. HTML is used to structure web pages and content.
  3. To better understand HTML and learn how to create web pages.
  4. A HTML tag is the root of a HTML document and is the container for all HTML elements.
  5. The structure basically conisists of title ,head and body.
  6. An attribute is used to adjust HTML elements such as style ,color ,images.
  7. Anatomy of the HTML document is where the element begins or starts to take effect.
1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    HTML is used for constructing the web pages and content of a website.

  3. Why are we learning HTML?
    To understand the layout of a website and make the user interface better.

  4. What is an HTML tag?
    HTML tag is an element that will appear on the page. It could be anything from pictures, images and links.

  5. What is the structure of an HTML tag?
    You need an open and close bracket and put an element between the two tags.

  6. What is an attribute?
    The attribute is properties of an object such as height, width, or color.

  7. What is the anatomy of an HTML document?
    An html document must have <!doctype> in the beginning. It also needs a head, title, and body.

1 Like
  1. Hypertext Markup Langauge
  2. Write code to program websites
  3. To understand the basic building blocks to write smart contracts
  4. An element that appears on the website
  5. A < & > that enclose the element in the middle
  6. provides extra characteristics of a tag
  7. Begin with !Doctype and follow with the specific language you want to use, a title, heading, body, and whatever else you would like to add
1 Like
  1. HTML stands for Hyper Text Markup Language and is used to structure the contents within a web page.

  2. Answered in question 1 lol.

  3. We are learning HTML because it is the first building block in Web Design which provides a structure for actual programming languages such as JavaScript.

  4. An HTML tag starts the process of creating an element. Example: < p>content< /p>

  5. Answered in question 4.

  6. An attribute adds more information to the element that will not appear on the actual content.

  7. < !DOCTYPE html>
    < html>
    < head>
    < meta charset=“utf-8”>
    < title>My test page< /title>
    < /head>
    < body>
    < /body>
    < /html>

Minus the Spaces of course :slight_smile:

1 Like
  1. Hypertext mark up language
  2. building websites
  3. It’s the front end of a website that users interact with
  4. A tag is used to make words appear on the site or attach hyper links
  5. you need an open tag & a closing tag with a forward slash
  6. it’s a way to show extra information about an element
  7. you have an opening tag a header tag elements a body tag elements & a closing tag
1 Like