HTML Reading Assignment

  1. HTML is Hyper Text Markup Language.

  2. HTML is used for building websites.

  3. We are learning HTML because is the base to understanding WEB.01. Without understanding the basics of WEB.01 one can’t learn WEB.03 programming.

  4. HTML tag is an opening and closing part of HTML element which describes where the element starts and where it ends.

  5. The structure of an HTML tag is the following:

My cat is very fluffy

Where “

” and “

” are opening and closing tags and “My cat is very fluffy” is the content.
  1. An attribute is extra information about the element which is not meant to appear in the text of an element and usually in located in the tag.

For example:

My cat is very fluffy

Where “class= “editor note”” is an attribute. “class” is the name of an attribute and “editor note” is an attribute value.

  1. The anatomy of an HTML document is following:
( is a document type preamble) (root element) . (head element)
<meta charset="utf-8">                   ( This element sets the character set your document which includes most characters from the vast majority of written languages)

<title>My test page</title>                   (Title of the page)
(head which contains keywords for search generators)
<img src="images/firefox-icon.png" alt="My test image">              (images and or descriptive attributes for visually impaired who can't see the image)
1 Like
  1. HTML is a language, which can be used for web pages to give a structure.

  2. With the Elements out of HTML you can work with content to change it in a way, that it is shown differently or act differintly. So hyperlinks may be possible or you can just simply change the fonts of your content to create.

  3. Because it gives us a basic understanding of web and programming.

  4. With tags in HTML, we can change the properties of the content to be worked with.

  5. Tags are structured with <>, wrapped in opening and closing angle brackets.

  6. Attributes are extra information inside an element, whicht don’t appear in the actual content.

  7. wraps the whole content on the page and is the not shown content contained. The anatomy contains all elements of the document, which make it functional
1 Like
  1. What is HTML?
    HTML ( Hypertext Markup Language)
    HTML is the code that is used to structure a web page and its content

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

  3. Why are we learning HTML?
    Because its a basic language, very simple and good way to start learning how to program and what is coding about

  4. What is an HTML tag?
    A Tag is the name of the element wrapped in opening and closing angle brackets

  5. What is the structure of an HTML tag?
    Opening Tag, Content, Closing Tag

  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?
    Its divided in two elements: Head (where is the title and general commands) and body (where mostly of the text is)

1 Like
  1. HTML (Hypertext Markup Language) is a markup language that defines the structure of your content.

  2. Is the code used to structure a web page and its content.

3.Learning HTML is important because a web page is the face of our future projects.

  1. HTML TAG is used for creating an element.

5.The structure of an HTML tag is formed by the opening tag , content and closing tag.

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

<html>
    <head>...</head>
    <body>...</body>
</html>.
1 Like
  1. What is HTML?
    HTML is a markup language that is human-readable and consists of a series of elements. This means that it gives text a structure and instructions to format it. Caveat: HTML is not a programming laguange because it doesn´t have any flow control nor it doesn´t have any conditioning in it´s text file.
  2. What is HTML used for?
    HTML is used for displaying documents in a web browser. HTML can also contain programs written in scripting laguages.
  3. Why are we learning HTML?
    HTML is the language used in front-end to display text in a organized manner. With the help of JavaScript we can program websites that interact with Blockchain applications
  4. What is an HTML tag?
    A tag is a instruction to indicate the start and the end of the HTML Element.
  5. What is the structure of an HTML tag?
    The opening tag: beginning of element
    The closing tag: end of element
    The content: text, content of element
    The element:all the above
  6. What is an attribute?
    Gives extra information about the element.
  7. What is the anatomy of an HTML document?
    <!DOCTYPE html> — doctype.
    <html></html> — the <html> element.
    <head></head> — the <head> element.
    <meta charset="utf-8">
    <title></title> — the <title> element.
    <body></body> — the <body> element.
2 Likes

#1 Code that is used to structure a web page and its content

#2 HTML is used for making parts of the content appear a certain way or act a certain way.

#3 HTML is needed as a foundation for web development and creating smart contracts for block chain.
#4 Tags are used for creating the element
#5 understand the entire Element instructions
#6 Attributes can be instructions that you don’t need to be actually in the code.
#7 HTML have Elements,Tags, content, and attributes.

1 Like
  1. Code used to structure website and content.
  2. A markup language that allows one to structure the appearance of a website as well as link to other sites.
    3.It is important to know the basics of web design in order to have a better understanding when developing the front end.
  3. Tags are used for creating elements.
  4. Tags open and close the content of an element.
  5. Attributes add more information about the element that doesn’t appear in the context.
  6. Doc type, html element, head element, character set, title/body element.
1 Like
  1. Hypertext Markup Language defines the structure of your content.
  2. Websites
  3. The front end or user interface of smart contracts
  4. A tag is used for creating the start and end of the HTML element.
  5. opening tag, content, closing tag
  6. Contains extra information about the element that you don’t want to appear on the actual content
  7. Doctype, html element, head element, meta charset=“utf-8”, title, body.
1 Like
  1. What is HTML?
    HTML ( HyperText Markup Language) is the code that is used to structure a web page and its content.
  2. What is HTML used for?
    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.
  3. Why are we learning HTML?
  4. What is an HTML tag?
    The tag is used for creating an element. The end tag’s name is preceded by a slash character. <p> for paragraph; <p/> for closing the paragraph.
  5. What is the structure of an HTML tag?
<p>Text</p>
  1. 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.
  1. 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>
  • <!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.
  • <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.
  • <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.
3 Likes
  1. What is HTML?
  2. What is HTML used for?
  • It is a code that is used to structure a web page and its content
  1. Why are we learning HTML?
  • Becase it’s a basic programming language and once it’s mastered, we can recognize other programming languages easily; it could also be used to create a web page of course
  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?
  • It contains a starting with an attribute inside and ends with an ending
2 Likes

1. What is HTML?

HTML stands for Hypertext Markup Language. It is a markup language that defines the structure of your content.

2. What is HTML used for?

Simply put, HTML is used to structure a web page and its content.

3. Why are we learning HTML?

We learn HTML to understand how to code content to make it into a webpage.

4. What is an HTML tag?

An HTML tag is where you type the name of an element within opening & closing angle brackets.

5. What is the structure of an HTML tag?

The structure of an HTML tag is as follows :

  • An opening and closing tag

  • The content

  • The element, which essentially encloses the tag and the content

6. What is an attribute?

An attribute is extra information about the element which doesn’t appear in the actual content.

7. What is the anatomy of an HTML document?

The anatomy of an HTML document is individual elements combined to form an HTML page.

2 Likes

1.) HTML stands for HyperText Markup Language and it’s basically the body of a website, with very little formatting.

