HTML Reading Assignment

Thank you for notifying it!, we will fix it ASAP :nerd_face:

Carlos Z.

1 Like

HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content.
It is not a programming language; it 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. 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.

It is used to structure a web page and its content.

Because we need to have enough tools to make a small contract and deploy it, but who is going to trust in a small contract which doesn’t have a web page where you can find all the info from the project? So we need to be able to create our website and show our projects.

In HTML, a tag is used for creating an element.

The name of an HTML element is the name used in angle brackets such as <p> for paragraph. Note that the end tag’s name is preceded by a slash character, </p> , and that in empty elements, the end tag is neither required nor allowed. If attributes are not mentioned, default values are used in each case.

An attribute extends an element, changing its behavior or providing metadata.

Anatomy of an HTML looks like the following…

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>   </title>
  </head>
  <body>
     there is where you put all your content
  </body>
</html>
1 Like
  1. HTML is a HyperText Markup Language

  2. HTML is used to modify contents of the page using a series of different elements.

  3. We are learning HTML because it is the base language of websites.

  4. An HTML tags creates an element

  5. …

  6. Attributes are extra info for the element

1 Like
  1. “hypertext markup language” a markup language that defines the structure of your content.
  2. HTML is used to enclose or wrap different parts of content to make it act or appear a certain way.
  3. We are learning HTML to understand coding languages and how to write structured code and eventually develop our own.
    4.An HTML tag can be an opening tag, this states where the element begins or starts to take effect
    and also 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.
  4. The opening tag, closing tag, the content, the element.
  5. 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.
  1. example : !DOCTYPE html
    html
    head
    meta charset=“utf-8”
    title></title
    /head
    body
    All your content
    /body
    /html
    can’t add brackets or hides my posts
1 Like

1.HTML is Hyper Text MarkUp Language
2.HTML is used to link webpages together and for formatting placing of text and media elements on a webpage.

  1. We are learning HTML because we need to develop a “Front End” or user interface to our programs.
  2. A HTML tag <> </> is used to tell the browser how to display the content and the sort of content
  3. structure is <tag name attribute > Content </tag name>
  4. an attribute is extra information about the tag

< html>
< head>
< title> test < /title>
< /head>
< body>

< /body>

1 Like

Thanks! Really appreciate it! I’m loving it so far, what have I been doing my whole life? lol

1 Like
  1. What is HTML?
    -HTML is HyperText Markup Language. It provides the means to create formatted content on a web page. HTML is static my nature and does not provide for interactivity.
  2. What is HTML used for?
    -HTML is used to create and format content on a webpage. This content can include text, images, hyperlinks, etc.
  3. Why are we learning HTML?
    -HTML is used extensively in the design of web pages and web page content. It is considered as WEB 1.0 (static web page content only).
  4. What is an HTML tag?
    -An HTML tag is the mean by which content on a web page is formatted and controlled. For example, there are tags that describe the contents of the web page like metadata and the character set that will be used. A tag can introduce a heading or a paragraph of text of some kind of list, etc.
  5. What is the structure of an HTML tag?
    -A typical HTML tag looks like this:

    This is my first webpage.

    where

    introduces a heading with a large font (size 1). The heading is terminated using the forward slash followed by the tag (

    ).
  6. What is an attribute?
    -An attribute is an additional piece of information that may be provided for certain tags. For example, the “href” attribute of the hyperlink tag () gives the actual URL that you want to associate with a piece of text. Another example is the “src” attribute of the tag that points to an image file on your computer.
  7. What is the anatomy of an HTML document?
    -A typical anatomy will include the document type at the top of the document: , followed by a section that contains metadata and links to .css style files. This is followed by the section of the document which contains the primary content that you want displayed on the web page. The of the HTML document can contain any number of subsections, lists, images, hyperlinks, etc.
1 Like

What is html?

A markup language, defines the structure of the content.

What is html used for?

Defining the structure of the content.

Why are we learning html?

Do be able to make the website.

What is an html tag?

A tag consists the name of the element.

What is the structure of an html tag?

It has an opening tag and a closing tag with content in between.

What is an attribute?

Extra information about the element that you don’t want to appear in the content.

What is the anatomy of an html document?

Doctype

Html

