HTML Reading Assignment

1- HTML stands for Hyper Text Markup Language, that defines the structure of your content.

2- HTML used to structure a web page.

3- We learn HTML to create web pages, to move on to next step to learn smart contract

4- In HTML, tag is used to create element.

5- The structure of an HTML tag: < > and sometimes a closing tag </>.

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

7- That wraps up the basics of individual HTML elements, but they aren’t handy on their own

1 Like
  1. Hyper Text Markup Language
  2. to define the structure of the content
  3. HTML is the underlying language that gives structure to everything we do on the internet.
  4. a tag is how the browser identifies the type and content and the format of the content.
  5. opening tag, attribute and elements, closing tag. example

    my cat is very grumpy

  6. Attributes contain extra information about the element that does not appear in the content.
My test page My test image ```
1 Like
  1. Hyper Text Markup Language
  2. It is a code that is used to structure a web page and its content.
  3. It is the interface to the outside world.
  4. It is a set of elements used to enclose and define website structure.
  5. opening tag,content, closing tag
  6. Attribute is a tag property which contain some extra information about the element.
  7. html
    head
    meta
    title
    head
    body
    img
    html
2 Likes
  1. HTML (Hypertext Markup Language) is a standard markup language for creating web pages and web applications. It is the most basic building block for creating web pages.

  2. HTML is used to define the content and structure of a web page. It uses a system of tags and attributes to create and format the content of a page, including headings, paragraphs, lists, links, and more.

  3. We learn HTML because it is the foundation of the web. By learning HTML, we can create and modify web pages to share information and ideas with others.

  4. An HTML tag is a code snippet enclosed in angle brackets (e.g.,

    ,

    , ). The tag specifies the type of content it encloses. For example, the

    tag denotes a paragraph, the

    tag denotes a first-level heading, and the tag denotes a hyperlink.

  5. The structure of an HTML tag consists of the tag name, followed by optional attributes, and ending with a closing angle bracket. For example, in the tag

    , “p” is the tag name, “class” is an attribute, and “intro” is the attribute value.

  6. An attribute is a modifier of an HTML tag. It provides additional information about the element it is attached to. For example, the “href” attribute specifies the destination of a hyperlink, and the “class” attribute specifies a class name for an element, which can be used to apply styles.

  7. The anatomy of an HTML document consists of the following parts:

  1. The DOCTYPE declaration, which specifies the version of HTML used in the document
  2. The HTML element, which is the root element of the document
  3. The head element, which contains metadata about the document
  4. The body element, which contains the content of the document

Within the body element, you can use various HTML tags to define the content and structure of the page.

1 Like
  1. Hyper text markup language
  2. Define content of the website
  3. To create a website
  4. a mandatory tag that tells it’s an html doc
  5. ...ex the create a paragraph

    type something here

  6. extra information about the element that you don’t want to appear in the actual content, ex style of text
  7. Doctype, html tag, head & body
1 Like
  1. Is Hypertext Markup Language
    2, is used for programming web content pages
  2. Needed to create structured web pages (Paragraphs, links, lists, etc.)
  3. Opening and closing tags create certain look of the displayed titles, paragraphs. lists, etc.
  4. Opening Tag - “Content” - Closing Tag - This structure is called an element.
  5. Attributes contain extra information about an element, that you don’t want to be displayed on the web page.
  6. Determine the document type - , start with , then include the attributes, end with , then in the body of the page include the attributes, close the and end with
1 Like
  1. What is HTML?
    It is the code that is used to structure a web page and its content.

2.What is HTML used for?
Used for enclosing, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

3.Why are we learning HTML?
To understand how our webiste content is made to be visible for the others and other “computers” interacting with it.

4.What is an HTML tag?
HTML tags states where the element starts or where the effect starts for the content that is within opening and closing tag.

5.What is the structure of an HTML tag?
Structure of the HTML tag is as following: starts with opening tag that consist of a name of the element wrapped in opening and closing angle brackets(

). Closing tag is almost the same as the opening tag except it includes a forward slash after the opening angle bracket and before the name of the element ie. (

)

6.What is an attribute?
Attributes contain extra information about the element. It has the attribure name and attribute value.

7.What is the anatomy of an HTML document?
Here is an example od the anatomy of HTML document:

<!DOCTYPE html>
  <head>
    <title>....</title>
  </head>
  <body>
  </body>
</html>
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? It is the code used to structure a web page and content
  3. Why are we learning HTML? HTML coding allows us to create a website which humans and robots can read.
  4. What is an HTML tag? It is the opening or ending of an element
  5. What is the structure of an HTML tag? Opening tag, Content, Closing tag = element
  6. What is an attribute? An attribute is extra information the element which the editor would like to add which does not show up in the content
  7. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html lang="en-US">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>My test page</title>
  </head>
  <body>
    <img src="images/firefox-icon.png" alt="My test image" />
  </body>
</html>

What is HTML?
HTML is the language developers use to instruct a webpage’s appearance and functionality

What is HTML used for?
Front end webpage development

Why are we learning HTML?
To interact with the outside world via webpages/internet

What is an HTML tag?
The characters used to start and close instructions

What is the structure of an HTML tag?
opening something something something

What is an attribute?
A set of instructions on content within the webpage that you don’t want to appear on the webpage

What is the anatomy of an HTML document?
Doctype, html, head, meta char, meta name, title, body

  1. What is HTML?
    HTML is language structure thats use for bilding webpages
  2. What is HTML used for?
    front end
  3. Why are we learning HTML?
    because its all connected with internet that are we use
  4. What is an HTML tag?
    is for start and close words
  5. What is the structure of an HTML tag?
    opening <> closing<>
  6. What is an attribute?
    style
  7. What is the anatomy of an HTML document?
<!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>Hello, Moralis!</title>
</head>
<body>
    <h1>Hello, Moralis!</h1>
    <p>this is an update.</p>
</body>
</html>
1 Like
  1. HTML is a code language which is used to make web pages.

  2. We use it to structure web pages.

3.We will need HTML to make web pages.

4.Tag is used to create an element.

It starts with p in angle brackets (name of starting tag, in this case it’s the paragraph but could be different), and ending tag is /p in angle brackets.

6.Attribute contains extra info about the element, which does not appear in the actual content of the page.

  1. -Tags, they start and finish the elements
    -Head - includes the attributes of the page, It’s not visible to the viewers
    • Body - the content of the HTML page that is visible to the viewers
1 Like
  1. Hypertext Markup Language (HTML) is a code
  2. used to structure a web page’s content is different ways, appearing as a paragraph, bulleted points, down to smaller details such as italicized words with bigger or smaller fonts.
  3. Learning HTML is necessary to understand, not only how web pages and decentralized exchanges (DEXs) are published, but how we interface with the crypto space.
  4. An HTML tag is the beginning of an element which denotes the way the element is displayed, like “p” for paragraph.
  5. The structure of the HTML tag is the letter of the characteristic surrounded by greater and lesser than symbols.
  6. An attribute is a subset of the element. It is the part-in-parcel of the elemental whole. It is the part of the element changes the appearance of the content without being seen as content, itself.
  7. Various combinations of many HTML elements form an HTML document. There must be a header and a body to this document, both owning their own tags to open and close their respective features.
1 Like

*1. What is HTML? *
HTML is HyperTextMarkupLanguage. This defines the structure of your internet document.

2. What is HTML used for?
HTML allows the website to be read by humans and indexing bots.

3. Why are we learning HTML?
HTML appears to be a basic building block for the creation / transfer of information on the internet.

4. What is an HTML tag?
Tags - opening and closing begin and end the element.

5. What is the structure of an HTML tag?
The structure of the opening tag is the name of the element wrapped in opening and closing angle brackets. The closing tag has the same structure as the opening tag except with a forward slash before the closing angle bracket. Between opening and closing tags, there may be attributes and other nested elements.

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>
<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>Second HTML page</title>
</head>
<body>
<p>Basic anatomy of Html document</p>
</body>
</html>

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

2 HTML is a markup language that help us define the structure of our content

3 HTML is the basic tool we need to create the structure of our project front end

4 an HTML tag is where an elements begin or ends

5 we have an opening tag with the name of the element wrapped in opening and closing angle brackets. This states where the element begins. then we have the closing tag that includes a forward slash before the element name. This states where the element ends.

6 Attributes contain extra information about the element, they have a name and a value

7

<!DOCTYPE html>  // just needed to make sure your document behaves correctly
<html lang="en-US"> // This element wraps all the content on the entire page
  <head>  //container for all the stuff you want to include on the HTML page that isn't the content
    <meta charset="utf-8" />  // This element sets the character set your document should use
    <meta name="viewport" content="width=device-width" />  // This viewport element ensures the page renders at the width of viewport
    <title>My test page</title>  // This sets the title of your page
  </head>
  <body>  // This contains all the content that you want to show
    <img src="images/firefox-icon.png" alt="My test image" />
  </body>
</html>

HTML is Hypertext Markup Language. HTML is used for creating the contents of the webpage. We want to build a Dex so we are using HTML.

Content</>. An attribute is a character that is assigned to them. <input class=">.

  1. Hypertext markup language.

  2. It is used for WEB development. It defines the structure of the website’s content.

  3. We need to learn it to create websites.

  4. A tag is a part of HTML used to indicate the beginning and end of an HTML element.

doctype

1 Like

HTML

Introduction Assignment

  1. What is HTML? Why learning HTML?

HTML stands for HyperText Markup Language, which is a markup language used for creating web pages and web applications. It is the standard language for creating web pages and provides a framework for structuring content and adding multimedia elements such as images, videos, and audio files.

  1. What is HTML used for?

HTML is used for creating web pages and web applications. It is the foundation of the World Wide Web and provides a standard structure for organizing and presenting content on the Internet. By learning HTML, one can create professional-looking web pages and develop a better understanding of how websites work.

  1. What is an HTML tag? What is the structure of an HTML tag?

An HTML tag is a code element used to define and format content on a web page. It consists of an opening tag, content, and a closing tag. The opening tag is enclosed in angle brackets (< >) and identifies the type of tag, while the closing tag is also enclosed in angle brackets but includes a forward slash (/) before the tag name to indicate the end of the content.

<p>Questo è un esempio di paragrafo in HTML</p>
  1. What is an attribute?

An attribute is a characteristic of an HTML element that provides additional information about the element. It is specified within the opening tag and consists of a name and a value, separated by an equal sign (=). Attributes are used to modify the behavior or appearance of an element, such as setting its width or height or adding a link to another web page.

<p style="color:red;">Questo testo è rosso</p>
  1. What is the anatomy of an HTML document?

The anatomy of an HTML document includes several elements, such as the DOCTYPE declaration, the HTML element, the head element, and the body element. The DOCTYPE declaration specifies the version of HTML used in the document, while the HTML element encloses the entire document and identifies it as an HTML document. The head element contains meta information about the document, such as the title, while the body element contains the content that is displayed on the web page. Other elements, such as headings, paragraphs, images, and links, can also be included within the body element.

1 Like
  1. 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.

  2. HTML ( H yper T ext M arkup L anguage) is the code that is used to structure a web page and its content.

  3. It is incredibly important to display content so others can consume it.

  4. An HTML tag is a piece of markup language used to indicate the beginning and end of an HTML element in an HTML document.

    1. The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets . This states where the element begins or starts to take effect — in this case where the paragraph begins.
  1. The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends — in this case where the paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
  2. The content: This is the content of the element, which in this case, is just text.
  3. The element: The opening tag, the closing tag, and the content together comprise the element.

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

  1. How individual elements are combined to form an entire HTML page. * <!DOCTYPE html>doctype. It is a required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However, these days, they don’t do much and are basically just needed to make sure your document behaves correctly. That’s all you need to know for now.
  • <html></html> — the <html> element. This element wraps all the content on the entire page and is sometimes known as the root element. It also includes the lang attribute, setting the primary language of the document.
  • <head></head> — the <head> element. This element acts as a container for all the stuff you want to include on the HTML page that isn’t the content you are showing to your page’s viewers. This includes things like keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.
  • <meta charset="utf-8"> — This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages. Essentially, it can now handle any textual content you might put on it. There is no reason not to set this, and it can help avoid some problems later on.
  • <meta name="viewport" content="width=device-width"> — This viewport element ensures the page renders at the width of viewport, preventing mobile browsers from rendering pages wider than the viewport and then shrinking them down.
  • <title></title> — the <title> element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.
  • <body></body> — the <body> element. This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks, or whatever else.
2 Likes
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? used to structure a web page and its content. Content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables
  3. Why are we learning HTML? Web development
  4. What is an HTML tag? 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?

    Web3 is the next generation of the internet

    content text and element coming to together of that content
  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?
My test page My test image
1 Like
  1. What is HTML?
    Hyper Text markup Language

  2. What is HTML used for?
    Creating webpages

  3. Why are we learning HTML?
    Prerequisite for learning JavaScript

  4. What is an HTML tag?
    A tag is used for creating an element. A tag defines when an element begins and ends.

  5. What is the structure of an HTML tag?
    Consists of the name of the element wrapped in opening and closing angle brackets.

  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, elements, images.

1 Like