2.) It is used to build the foundation of a website. You can create kind of the skeleton of it.

3.) Most of the things we’ll learn will require a basic website to work on.

  1. and 5.) An HTML tag indicates the formatting of part of the text or images on the website. With a few exceptions, most elements have an opening tag, which is a word or letter written in between < > symbols and a closing tag, that is almost the same but it has a / symbol in it like so </ >. Between these, is the formatted text.

6.) An attribute is an extra characteristic feature of the formatted element stated inside the opening tag. Can be used to give a class or id for example.

7.) Inside of the < html> < /html> tags, there’s a < body> and a < head> element. The head contains important things, most of which you can’t see, like the link to the css files. The body element has the actual content of your page.

2 Likes

1- Html can be describe as the “meaning” of a web page.
2- Basic web design
3- to learn anything you need to start with the basic and when it comes to anything coding html is the most basic form.
4- The tag is a decriber of what you are writing in the code.
5- content
6- An attribute is a class or id.
7- This is the basic form that all web pages/html function on.

2 Likes

1.Hypertext Markup Language
2. Foundation for content structure
3. To properly learn the foundational principals of web design.
4.HTML tag set up the beginning and ending of the element.
5. The complet element.
6. A value spec of an element
7.Head element and body element.

1 Like

Homework: HTML Reading Assignment