Head

Meta

Title

Body

Html/

1 Like
  1. Hypertext Mark Up Language
    2 It s use to insert the text content in a website
  2. To know how to build a website and how insert text or content in it
  3. It s using to organize the text and content There are 2 kind of tag open tag and close tag. they frame the content
    5.

    open tage or

    close tag
    6 It can contains the extra information about the content we dont want to show and we can use the attribut name with CSS

1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language

  1. What is HTML used for?

It is used to structure a web page and its content.

  1. Why are we learning HTML?

It is a simple-to-learn language that shall be used to create web pages that friendly allows users to interact with blockchains smart contracts.

  1. What is an HTML tag?

It’s a structure that defines the beginning and the ending of an HTML element.

  1. What is the structure of an HTML tag?

This consists of the name of the element wrapped in opening and closing angle brackets, like <p> or </p> for example.

  1. What is an attribute?

An attibute is extra information about a given element that will not appear in the readable page. it comes after the element name and consists of its name and value:

<p attribname=“attribvalue”>Attribute structure</p>

  1. What is the anatomy of an HTML document?

An HTML document is a group of coherently nested HTML elements that that defines the aspect of the information displayed in the web page. Typical minimum structure is similar to:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Page Tab Title</title>
  </head>
  <body>
    <p>Text in the document</p>
    <img src="source/folder/image-file.png" alt="Alternative image description">
  </body>
</html>
1 Like

html is code used to structure a web page and its content

html is used to make data do things you want it to do. (display text, display an image, link to somewhere else, italicize text, change the font size, etc)

we are learning HTML because that is how our programming language interacts with the browser. without html our program would not function on the internet. without knowing how to develop a website no one would be able to interact with a program i write. html will create an interface for people to interact with the blockchain through a website.

an html tag encloses content. it is the beginning and end of an element.

opening tag closing tag
</element name>

an attribute can modify the content of an element in a number of ways.

<!doctype html> links to a set of rules the page must follow

wraps the whole page this is information that is not displayed on the page itself. it contains keywords for seo, a description to display in a search engine result, and more is the character set. utf-8 contains most every written language character in existence. website title which is displayed in the tab of the browser. it is also what is displayed when you bookmark a page this is the content that is displayed on the webpage.
1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language

  1. What is HTML used for?

It is a programming language used to describe the structure of websites.

  1. Why are we learning HTML?

Because it is the foundation for that all websites are built upon - we can make websites dynamic with javascript, but we’ll still use html to describe their structure.

  1. What is an HTML tag?
    A webpage consists of various HTML elements; a tag tells us what kind of element we are dealing with and where the boundaries of that element lie. An example of content wrapped in an element of a tag would be:

    This is a section of a webpage<\div> .
  2. What is the structure of an HTML tag?
    A tag consists of the name of the element wrapped in angle brackets, e.g . Tags mostly come in pairs - there is an opening tag and a closing tag, which surround some content, e.g.

  3. This is an item in a list
  4. . A backslash before the name of the element signifies that it is a closing tag.
  5. What is an attribute?

Attributes contain extra information about the element that doesn’t directly appear in the actual content. For example, attributes are used to identify elements, e.g. you can assign a class to some elements and then change the style of all of the elements in that class using CSS or manipulate the elements based on user input using Javascript.

  1. What is the anatomy of an HTML document?

At the bare minimum, an HTML document should consist of the following elements:

- Defines the document as being HTML. - Wraps the entire document. - Header, contains information that is not displayed to the user. - Defines the character set used by the document as utf-8. - Sets the title of the webpage, this is what you see in on the top bar when you are browsing. - Contains the contents of the webpage that are displayed to the user.
1 Like
  1. Hypertext Markup Language
  2. It’s the code or “markup language” used for building basic static websites and their content.
  3. Because it’s the most basic level of website building that everything else is built around
  4. It’s used for various things, it can make the font bold or italic, link you to another page, define how content appears on the page, etc
  5. It contains information that you need to be there, but don’t want to be visible to the end user viewing the page

DOCTYPE html = specifies that it’s HTML
head = indicating the info about the page to function
charset = specifies the character set used
title: The title of the page
body = all the content, text and images

