Reading Assignment – HTML

What is HTML?

What is HTML used for?
Hypertext Markup Language: a language made for creating web pages. The language computers use to communicate is HTML. A text which has a link within it is a hypertext, if you click it it will take you elsewhere.

HTML is used for creating web pages and web applications. The programmer through HTML can add graphics, videos and sound to the web pages.

Why are we learning HTML?
HTML is the basic language and if anyone is thinking of becoming more serious about web development or blockchain developer, knowing HTML makes it easier for you to learn other programming languages. It’s beneficial to learn for developers.

What is an HTML tag?
tags < > are used so that the browser can distinguish the tags from ordinary text. Tags commands the browser what to do.

What is the structure of an HTML tag?
Opening tag, content, closing tag.

What is an attribute?
Tags can be used in different ways. A picture may be placed in different places on a page and its size may vary. In order for the browser to know where to place the image and for it to know which image to place, we use attributes.

What is the anatomy of an HTML document?

.

Doctype: informs the browser which version of HTML we are using

html tags: says everything in between these two tags is our html page

head tag: contains data about data. Information about the page. important information.

title tag:: defines the title of the web page. Displayed on the top of the web browser.

body tag*: The actual content of the document. Text, images etc.

1 Like
  1. What is HTML?
    Hyper Text Markup Language
  2. What is HTML used for?
    It’s code used to structure a web page an its contents. It consists of a series of elements, which are used to enclose, wrap different parts of the content, to make appear a certain way or act a certain way.
  3. Why are we learning HTML?
    When creating websites you need HTML to define content of the website, not only for other humans to read, but for other robots. (e.g., Google Index.)
  4. What is an HTML tag?
    It’s the name of an element. To create the element you have to have opening and closing tags, which enclose content. Enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, make font bigger or smaller, etc.
  5. What is the structure of an HTML tag?
    Less than and greater than symbols with the name of the element. For opening and for closing it’s the same except, closing includes a forward slash before the name. Between the opening and closing tags you’d have the content.
  6. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content. It should always have a space between it and the element name. The name followed by and equal sign. The attribute value wrapped by opening and closing quotation marks.
  7. What is the anatomy of an HTML document?
    The anatomy of an HTML document consists of the following:
    doctype
    html element
    head element
    character set
    title element
    body element
2 Likes
  1. What is HTML?
    A programming language serving as a tool to structure web pages and theirs content.
  2. What is HTML used for?
    HTML is used to structure and define displayed content that appear and act as demanded
  3. Why are we learning HTML?
    To keep internet alive and accessible for every one, for casual user, contributors and creators. Because working together on easy to use and open platform for information exchange is essential to our personal growth and whole society future.
  4. What is an HTML tag?
    tabs are key words which defines that how web browser will format and display the content written inside of it.
  5. What is the structure of an HTML tag?
    depending on use case
    Opening tag - consist name of element wrapped in opening and closing angle bracket.
    Closing tag - use same principle except include of forward slash before element name.
  6. What is an attribute?
    contains all additional information that that we don’t want to display in actual content.
  7. What is the anatomy of an HTML document?
    DOCTYPE
    HTML element
    head element
    character set
    title
    body
2 Likes
  1. HTML is Hypertext Markup language
  2. HTML is used to structure a web page and its content
  3. We learn HTML in order to create a web page according to desired specifics.
  4. An HTML tag is what indicates the beginning and end of an html element in a html document.
  5. The structure of a tag consists of an opening, closing, and content.
  6. An attribute is basically extra information about an element that you would not necessarily want to appear in the content.
  7. Opening tag, closing tag, and content nested between the tags.
