HTML Reading Assignment

  1. What is HTML?
    (Hypertext Markup Language) is the code that is used to structure a web page and its content.

  2. What is HTML used for?
    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.

Html consist of a series of ELEMENTS, which you use to “enclose” or wrap different parts of the content to make it appear or act in a certain way.

  1. Why are we learning HTML?
    We need to understand how the code works in front end to be able to develop services in back end.

4.What is HTML tag?
Defines the type of element you write.

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

Always have a opening <> and end </> tag.
Always have a definition of element Example p=paragraf


Also need a content. Excample

This is content

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

    This is content

    Here, class is the attribute name and editor-note is the attribute value. The class attribute allows you to give the element a non-unique identifier that can be used to target it (and any other elements with the same class value) with style information and other things.
  2. What is the anatomy of an HTML document?

To define it is a html document. All the rest Element This wraps all the contents. Element Not shown but includes key word for search, style, etc. also who defines type og caracter and Name on page That is what your web page shows
1 Like
  1. What is HTML?

Hypertext Markup Language
2. What is HTML used for?
It is used to create the headings, body, links, and attributes of a webpage.

  1. Why are we learning HTML?

We are learning HTML as a basis for a greater understanding of Java.
4. What is an HTML tag?

It’s a container for all of the other information.
5. What is the structure of an HTML tag?

It has three parts - the version of the HTML; the header and the body.
6. What is an attribute?

It is code the modifies an an element.
7. What is the anatomy of an HTML document?

The head and the body.

1 Like

What is HTML?

Hypertext Markup Language is the code that is used to structure a web page and its content. What is HTML used for?

It consists of a series of elements (tags) which enclose different parts of the content to make it appear in a certain way or act a certain way.

Why are we learning HTML?

What is an HTML tag?

An entity out of an opening and a closing tag that encapsulated content to make it look or act a certain way.

What is the structure of an HTML tag?

Opening tag, content, closing tag (smaller: angle brackets that wrap the name of the element)

What is an attribute?

Elements can also include an attribute which contains extra information about th element that you don’t want to appear in the actual content.

What is the anatomy of an HTML document?

  • <!doctype html> is a required preamble and is there so that the document behaves correctly
  • : html-element or root element
  • : head element, acts as a container for things that aren’t visible to your website visitors (e.g. keywords, page description)
  • <meta charset=”utf-8”: sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages (can help avoid some problems later on
  • : title element which shows the title that appears in the browser tab and when bookmarking it
  • : body element contains all the content you want to show to web users
1 Like
  1. Hypertext Markup Language.
  2. It is used to structure a web page and its content. It is the markup language that defines the structure of the content.
  3. It is the basics of coding required for DAPPS interacting with the web.
  4. It is the opening and closing of an element
  5. The name of an element in opening and closing brackets
  6. Extra info about the element that you don’t want to appear in the content.
  7. It shows how individual elements combine to form the entire html page.
1 Like
  1. What is HTML?
    Hypertext Markup Language : which is code used to structure a web page and its content.
  2. What is HTML used for?
    To define the structure of your content.
  3. Why are we learning HTML?
    Because it is the foundation for web development.
  4. What is an HTML tag?
    a tag is used to create an element. the content has an opening tag, followed by a closing tag.
  5. What is the structure of an HTML tag?
    opening and closing angle brackets with the element
  6. What is an attribute?
    Attributes contain extra information that you don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document?
    Heading
    Paragraphs
    Body
    Image
    Lists
    Links
1 Like
  1. What is HTML?
    It is the Hyper Text Markup Language. A concrete specification of an XML type of documents created for enabling websites distribute webpages readable y web browsers.

  2. What is HTML used for?
    It is a way to isolate content from decoration and structure. This way websites can provide higher user experience and visual effects/design than plain text.

  3. Why are we learning HTML?
    It is the first step to be able to face way more complicated challenges in the programming space.

  4. What is an HTML tag?
    It is an special ‘command’ indicating the web browser the elements within the tag (opening and closing) should be treated in a certain way.

  5. What is the structure of an HTML tag?

  • it has an opening tag: <opening_tag>
  • it has a closing tag: </closing.tag>
  • it has a content: what is between the opening and closing tabs.
  • it may have some parameters, called attributes, within the opening tag.
    Example:
    Visit us at acme.com
  1. What is an attribute?
    see answer to point 5.

  2. What is the anatomy of an HTML document?

  • Head elements, enclosed in the tag.
  • Body elements, enclosed in the tag.
head elements go here body elements go here
1 Like

HTML stands for Hyper Text Markup Language which describes the structure of Web pages using markup.
2) Every web page Internet is written using HTML code.
3) If you dont learn HTML, you have to find someone who knows HTML and pay them for their HTML coding services. learn it so you dont have to pay others for it
4)A tag is what makes the browser recognize what type of content it has to show and in what way
5) 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 start and end tags
6) An attribute specifies some additional properties regarding the content included inside a tag
7) HTML documents begin with !DOCTYPE html tag, then follow with the html tag, and a head and body.

