-
What is HTML?
Is a code language that uses tags to represent attributes on a text -
What is HTML used for?
For fat I understand is used for writing html documents, which happen to be mostly websites -
Why are we learning HTML?
This is a good question, the main use I have give it so far is to extract information from websites -
What is an HTML tag?
Is an attribute to the text contained in the html document -
What is the structure of an HTML tag?
it has an opening followed by the content and then the closing of the tag, might have a couple of attributes -
What is an attribute?
attribute in html is a value that can be attached to a tag that will provide some special characteristics -
What is the anatomy of an HTML document?
I would state that is:
header
meta
body
What is HTML?
HTML abbreviation stands for Hypertext Markup Language.
What is HTML used for?
HTML is used for creating the primary structure of a web page(ââskeletonââ): headings, paragraphs, tables, lists, links, images, video and audio, forms, and more.
Why are we learning HTML?
HTML is important to learn and understand, as actual programming languages (eg JavaScript) are working on modifying HTML elements. Without HTML, there is no ability to use JavaScript or any other programming language. We think of HTML as a skeleton and Javascript as muscles of the web page.
What is an HTML tag?
An HTML tag is a specific keyword, defining how the structure of the page will be displayed in a browser.
What is the structure of an HTML tag?
Every HTML tag always starts and ends with < > brackets. Inside the brackets, there is always the tag name. Most of the time there is an opening and closing tag. The difference between them is that the closing tag has a slash before the tag name :
<p>content</p>
Some tags are self-closing:
</br>
Some tags do not have a closing tag, because there is no text content to be wrapped:
<img src="">
What is an attribute?
An attribute is the structural element of the tag, that contains extra and more specific information about the element, formed by a tag. For instance src
from the previous example is an attribute that defines the source(or the path) of the image.
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>
Every HTML doc by tradition starts with declaring the HTML type of it. Then according to the nesting principle there go the basic tags that every HTML document must contain: <html></html>
wraps the whole document. <meta>
tag is used to define the number of symbols operated by this particular HTML doc. <head></head>
is used to define the hidden content that wonât be displayed on the page and also the title of the web page, wrapped with <title></title>
tags. <body></body>
wraps the main content of the page.
⢠What is HTML?
o Hypertext Markup Language
⢠What is HTML used for?
o Used to structure a web page and its content
⢠Why are we learning HTML?
o To be able to program the content of a web page
⢠What is an HTML tag?
o Tag specifies what you would like the content to do.
⢠What is the structure of an HTML tag?
o The opening tag has the name of the element, wrapped in opening and closing angle brackets. The closing tag also has the name of the element and is wrapped in opening and closing angle brackets, but also has a forward slash after the opening angle bracket.
⢠What is an attribute?
o Contains extra info. about the element that you donât want to appear in the actual content.
⢠What is the anatomy of an HTML document?
o Doctype
o Html element
o Head element
o Meta element
o Title element
o Body element
-
A markup language that will define the structure of your content.
-
You need HTML to structure a web page and itâs content.
-
Bacause weâll learn how to develop content on the blockchain and this content needs to be structured with HTML. Every content consist of text files and these files will be structured with HTMT.
-
HTML tag is like a keyword that will decide how information will be shown on your web page.
-
The element that contains the opening tag, the content with perhaps an attribute and final the closing tag.
-
Extra information in the element that you donât want to show in your actual content.
-
It contains all the necessary HTML elements from to .
- HyperText Markup Language: a markup language that defines the structure of your content.
- Building websites and the structure of them
- itâs THE format to create websites and a good base to learn blockchain development
- Itâs how you give an instruction to your website.
- < p > content in between < / p >
- Attributes are additional content in elements that are not intended for the user to see. They are used to hold information available to the developer only.
- < !DOCTYPE html>
< html>
< head>
< meta charset=âutf-8â>
< title>My test page
< /head>
< body>
< img src=âimages/firefox-icon.pngâ alt=âMy test imageâ >
< /body >
< /html>
- HTML stands for Hyper Text Markup Language
- HTML is used for structuring a web page and its content
- We are learning HTML here because it is relatively easy to learn compared to other languages that are more specific to blockchain coding, and is often integrated with them when building programs based on blockchain
- HTML is expressed through elements; a tag is used to enclose an element; tags help to structure the language, as elements are created to build the page
- The structure of an HTML tag consists of the opening tag (element name, or type, wrapped in opening and closing angle brackets, and the closing tag (same as opening, but with a forward slash in between the opening angle bracket and the element name); the content is placed in between the opening and closing tags; the element consists of the opening tag, content, and closing tag
- An attribute is an added description of the element that is placed in the opening tag to avoid it showing up as part of the content; it should be written with a space between it and the element name (or previous attribute if there are multiple attributes), it should consist of a name, an equal sign, and a value wrapped by opening and closing quotation marks
- The anatomy of an HTML document looks as follows:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello</title>
</head>
<body>
Hello
</body>
</html>
The above is the basic anatomy of an HTML page. The âDOCTYPEâ element defines it as HTML and allows it to behave correctly, the âhtmlâ element wraps the content of the entire page, the âheadâ element allows a place for all aspect of the page that describes it without showing up as content in the page (like keywords, page descriptions showing up in search engines, and CSS for styling), the âmetaâ element is almost always given a default attribute (charset=âutf-8â) to set the ability to write text in almost all written language characters, the title element is the description that appears in the tab/bookmarks/favorites, and the âbodyâ element is where we write the content that appears on the page.
-
What is HTML?
Hypertext mark up language. -
What is HTML used for?
Structure the content of websites. -
Why are we learning HTML?
We are learning HTML as it is the most basic and foundational coding languages that helps us structure content. -
What is an HTML tag?
A HTML 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>
. -
What is the structure of an HTML tag?
Open and closed angle brackets with an element in between. A closing tag is normally required unless it is an empty element and the closing tag always has a forward slash. -
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?
-
<!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.
My HTML reading task
answer the following questions.
1. What is HTML?
Its like a text editor for webpages to markup or structure the webpage.
2. What is HTML used for?
Used for making a webpage layout structured like paragraph,bulletpoints and images
3. Why are we learning HTML?
To create and understand how webpages are made and structured
4. What is an HTML tag?
A tag is a place holder between a start and end tag, between these tags the content is placed
5. What is the structure of an HTML tag?
The structure is a opening tag in brackets and a closing bracket starting with a / ==> example <p></p>
6. What is an attribute?
An attribute a property which can add some extra functionality
7. What is the anatomy of an HTML document?
It consist of a <!doctype html> and tags like html,head,meta charset,title,body
- Hypertext Markup Language is code that structures content on web pages
- HTML is markup language that defines the content on web pages using elements that make different parts of the content appear or behave a certain way
- HTML is the standard code for building webpages. No need to know 100% of it but at least understand the basic rules.
- HTML tags are used for creating elements. an element is part of a webpage and may contain a data item, text, images or even nothing at all.
- tags use angle brackets and needs an opening tag and a closing tag. for example, < > (opening tag) and </ > (closing tag)
- an attribute changes the behavior or metadata of an HTML element
- HTML document needs to contain the following code:
<!DOCTYPE html>
<html> - contains all information which is dispalyed on the wab page
<head> - main information about contant
<title>Name of the wab page</title>
</head>
<body> - sets all the contant you want to show
<h> </h> - header
<p> </p> - paragraph
</body>
</html>
- What is HTML?
-HTML is a markup language that helps to define the structure of content (Typically a webpage but could be something else)
- What is HTML used for ?
-HTML is typically used to make content act or appear a certain way.
- Why are we learning HTML?
-HTML is a basic language that is commonly used to build webpages , its a good place to start and lays a framework to build understanding of other languages.
- What is an HTML tag?
-An HTML tag is a part of the structure in the code , helping to define / classify and/or to identify different parts of our content that we may wish to change , emphasize or style.
- What is the structure of an HTML tag?
- A singular HTML tag consists of a defining element (i.e. body , h1 , html or title as some examples) surrounded by brackets <-t-a-g->____</-t-a-g-> and always with a defined end </-e-n-d->
-
What is an attribute?
-An attribute is a definition of behavior contained within a tag that changes the way content acts , appears or functions. -
What is the anatomy of an HTML document?
<html>
<head>
<title>Title of ... </title>
</head>
<body> Main content
<h1> Header or new paragraph - up to 5 </h1>
<p> paragraph 1 </p>
</body>
</html>
- What is HTML? 2. What is HTML used for?
- HTML stand for HyperText Markup Language. It is a code that is used to structure a web page and its content.
- Why are we learning HTML?
- to enclose parts of content to act the way we want.
- What is an HTML tag? What is the structure of an HTML tag?
- < > itâs a main part of the Element. Telling what element is. Head, Paragraf etc. There is openning Tag: and closing Tag: (here for head)
- What is an attribute?
- itâs a section of the Element that contain extra information about that element.
- What is the anatomy of an HTML document?
- A combination of elements and the way they form whole HTML page.
-
What is HTML?
Hyper-Text Markup Language -
What is HTML used for?
HTML is used to create webpages, interactive or otherwise. -
Why are we learning HTML?
Hmm, at this point Iâm not sure, but in time it will make sense. -
What is an HTML tag?
Tags define an element: how it behaves, how it appears, if it links with other sites and so on. -
What is the structure of an HTML tag?
First. the opening tag, with the symbol for the type of contents, enclosed in brackets <>; (may also include a attribute)
Then the closing tag in brackets with a backslash / included. </> -
What is an attribute?
Extra information added to an opening tag-- changes the style or classification of the contents in some way. -
What is the anatomy of an HTML document?
An element?
It starts with an opening tag, then the content, then the closing tag
- HTML is a markup language that defines the structure of the content of an webpage.
- HTML is used to create webpages.
- Because we want to understand how a webpage functioning, and we will create Dapps.
- Tags create elements.
- The opening tag, the content and the closing tag.
- Attributes contain extra information about the element that you donât want to appear in the actual content.
- DOCTYPE, , , , ,
- HTML ( H yper t ext M arkup L anguage)
- Is the code that is used to structure a web page.
- Structure of content.
- A tag is used for creating an element.
- The opening tag, closing tag, content, element.
- Attributes 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 >
-
HTML is Hypertext Markup Language, a markup language that defines the structure of your content.
-
HTML is code used to structure a web page and its content.
-
We are learning HTML to help with web development and basic web coding.
-
An HTML tag is used for creating an element. 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.
-
The structure of an HTML tag is as follows: opening tag
<tag> </Tag> closing tag ex.<p>content</p>
-
An attribute is extra information about the element included in the tag that you donât want to appear in the actual content.
-
The anatomy of an HTML document is as follows:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My test page</title>
</head>
<body>
<h1>hello world</h1>
</body>
</html>
- What is HTML? Hypertest Markup Language
- What is HTML used for? Itâs used to make content on websites/web/apps easy to display via a structured text.
- Why are we learning HTML? So we can create content on the web for our audience to view.
- What is an HTML tag? An HTML tag is used to format/display text on a webpage.
- What is the structure of an HTML tag? The structure of an HTML tag begins with a left bracket â<â and ends with a right bracket â>â. It contains a special keyword used to format content on the webpage in a special way. Also, there is a beginning tag and an ending tag, the text in between the tags is what is formatted.
- What is an attribute? An attribute is extra information used (usually) to provide additional formatting of the element that you donât want to appear in the actual content
- What is the anatomy of an HTML document?
Anatomy being the skeleton that will provide the structure for the webpage.
Generally, the anatomy of all HTML document consists of the following tags:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example</title>
</head>
<body>Example Text</body>
</html>
-
What is HTML?
It is a markup language used to control the structure of a webpage and its content. -
What is HTML used for?
It is used to structure content on a webpage to make it appear in a certain way by making use of html elements. -
Why are we learning HTML?
To understand the basics of web development before moving on to more complex topics such as JavaScript. -
What is an HTML tag?
It is a mandatory tag that serves as a container for all other HTML elements. -
What is the structure of an HTML tag?
<[opening tag element name] [attribute name = âattribute valueâ]>Content</[closing tag]>
Example<p class=âeditor-noteâ>This is content text</p>
-
What is an attribute?
These contain extra information about the element that will not appear in the actual content but will affect it. -
What is the anatomy of an HTML document?
<!DOCTYPE html>
- Ensures that the browser knows this is an html document.
<html></html>
- Container for all other elements i.e., root element.
<head></head>
- Container for all the things that you want to include on the HTML page that is not included as content seen by viewers. Some examples of this are metadata, CSS styling etc.
<meta charset="utf-8">
- Sets metadata of the HTML document. In this case it sets the document to use the UTF-8 character set.
<title></title>
- Title of the web page that will appear on the browser tab page.
<body></body>
- Contains all the content that you want to show to the web users.
Example:
<!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>Mozilla manifesto</title>
</head>
<body>
<h1>Mozilla is the best!</h1>
<img src="images/firefoxLogo.png" alt="Blue and orange image of firefox logo" width="260" height="260">
<p>At Mozilla, we're a global community of:</p>
<ul>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ul>
<p>Working together to keey the INternet alive and accessible, so people worldwide can be informed contributors and creators of the Web. <br>We believe this act of human collboration across an open paltform is essential to individual growth and our collective future</p>
<p>Read the <a href="https://www.mozilla.org/en-US/about/manifesto/details/">Mozilla Manifesto</a> to learn even more about the values and principles that guide the pursuit of our mission.</p>
</body>
</html>
- Hypertext Markup Language
- It is used to structure a web page and its content.
- It allows us and our content to be structured, for example; create lists, use images, etc. Itâs essential in the development of web.
- A tag contains the name of the element, as well and defines where it starts and stops.
- The structure consists of an opening tag, " < tag > ", and a closing tag, " ", including the name of the element within the angled brackets. In between the opening and closing tab lies the content or text we wish to include. The entirety together called an element.
- An attribute is additional piece of information about the element that you donât want to be in your viewable content. An example is the âclassâ attribute that allows you to add another level of detail in the structure to reference/target files.
- The anatomy of an HTML document consists of a few parts; The doctype, the element, the element , The <meta charset=âutf-8â (The character set the document should use), the element. and the element. Basically all of the individual pieces correctly together.
1.What is HTML?
HTML stands for Hipertext Markup Language and is a code that is used to structure a web page.
-
What is HTML used for?
It is used to create and structure a web page -
Why are we learning HTML?
Because it is the basics of coding we need for understanding of further programming in blockchain. -
What is an HTML tag?
We have to types of tags: an opening tag that states where the element begins and a closing tag which states where the element ends. -
What is the structure of an HTML tag?
< tag > < /Tag > -
What is an attribute?
An attribute cointains extra information about the element that we donât want to appear in the actual content. -
What is the anatomy of an HTML document?
We have doctype, the html element (which wraps the content of the entire page), head (the content we want to include on the html page that is not the content we are showing to the viewers). We have meta charset utf-8 (the element that sets the character set), title (which will be the title of the page) and body (which contains all the content we want to show to the users)
- HTML is a markup language.
- You are âmarking upâ how your page will be displayed.
- It provides the basics of customization of a Web Page, (cannot help mentioning "MySpace, LOL!), while it is not coding/programming in a true sense. It is the basis for the Web of today.
- A tag is a piece of code to make an element.
- A tag is enclosed in angle brackets.
- An attribute is extra information hidden from being displayed on the Front End.
- Individual elements combined to form an HTML document.