2 Likes
  1. What is HTML?
    Hyper Text Markup Language
  2. What is HTML used for?
    Designing basic Webistes.
  3. Why are we learning HTML?
    HTML is where website creation started. We need to learn HTML before we can move on to more advanced things such as Java/CSS
  4. What is an HTML tag?
    Is what you wrap you text in. For example (“Enter Text”)
  5. What is the structure of an HTML tag?
    Most tags need an opener and a closer. However some like <img src= dont require a close tag. The tags allow us to format the text in which ever way we want.
  6. What is an attribute?
    An attribute is the “src” I used from previous question. Essentially I am saying that I want to put and im age in here here is the source. <img src="https:// …etc
  7. What is the anatomy of an HTML document?
    The anatomy is simple you have; head, body ,paragraph ,and title are a few of the tags you can use to design your website.
2 Likes
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    HTML is a markup language that is used to structure web pages. It defines the structure of the web pages content.

  3. Why are we learning HTML?
    We are learning HTML so we can write web pages

  4. What is an HTML tag?
    An HTML tag is syntax that is use for creating an element. The HTML element is the name used in angle brackets < > such as <body> for the body of a web site.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag follow in order of:

  • An Opening tag, contains the name of the element, wrapped in opening and closing angle brackets. Stating where the element begins or starts to take effect.
  • The Closing Tag, is the similar to the opening tag except that it includes a forward slash before the element name. This stats where the element ends.
  • The Content, this content of the element is placed here i.e; text
  1. What is an attribute?
    An attribute contains extra information about the element that you don’t want to appear in the actual content.
    It should always have the following:
    1. A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
    1. The attribute name followed by an equal sign.
    1. The attribute value wrapped by opening and closing quotation marks.
  1. What is the anatomy of an HTML document?
    An HTML Document is made of several elements that define its base structure that then can be expanded upon.
  • <!DOCTYPE html> - DOCTYPE. in simplicity defines the document as a html.
  • <html></html> - the <HTML> Element. This is the container that for all information you want to include in the HTL page that is not the content you are showing to vevwers of the web page.
  • <meta charset=“utf-8”> - Element that sets the CHARACTER SET your document should use. UTF-8 includes most characters from the vast majority of written languages.
  • <title></title> - the <TITLE> Element sets the title of your page that reflex in text on a web browser window tab.
  • <body></body> the <BODY> Element contain all the content that is seen by a web user. This could include text, images, video, audio, games and so on.
2 Likes
  1. What is HTML?
  • HTML is a mark-up language that defines the structure of the content.
  1. What is HTML used for?
  • HTML is a code that is used to structure a webpage and its content.
  1. Why are we learning HTML?
  • a basic coding language to build the foundations of coding
  1. What is an HTML tag?
  • Tags take place where the element start and begin.
  1. What is the structure of an HTML tag?
  • If we were making a paragraph for example. The structure would look like so:

Hi, my name is Pav.

6. What is an attribute? - An attribute is extra information about the content that you don't want to appear in the actual content. 7. What is the anatomy of an HTML document? - Consists of : doctype, the html element, the head element, element, the title element and the body element.
2 Likes
  1. What is HTML? HTML is a markup language that defines the structure of your content.

  2. What is HTML used for? to enclose, 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 structure a web page and its content

  4. What is an HTML tag? Used to 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?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. An attribute should always have the following:

    • A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
    • The attribute name followed by an equal sign.
    • The attribute value wrapped by opening and closing quotation marks.
  7. What is the anatomy of an HTML document? 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.

An attribute should always have the following:

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.

The content: This is the content of the element, which in this case, is just text.

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

2 Likes
  1. What is HTML?
    It is hypertext markup language, it defines a structure of the content.
  2. What is HTML used for?
    It is used for structuring a web page and its content. It consists of different elements that make the web page appear and act in a certain way.
  3. Why are we learning HTML?
    So we can develop web pages and structure them as we wish.
  4. What is an HTML tag?
    Tags are used for adding hyperlinks to words or images, they can also give certain features to different elements (bigger, smaller fonts, italicized words…)
  5. What is the structure of an HTML tag?
    We know opening and closing tag, in between is content and the whole thing is named the element. Opening tag consists of the name of the element that is wraped in opening and closing angle brackets. Closing tag is the same, the only difference is it has forward slash before the name of the element.
  6. What is an attribute?
    Attributes contain of the extra information that we don’t want to appear in the actual content. They define additional properties of the element (for example width and hight of an image). Attribute has a name and an attribute value.
    Between the name of the element and an attribute has to be space, then we add name of the attribute, equals sign (=) and value of the attribute that has to be in quotation marks (’‘something’’)
  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>