1 Like
  1. What is HTML?
    HTML (HyperText Markup Language) is the code that is used to structure a webpage and its
    content.
  2. What is HTML used for?
    Could be used for structuring content within a set of paragraphs, alist of bulleted points or using
    images.
  3. Why are we learning HTML?
    We need to master this in order to have an understanding of the basics, it will be easier to learn
    javascript, C++, etc…
  4. What is an HTML tag?
    Consists of the name of the element wrapped in opening and closing brackets, this states where the element begins. With the closing tag it includes a forward slash before the element name. This
    states where the element ends.
  5. What is the structure of an HTML tag?
    An opening tag, a closing tag and the content together comprize the element.What is an attribute?
  6. What is an attribute?
    Contains extra information about the elementthat you don’t want to appear in the actual content.
    consists of an attribute name and attribute value an attribute 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
    2. The attribute name followed by an equal sign .
    3. The attribute value wrapped by opening and closing quotation marks.
  7. What is the anatomy of an HTML document?
    All the individual elements combined to form an entire HTML page.
1 Like

1/ It is a language that allows modeling the information that we want to show on the page

2/ It is used to distribute the information of a web page at will and how you want to present it

3/ because it is the entrance face to our applications in the BC, although the BC is the back kitchen and where the results are generated, the web page is the way that the user will have to operate that kitchen, for which both are inespensable

4/It is the way we tell the proma what information we are adding is, so the program knows where to look and how to display

5/They all start and end with the tag that you want to occupy, and in between goes the info that we want to display depending on the tag that we use

6/ It is a tool to be even more precise with some tag

7/begins and ends with the same tag (), and that space can be divided into head and body, which the head carries the info that will not be shown on the page, and the body that is the info where the user according to how we want him to do it

1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? It’s a programming language used to structure a webpage
  3. Why are we learning HTML? Because it’s one of the main front end languages that will be used for a website.
  4. What is an HTML tag? It is used to create and insert an element inside a webpage.
  5. What is the structure of an HTML tag? It’s two angle brackets with the name of the element in it in the beginning, and the same thing with a slash in it at the end.
  6. What is an attribute? It’s extra information added about the element.
  7. What is the anatomy of an HTML document? It has a head, a title and a body. And then some structural code wrapping these to define the language used etc.
1 Like
  1. What is HTML?

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

  1. What is HTML used for?

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.

  1. Why are we learning HTML?

To make a human readable websites as our desire.

  1. What is an HTML tag?

Tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

  1. What is the structure of an HTML tag?

An HTML Document is mainly divided into two parts:

HEAD: This contains the information about the HTML document. For Example, Title of the page, version of HTML, Meta Data etc.

BODY: This contains everything you want to display on the Web Page.

  1. What is an attribute?

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

  1. What is the anatomy of an HTML document?

Every HTML document consists of two elements:

a. Head elements – provides page title and general page formatting commands

b. Body elements – put the main HTML text in this part.

1 Like
  1. HTML stands for hyper text markup language which classifies it more as a mark up language than a programming language which can help you to create a website.

  2. HTML is used to create a webpage.

  3. Learning how to develop a website will help to better understand how things like dapps interact with websites utilizing their own codes like solidity.

  4. An HTML tag is what shows where a line of code begins and ends.

  5. The structure of an HTML tag includes an opening and closing tag, content and all this constitutes an element.

  6. An attribute consists of a name and a value. It is not seen on the website. It helps to classify what the line of code is representing.

  7. The anatomy of an HTML document includes the document type, the head and the body.

1 Like
  1. Hypertext Markup Language

  2. HTML is used to structure a webpage and it’s content.

  3. We’re learning HTML in order to customize our websites with a common markup programming language.

  4. An HTML tag allows customization of the enclosing content within an element.

  5. A tag has an opening tag and an ending tag. i.e.

    …

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

  7. The docktype; html element; head element; UTF-8 element; title element; & the body element.

1 Like
  1. Hypertext Markup Language.
  2. Defines the structure of your content using elements.
  3. To have a practical application for learning to code.
  4. Tags are used to create links, visual changes, font changes, etc.
  5. opening tag, closing tag, content, element, attribute
  6. a characteristic
  7. preamble, root element, head, charset, title, body
1 Like