HTML Reading Assignment

  1. HTML is a markup language that defines the structure of your content.
  2. HTML is used to structure a web page and its content.
  3. HTML is the basic of programming.
  4. The 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. The name of the element wrapped in opening and closing angle brackets. The closing tag includes a forward slash before the element name.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. Opening tag, closing tag, content and element.
1 Like
  1. hyper text markup language
  2. defines the structure of your content
  3. to layout content
  4. a tag tells the browser what type of content to show in what way.
  5. opening and closing tag
  6. attribute contains extra information about the element that you don’t want appearing in the actual content.
  7. head elements & body elements
1 Like

What is HTML?

A: HyperText Markup Language

What is HTML used for?

A: Code used to structure web pages and its content

Why are we learning HTML?

A: We are learning HTML because it is necessary is structing web pages, designing a clean webpage will make people want to come back and use it more.

What is an HTML tag?

A: The basic structure allowing for different visual effects within an element.

What is the structure of an HTML tag?

A: There is an opening tag and closing tag. The content is embedded between the two tags. An attribute can also be within a tag.

What is an attribute?

A: Contains extra information about the element that perhaps you don’t want to appear in the actual content.

What is the anatomy of an HTML document

A: The required preamble of an HTML page is doctype which are necessary but doesn’t offer much else. Next is the HTML element that wraps all of the content on the entire page, also known as a root wrap. Head element acts like a container for all of the content on the html page. The character set chooses the desired font on the page. Title element is the title of the page shown on the browser tab. Body contains all of the content.

1 Like
  1. What is HTML?
  • HTML (HyperText Markup Language) is the most fundamental building block of the Web. It defines the meaning and structure of web content.
  1. What is HTML used for?
  • HTML is used to create electronic documents (called pages) that are displayed on the [World Wide Web] Each page contains a series of connections to other pages called [hyperlinks]
  1. Why are we learning HTML?
    To be able to have a basic understanding of how a static website is built.
  2. What is an HTML tag?
    Tags are wrapped around content to change how they appear on a website. They must have an opening tag and a closing tag.
  3. What is the structure of an HTML tag?
    -HTML tag has an opening and closing tag elements
  4. What is an attribute?
    An attribute contains extra information about the element that you don’t want to appear in the actual content.
  5. What is the anatomy of an HTML document?
  • The anatomy of the HTML looks like this.
<!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?
(hypertest Markup Language) code use to struture web page

2.What is HTML used for?
Language used to structure content.

3.Why are we learning HTML?
To create web pages and to get employment.

4.What is an HTML tag?
consist of the name of the element

5.What is the structure of an HTML tag?
Is open

and close

6.What is an attribute?
It contain extra information about the element

7.What is the anatomy of an HTML document?
The Basic strutuce of the HTML which head, body,

1 Like
  1. HTML stands for Hypertext Markup Language and is used for structuring content on the website. you can also define text based content directly in a html file
  2. HTML is used for organizing all of the content that a webpage needs in one place to easily display and read it. the styling possibilities are pretty limited with just html.
  3. We are learning HTML because almost every dapp needs a website as an interface for the user. It has to be easily understandable and intuitive and appealing. A HTML file is the minimum you need for a website.
  4. tags are used to define elements, which are pieces of content like an image or a paragraph or the whole body of the website. there are also elements that set a charset or other parameters.
  5. an opening tag always starts with < and ends with > and has a string in between that decides what kind of tag it is. a closing tag looks the same but has a / before the string in the middle. an element starts with an opening tag, then the content and then it ends with a closing tag of the same kind. some tags have no corresponding closing tag and thus no content.
  6. an attribute is a property of an element. they can be changed in the starting tag
  7. the anatomy is the basic structure of every html document which looks like this:
<!DOCTYPE html>
<html>
  <head>
  <meta charset="utf-8"> <!-- this is not mandatory but good practise --> 
    <title></title>
    <!-- title and header (upper part) of the website -->
  </head>
  <body>
  <!--  body - lower bigger part of the website with the actual content -->
  </body>
</html>
1 Like
  • What is HTML?
    HTML stands for hypertext markup language.

  • What is HTML used for?
    HTML is used for the websites structure.

  • Why are we learning HTML?
    we are learning HTML because it is part of building the frontend of a dapp.

  • What is an HTML tag?
    a tag is where content is enclosed.

  • What is the structure of an HTML tag?