2 Likes
  1. HTML stands for Hyper Text Markup Language. It is a web developing code.

  2. HTML is used to structure a webpage and define its content.

  3. Learning HTML gives us a foundation for understanding and using coding languages.

  4. An HTML tag is a command that starts and ends an element and effectively encloses the content within and generally applies a characteristic to it.

  5. The structure of an opening tag is the name of the element, wrapped in angled brackets. A closing element is structured the same, except it contains a forward slash after the first bracket.

  6. An attribute is a line of code that is inserted in the opening tag, which contains extra information about the content but will be displayed as part of the working website.

  7. The anatomy of an HTML Document consists of individual elements that combine to form an entire page. The basic format would generally contain some of the following element types:

     <!DOCTYPE html>
     <html></html>
     <head></head>
     <meta charset="utf-8">
     <title></title>
     <body></body>
2 Likes
  1. a markup language that defines the structure of your content
  2. it is used to structure a web page and its content
  3. it teaches us how to start coding so we can use it for crypto in the future
  4. it is used to state when something begins and when it ends
  5. it consists of an opening tag, a closing tag, and the content
  6. it is the extra inormation about an element that will not appear in the content
  7. html, head, and body tags
2 Likes
  1. What is HTML?
    HTML- Hyper Text Markup Language is the code that is used to structure a web page and
    its content.
  2. What is HTML used for?
    A Hyper Text is used to reference other pieces of text while the markup language is a
    series of markings that tell the web servers the style and structure of the document.
  3. Why are we learning HTML?
    We are learning HTML to be able to structure content on a website.
  4. What is an HTML tag?
    An HTML tag is the container for all other HTML elements(except <!DOCTYPE>
  5. What is the structure of an HTML tag?
    opening tag closing tag
    < element > </ element >
  6. What is an attribute?
    An HTML attribute is a special word which provides additional information about the
    element or it’s attributes are the modifiers of the HTML element.
  7. What is the anatomy of an HTML document?
    Doctype, html root element, head element, meta charset UTF-8 element, title element,
    body element.
2 Likes
  1. What is HTML?
    Hyper Text Markup Language, used to build web pages
  2. What is HTML used for?
    Its code that is used to build the structure of a web page. It can define style and look of website.
  3. Why are we learning HTML?
    We need to know the basics so we can understand how are structures of websites built.
  4. What is an HTML tag?
    It wraps all the content of the page, sometimes it works as root element
  5. What is the structure of an HTML tag?
    There is always an opening and closing tag and also the content inside them
  6. What is an attribute?
    It can define some extra attributes of the HTML element
  7. What is the anatomy of an HTML document?
    Doctype, html root element, head element, meta charset, title and body element
2 Likes
  1. HTML = hypertext markup language
  2. It’s used to create the structure of the website, such as headings, paragraphs, tables, images etc.
  3. HTML is the basis of every website, and relatively simple to learn
  4. HTML tag is an element in the code that formats the text, such as heading (big text), paragraphs… It encircles the content - opening and closing tag.
  5. As mentioned, we have opening tag, the content, and closing tag.
  6. Attribute is like an additional info within the tag, which changes the content (colour, italics…).
  7. It’s the code with the head and body, and generally follows this structure:
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test Moralis page</title>
  </head>
  <body>
    <img src="https://academy.moralis.io/wp-content/uploads/2021/12/moralis-1.png" alt="My test image">
  </body>
</html>

Edit: Whoops, just learnt that sourcing images like this might be an intellectual theft! :slight_smile:

3 Likes
  1. HTML, or HyperText Markup Language, is a markup language that helps to structure content on a webpage.
  2. It is used to display content like text, images, and links on a webpage.
  3. Learning HTML will help us get an understanding on how to construct the content on our Web3 webpages.
  4. An HTML tag gives the content within the opening and closing tags specific attributes when content is displayed on the page.
  5. There is an opening tag and a closing tag. The difference between both is that the opening tag is located before the content and the closing tag is located after it with a “/”. For example, <,p>Hello, World!</,p> (Disregard the commas)
  6. An attribute is a way to change how your content is being displayed without the actual attribute showing.
  7. The anatomy of an HTML document includes a doctype, an HTML element, a head element, a meta charset element, a title element, and a body element.
2 Likes
  1. a markup language that defines the webpage

  2. structure the webpage and its content

  3. code the webpage we desire to desiplay

  4. define the element and attributes

  5. <opening tag attribute=""> content </closing tag>

  6. contains the extra information as style for the element content

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>page title</title>
  </head>
  <body>
    <p>page text</p>
  </body>
</html>
2 Likes
  1. HTML stands for Hyper Text Markeup Language.

  2. That’s the code used to structure a web page and its content.

  3. To be able to translate our ideas of web page building in a structured standard language that any browser can read and index.

  4. tags are used to enclose and element and give instruction to the computer what to do.

  5. Theres a tag

  6. Attribute contain extra information about the content that you dont want to appear in your web page.

    • doctype
    • the html element that wraps up the whole page
    • the head element that contain all the things you want for your wab page but that are NOT displayed for the viewer. (key words, CSS, charset, title styling blabla)
    • the body that contain all the content.
3 Likes
  1. What is HTML?
    HTML is a markup language that defines the structure of your content.

  2. What is HTML used for?
    HTML is used to structure your web page and its content.

  3. Why are we learning HTML?
    HTML is the basic programming of web development and design.

  4. What is an HTML tag?
    An HTML tag is used for creating an element.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag is: opening tag, element name then closing tag

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

  7. What is the anatomy of an HTML document?
    Doctype
    Html element
    Head element
    Meta Charset
    Title element
    Body element

3 Likes
  1. What is HTML?
    It’s a code used to structure web page and its content.
  2. What is HTML used for?
    HTML is used for coding the web pages and structuring the content on the same.
  3. Why are we learning HTML?
    HTML is basics for programming.
  4. What is an HTML tag?
    HTML tag is used to create elements.
  5. What is the structure of an HTML tag?
    opening and closing
  6. What is an attribute?
    an extra information about the element, that is not visible in the content
  7. What is the anatomy of an HTML document?
    doctype
    html element
    head element
    meta carset utf8
    tittle
    body
2 Likes
  1. What is HTML?
    Hyper Text Markup Language is a code to use to structure a webpage and its content. Consists of elements which appear or act certain way.

  2. What is HTML used for?
    It is a code to structure webpage.

  3. Why are we learning HTML?
    It is basic programming language for web development, basically to become developer, we need to start with Java and basic HTML to understand fundamentals and how does it work. If we understand how this works we can go deep into other programming languages.

  4. What is an HTML tag?
    Tag in HTML is used for creating elements. We have opening and closing tag. It consists of the name of the element and brackets <>.

  5. What is the structure of an HTML tag?
    Let’s say: paragraph would be < p > - opening tag (states where the element begins) and < /p > - closing tag (states where the element ends). Closing tag has slash character.

  6. What is an attribute?
    Attribute contain extra information, that you don’t want to see in actual content.

  7. What is the anatomy of an HTML document?
    In anatomy we have DOCTYPE (this is required), HTML element (wrap up all the content - called also as root element), head (this is stuff you want to include in your HTML but it isn’t content, let’s say keywords), title (appears in a browser, you can bookmark it) and body (all content you want to show to your audience, to your users).

2 Likes