1 Like
  1. HyperText Markup Language;
  2. It is a markup language that defines the structure of your content;
  3. HTML is the base for write on any webpage, so is the basics to start understand basic concepts 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. It is the basics of text editor in HTML;
  5. A tag starts with an opening , has usually an attribute inside and finishes with a closing ;
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content;
1 Like
  • What is HTML?
    Is a markup language. Stands for Hyper Text Markup Language.

  • What is HTML used for?
    Is used to structure a web page with content and links to other web pages…

  • Why are we learning HTML?
    To create web pages. Portals to the blockchain.

  • What is an HTML tag?
    It is a thing used in HTML to create an element.

  • What is the structure of an HTML tag?
    An open tag, eg:

    , content, eg: Hello world!, and a closing tag, eg:

  • What is an attribute?
    An attribute is additional information related to an element and it is not displayed. It contains a non-unique name with a value. Looks like it is some ind of meta data.

  • What is the anatomy of an HTML document?
    !DOCTYPE html>
    html> root tag
    head> header tag, content here is not displayed on the page
    meta charset = “utf-8”> charset allowed
    title> some title page title for book mark and browser tab
    /head>
    body> body tag, content here is displayed on the page
    text, pictures, etc
    /body>
    /html>

1 Like
  1. What is HTML?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
  6. What is an attribute?
  7. What is the anatomy of an HTML document?

1.HTML is a coding tool and stands for Hypetext Markup language and the structure of a webpage contents.

2.To creat websites

3.Because HTML is the basic language that we use to create website and then use it to connect our Apps to our website.

4.its a html element to let users navigating from 1 page to another

5.opening tag <> ,Attribute,Closing tag</>

6.HTML attributes are special words used inside the opening tag to control the element’s behaviour. HTML attributes are a modifier of an HTML element type

7.doctype> ,html>,head>,body>,meta charset=“utf-8”>,title>
:smiley:

1 Like
  1. HTML is a mark-up language
  2. HTML is used to properly display information and images/links on websites
  3. We are learning HTML because it is Web 1.0 and we need to be able to express information on a web page in order to embed web 2.0 and eventually 3.0 layers.
  4. A tag is what lets the website now how to express information on the website
  5. A HTML tag has an opening tag, content and then a closing tag. This is all collectively called an element.
  6. An attribute contains extra information about the element that doesn’t need to appear in the actual content on the website.
  7. HTML anatomy.
1 Like
  1. A HTML is a mark up language that defines structure of your content and makes it appear in a certain way
  2. Makes your content appear in a certain way, it is the layout of your website
  3. We are learning html because we need to understand the fundamentals before getting into more complex things
  4. There are opening and closing tags, and they are part of the element which encloses the contents on your site
  5. This is the structure of an HTML tag

  6. Attributes contain extra information about the element
  7. HTML, head and body
1 Like
  1. html is the Hypertext markup language used to structure a web page. HTML is not a programming language.

  2. HTML is used to structure the content of a web page

  3. Most things start from a web page, especially in this digital online era; learning HTML gives us the fundamental starting block to how everything is connected.

  4. An HTML tag is used define functions within a web page

  5. HTML can be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

  6. Attributes are parts of an Element that you don’t see on the screen.

  7. The anatomy is where the body of the code is kept and defined.

1 Like
  1. HTML is a markup language that defines the structure of content
  2. It tells web browsers how to display content
  3. To build websites, front ends
  4. A tag is used to define/create an element
  5. A tag is introduced inside these <> and ended with this </>
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content, they can be names of tags for example.
  7. The doctype, the element, the element, the element, the element, meta charset element.
1 Like
  1. What is HTML?
    Hypertext Markup Language used to structure a webpage and its content.

  2. What is HTML used for?
    Used for building websites and adding structure.

  3. Why are we learning HTML?
    To create interface for smart contracts.

  4. What is an 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. What is the structure of an HTML tag?
    Opening tag and closing tag. ex.

  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?
    The anatomy of an HTML includes Opening/Closing tags and content, which make up the element.

1 Like
  1. Hypertext Markup Language.
  2. It is used to display and structure content on a webpage.
  3. You need to show what you created and be able to interact with it.
  4. A start and end point for elements.
  5. Opening tag; information you want to display; closing tag.
  6. An attribute gives extra functions in an element.
  7. < doctype > ; < html > ; < head > ; < title > ; < body >
1 Like

What is HTML?
Is an Hypertext Mark-up Language it is used to construct web page.

What is HTML used for?
It is used to build website and webpage to make it appear certain way.

Why are we learning HTML?
To understand how webpage works and be able to build website efferently.

What is a Tag?
Is used for creating and element.

What is the structure of an HTML tag?
As two main part to it the head and the body.

What is an attribute?
Contain certain extra information about the element that you don’t want to appear in the actual content.

What is the anatomy of an HTML document?
Head elements. Provides page title and general page formatting commands.

1 Like
  1. HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. Its not a programming language its a markup language and defines the structure of your content.

  2. See first answer.

  3. Every web page is written in HTML and its a good language to begin learning code with.

  4. A HTML tag denotes the start and end of an element.

  5. <?>
  6. An attribute is extra info about the element that doesn’t appear in the actual content.

  7. A series of elements?

1 Like

This is the basic anatomy for HTML document:

<html> <!-- root tag -->
  <head> <!-- header tag, content here is not displayed on the page -->
    <title>This is my title!</title> <!-- some title page title for book mark and browser tab -->
  </head>
  <body>...</body> <!-- body tag, content here is displayed on the page text, pictures, etc -->
</html>

If you have any more questions, please let us know so we can help you! :slight_smile:

Carlos Z.

1 Like
  1. HTML is a language that is used to structure a website and its content.
  2. HTML defines the structure of the website, by marking it up with different elements and defining how different parts should be displayed/ or how they should behave.
  3. To learn the basic coding for a website, which will later on help to build front-end interfaces that a smart contract can interact with.
  4. In HTML, a tag is used to create an element.
  5. An HTML tag consist the name of the element wrapped in opening and closing angle brackets.
  6. An attribute is an extra information about the element that we do not want to be shown in the actual text.

<!DOCTYPE html>

<html>
<head>
...
</head>
<body>
....
</body>
</html>
1 Like