content

  • What is an attribute?
    an attribute is added inside the opening tag

  • 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>
2 Likes
  1. Hyper text markup language. Markup language that defines structure if your content.

  2. It is code to structure a webpage and it’s content

  3. To be able to code the front-end side of your platform

  4. A tag is used to enclose different parts of content to make it appear in a certain way.

<tag> inner content </tag>
  1. attribute contains additional information that you do not want to appear in the actual content.

<html>
   <head>
  <meta ...=''''>
  <title> </title>
  </head>

  <body>
  <p>  </p>

 </body>
</html>
1 Like
  1. It is a markup language that defines the structure of your content.
  2. It’s used to structure a web page and its content
  3. Learn new code programming and in my i want to explore a new world
  4. HTML tag can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
  5. Opening tag , Closing tag, the content and the element
  6. Contain extra information about the element that you don’t want to appear in the actual content
  7. Basic Commands and tags to help browser recognize and interpret information. Below you will see basic code example
My test page My test image ```
1 Like
  1. It is the language that defines the structure of your content
  2. is the code that is used to structure a web page
  3. Because it’s the visual and interactive part of code
  4. It is the opening and closing of a element
  5. Opening/closing tags, the content and attributes
  6. It gives a element unique identifier that can be targeted
  7. HTML document was and is used for error checking of the HTML code and makes sure the code behaves correctly
1 Like
    1. HTML is a code that structure contents for web pages.
  1. Used to display web-based content.
  2. It is important so users have an access to Dapp or smart contracts created by developers.
  3. A pair of opening and closing angle brackets that define the name of elements such as heading (head), paragraph §, image (img), unordered list (ul), ordered list (ol), etc.
  4. An opening tag, content to be displayed on the browser, attributes, and a closing tag with forward slash.
  5. Attribute is a tag contains a piece of information to be hidden from the end user.
  6. The anatomy of an HTML document contains: !DOCTYPE html, head, title, body.
1 Like

1.What is HTML?
is the code that is used to structure a web page and its content.

  1. What is HTML used for?
    HTML is used to create electronic documents or web pages that are displayed on the web.

  2. Why are we learning HTML?
    Forms the basic knowledge needed to learn Programming Languages.

  3. What is an HTML tag?
    It displays how a web page should be displayed.

  4. What is the structure of an HTML tag?
    The opening and the closing tags in an HTML document

  5. What is an attribute?
    They contain extra information about the element that you don’t want to appear in the content.

  6. What is the anatomy of an HTML document?
    !DOCTYPE` declaration
    The main container
    The head section
    The body section

1 Like
  1. Hypertext Markup Language, one of the basic coding languages on the web.
  2. HTML is used to structure content on web pages.
  3. Knowledge of HTML is fundamental to developing any applications and websites.
  4. Tags manipulate the content to appear a certain way, or to be ordered in a certain way. For example paragraph tags specify the beginning and end of paragraphs.
  5. Tags are contained within the following symbols <> and usually contain the content within 2 identical tags
  6. Attributes provide more information on the element, but do not appear in the content itself.
1 Like
  1. What is HTML?

HTML: Acronym used for Hypertext Markup Language. It defines the structure of my webpage’s content.

  1. What is HTML used for?

It is a type of code used to give form to the structure of a webpage and its content. Some types of content are paragraph, bulleted points, images and data tables. We can give characteristics to the content with a series of elements. For example, italics, bold, bigger font, simple Paragraph, etc.

cenoobuef

  1. Why are we learning HTML?

Because it forms the base to understand programming of webpages and will help us to become better developers that can create apps to interact with the blockchain in a native way.

  1. What is an HTML tag?

A tag is what gives us information about the content that we want to give form. It allows us to specify the start of the element and the characteristic that we want to add to that element from the beginning to the end.

  1. What is the structure of an HTML tag?

It has Opening and closing angle brackets, with the name of the element between those. The difference between an opening tag and a closing tag is the latter includes a forward slash before the element name.

  1. What is an attribute?

An attribute is an additional information about the element that you don’t want to appear in the actual content. You have an attribute name and an attribute value. An attribute should have: 1) a space between the element and it. 2) attribute=” attribute-value” 3) “Quotation marks”.
E.g.:

  1. What is the anatomy of an HTML document?

It is what summarizes all the basic elements of HTML. AN HTML document is composed of the following elements:

Basic Element that defines what are we dealing with. Just learn it. Opener for all the information and structure. Definition of a section of the HTML document. Standard Section within the document. Contents of the document
1 Like
  1. HTML stands for Hyper Text Markup Language which describes the structure of Web pages using markup. Hypertext means that it is the text which contains link to other texts and Markup means that the web would be a web of documents was the early thought for the web since the web was primarily used for research documents.
  2. a) Every web page you see on the Internet is written using HTML code.
    b) HTML ensures the proper formatting of text and images so browser may display them as
    they are intended to look.
    c) HTML also provides a basic structure of the page.
  3. If you dont learn HTML, you have to either be content with what the editor gives you or find someone who knows HTML and pay them for their HTML coding services. The best thing to do is to learn HTML, so that you can create the perfect web page for yourself, without having to pay others for it.
  4. HTML tags are at the center of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.
  5. The beginning tag consists of the name whereas the ending tag consists of the same name preceded by a forward slash ("/"). For example, the HTML tag “” begins a paragraph, whereas “” ends that paragraph. This is a syntax in HTML.
  6. All HTML elements can have attributes, provide additional information about an element. Attributes are always specified in the start tag and usually come in name/value pairs like: name=“value”.
1 Like

What is HTML?

Hypertext Markup Language is a pool of command and rules about its application created to wrap and enclose information for webpages.

What is HTML used for?

To poste and oreder content on webpages.

What is an HTML tag?

Its a functional peace of language, each provides its command

What is the structure of an HTML tag?

opening “<”, tag name and closing “>”, if the tag is closing one we use “/” after opening “<”

What is an attribute?

Attribute is an additional information not intended to appear on the webpage.

What is the anatomy of an HTML document?

It consists of information layers placed and placing content from top to down.
Started with
then goes head tags and several amount of body parts which includes informational paragraphs and images.
it can alternate with heading tags.

If links or image description or other additional information required it goes with attributes after the equal sign. This part of attributes calls value.

If there are any mistakes or bungles I`ll be glad to know about it :slight_smile:

2 Likes
  1. What is HTML?

HTML is hyper text markup language

  1. What is HTML used for?

HTML is used to structure a webpage and its contents

  1. Why are we learning HTML?

So that we know how to structure a webpage and its contents

  1. What is an HTML tag?

A HTML tag is the way we structure the webpage with paragraphs, headings etc. that open and close the elements.

  1. What is the structure of an HTML tag?

Opening tag, contents, closing tag

  1. What is an attribute?

An attribute is extra information within the content that you don’t want visible

  1. What is the anatomy of an HTML document?

The opening tag
The closing tag
The content
The element

1 Like
  1. Hypertext Markup Language
  2. HTML is used to create web pages
  3. Learning HTML is a valuable skill for front end development
  4. The html tag lets the browser know what type of content is on the page
  5. Opening tags look like <tag> and closing tags look like </tag>. They mark the start and end of a section.
  6. Attributes provide additional information of the element and they can be used for targeted styling.
  7. The basic anatomy of an HTML document contains html tags, a header, and body each with opening and closing tags.
1 Like
  1. Its a markup language. It is a serious of elements that enable to structure the content of the web page.

  2. HTML stands for Hypertext Markup Language.

  3. For ab better understanding coding in general and ability to create a future web page by your own.

  4. Its a commad that implement an upcoming content.

  5. a part of the element that brings extra information but does not apear in the actual content.

7.`

`
  1. HTML stands for Hypertext Markup Language
  2. It is used to structure web pages and their content
  3. We are learning HTML in this course as every other code we’ll use later will need to be able to interact & be integrated into web pages, and HTML basic knowledge will be needed for this. Plus it is a good basis to start learning code, and will help learning other languages.
  4. A tag is piece of code enclosing some text to make it appear or act a certain way. For example, making text bold or italic.
  5. There is always an entry tag and a closing tag, for example: <html> and </html>
  6. An attribute is information that can be added to the opening tag to specify characteristics we don’t want to have visible in the content.
  7. A html document is composed of: a doctype, the html tags, a head element (used for SEO), the meta charset (defining the characters the content should use, better to use to avoid running into issues), a title and a body.
1 Like