HTML is a Hypertext Markup Language.

It is used for writing Website code, usually the front-end. With HTML you can build websites.

Because it is an important part of compuer programming, and knowing how to use HTML and beeing able to code a website is essential to becoming a website developer.

A HTML tag is the name for an element within your HTML file.

A tag is characterized by having an opening tag e.g.

and a closing tag

. These tags enclose an object, image or something else in your HTML file. The name of the element (in this example it is p ) is wrapped in angular brackets.

Attributes are added inside elements to give the element extra information that is not supposed to be shown to the websites user. The attribute is strctured like this: class=" "

first you have
then you write which wraps around the whole html file.
Inside the html element you have the header, in which you can store users informations, then you have the body, which has images and texts and links and so on.

1 Like
  1. Hypertext Markup Language
  2. HTML is that base layer of the website, the skeleton if you will, of the front end
  3. HTML is one of the fundamental ingredients of WebDevelopment
  4. An HTML tag is a part of the syntax of this language, the HTML elements or things are placed between the starting and end tags on our websites (in the code). Different tags dive the displayed text different properties of size, boldness etc.
  5. HTML elements are placed between 2 tags, one is the opening tag and the other is a closing tag, they look something like this --> bla-bla The bla-bla is known as content and content along with both tags is known as the HTML element.
  6. An attribute is something that further describes the element, a classic attribute would be a class
  7. HTML document may include absolutely nothing, while it may also include many tags and sections as well as links pointing to external websites or links that request information from other websites in order to modify various things, like fonts and much much more. The typical website would have tag where all the HTML code is and it would have further sections of etc…

“Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live”
― John Woods

1 Like

HTML is Hypertext Markup Language.
It is used to create a webpage with text and images.
We’re learning HTML to learn programming structure and function identifiers that I will need to create my webpage to test my programming skills.
HTML tags informs the browser what is being displayed, text, image.
Attribute is information that you don’t want displayed to the viewer.
The anatomy of an HTMl document includes: Preamble, head, meta, title, image and body.

1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    Provides a platform to display different data types such as text, image, video, audio etc

  3. Why are we learning HTML?
    Because HTML is a fundamental piece of web development

  4. What is an HTML tag?
    HTML tags are keywords that can help define the format of both the metadata(usually hidden) and information being displayed to the user (read out if using a screen reader)

  5. What is the structure of an HTML tag?
    Structure includes <> sign with the keyword within the sign. For example < p > (without spacing as the spacing is to prevent this reply from interpreting it into a paragraph tag). While some tags have ending tags that include a / symbol such as </ p > (omit spacing as well) while others such as input does not have an ending tag.

  6. What is an attribute?
    An attribute is a property that can be defined such as href attribute within a paragraph tag that links to a URL

  7. What is the anatomy of an HTML document?
    From my understanding it should be HTML tag followed by head for metadata, style for CSS integration, script for JavaScript, body for all displayed content, main for main content. Additional stuff like header or footer can also be implemented

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

  • What is HTML used for?
    It can content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

  • Why are we learning HTML?
    because html is one of the basic foundations of a computer language.

  • What is an HTML tag?
    is a sign symbolizes a begin or an end of a content.

  • What is the structure of an HTML tag?
    **The opening tag: consists of the name of the elemen, wrapped in opening and closing angle brackets. The closing tag: is the same as the opening tag, except that it includes a forward slash before the element name.

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

  • What is the anatomy of an HTML document?
    It is all the parts containing HTML element

1 Like
  1. HTML is a markup language that defines the structure of a content.

  2. HTML consists of a series of elements used to put together different parts of a content.

  3. We are learning this code in order to be able to structure a web page and its content.

  4. It is an element that marks the “opening” and “closing” of a paragraph.

  5. for opening and

    for closing.
  6. An Attribute contain extra information about the element that you don’t want to appear in the actual content.

 <! DOCTYPE html>

<html> </html>

 <head> </head>

<meta charset=”utf-8”>

<title> </title>

<body> </body>
1 Like