HTML Reading Assignment

  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
  1. What is HTML? Hypertext Markup Language

  2. What is HTML used for? Creating webpages

  3. Why are we learning HTML? As a pathway to learning blockchain development.

  4. What is an HTML tag? Opening and closing angle brackets that contain elements.

  5. What is the structure of an HTML tag? Opening angle bracket, element, forward slash before closing angle bracket.

  6. What is an attribute? Extra info about the element you don’t want to appear.

  7. What is the anatomy of an HTML document? Doc type, HTML element, Head element, Meta, Title and Body.

1 Like
  • HTML stands for Hypertext Markup Language.

  • HTML is used for creating the structure and presenting the content of web pages on the internet.

  • We learn HTML to create and format web pages, understand the basics of web development, and build the foundation for learning other web technologies.

  • An HTML tag is a markup element that defines the structure and content of a web page. It consists of an opening tag, content, and a closing tag.

  • The structure of an HTML tag is Opening tag < tagname>, Closing tag: < /tagname>

  • An attribute provides additional information or modifies the behavior of an HTML element. It is placed within the opening tag of an HTML element.

  • The anatomy of an HTML document typically includes:

1.The doctype declaration: < !DOCTYPE html>
2.The opening and closing HTML tags: < html>< /html>
3. The head section: < head>< /head>
4. The body section: < body>< /body>

1 Like
  1. Hyper Text Markup Language.

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

  3. We need to understand HTML so we can code and create content.

  4. A tag is code for the opening and closing of specific content you wish to convey

  5. The structure of a tag consists of the name of the element, 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. The closing tag, contains forward slash before the element name. This states where the element ends.

  6. The opening tag, the closing tag, and the content together comprise the element.

  7. The anatomy of an HTML document is individual elements that are combined to form an entire HTML page.

Problems with visual studio code!

Can somebody please help me to reset visual studio code, as Even though I have deleted all folders and reinstall software, it’s giving me The inexplicable error codes for coding, which has worked previously and is in the introduction lecture

it Kept giving me Different error codes, E.g.: “The system cannot find the path specified”, "Command is invalid (Or something similar)

Problems with visual studio code!

Can somebody please help me to reset visual studio code, as Even though I have deleted all folders and reinstalle software, it’s giving me inexplicable error codes for coding, which has worked previously and is in the introduction lecture. I have sought support, but it just involves complicated coding, which doesn’t address the issue, which should be simple

  1. HTML is a markup language that defines the structure of your content.
  2. It is used to structure a web page and its content.
  3. Any web page will need HTML
  4. An HTML tag marks the beginning and end of a certain element and contains the name of the element and any other attributes
  5. Attributes contain extra information about the element

<!doctype html>
<html> <\html>