Hey Carlos
thanks for this, I played around with this feature hahahah
thank you
Hey Carlos
thanks for this, I played around with this feature hahahah
thank you
Hey Carlos, doing great, hope the same.
Youâre right, I could have been more clear. I have edited the answers (with the use of some HTML-tags). Hopefully it is more clear now.
HTML stands for HyperText Markup Language. It is a « formatting » language used to provide structure to webpages displaying different sections within the content (for example, title, paragraphs, imagesâŠ)
HTML is used to provide structure to web content. It features a series of elements which are sections within the overall content. Elements are made of opening and ending annotations, and the actual content that is displayed. The opening and ending annotations are called opening and ending tags. They are there to give specific formatting to different sections.
For example, the opening tag (less than sign < then p then more than symbol >) and closing tag (less than < then forward slash / then p then more than >) are put at the beginning and the end of a section within a content that is a paragraph:
HTML is the markup language standard upon which webpages are built.
Tags are annotations used to wrap specific sections of content. There are 2 types of tags: opening tag and closing tag. Each tag holds a specific formatting capability.
Attributes are additional information about an element that is not displayed when launching a page
Here a screenshot of HTML document anatomy:
What is HTML?
Hypertext Markup Language, the skeleton of a website.
What is HTML used for?
To create the structure, the skeleton of the site. No cosmetics, no fluff, only the structure.
Why are we learning HTML?
For fun and profit
Learning HTML helps our further progress if we plan to build anything internet 1.0, 2.0 or 3.0 related.
Every protocol/app needs some kind of web form, a front layer, where people can interact with it.
What is an HTML tag?
Tags are the building blocks of HTML.
What is the structure of an HTML tag?
opening tag:
closing tag:
and parameters, key=value pairs between the two.
What is an attribute?
Extra information about the element.
What is the anatomy of an HTML document?
The minimum:
< html >
< head > < /head >
< body >< /body >
< /html >
Q1. What is HTML?
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
Q2. What is HTML used for?
HTML is used for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.
Q3. Why are we learning HTML?
HTML is used for creating websites for Decentralized apps (dApps) through which end users interact with blockchain smart contracts. Web3.js libraries are utilized in development and testing of smart contracts which requires interactions with the HTML elements in the web page through JavaScript.
Q4. What is an HTML tag?
HTML tag is used to define an HTML element.
Q5. What is the structure of an HTML tag?
An HTML element comprises of opening tag, closing tag, content (for e.g.text)
Q6. What is an attribute?
Attribute is extra information about the HTML element. Attribute is used to identify the HTML element and is not required to be displayed in HTML page.
Q7. What is the anatomy of an HTML document?
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
its a markup language that defines the structure of your content
it is used to program website with fixed content
it is the basics for web & blockchain development
a TAG denotes the start and end of the section in HTML
start < and > & end < /and>
attribute are additional information not seen by the user BUT only the dev team can view it .
Open HTLM tag - header -body - body element, close HTML tag
" HTML is not a programming language; it is a markup language that defines the structure of your content."
HTML is used âto enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.â
In order to know how to âstructure a web page and its contentâ
4./5. "< HTML > " the beginning and â</ HTML >â the ending with a â/â
6.
âAttributes contain extra information about the element that you donât want to appear in the actual content.â
< html >
< head >
< /head >
< body >
< /body >
< /html >
Answers:
HTML is a markup language that defines the structure of the page content.
HTML is used to structure a web page and its content.
We are learning HTML because it is important to be familiar with it when applying JavaScript code.
An HTML tag indicates the start and the end of an element.
A HTML tag starts with the opening tag which says where the element starts. The closing tag indicates where the tag ends. between the two tags is the content of that element.
An attribute contains extra information about the element that you donât want to include in the content.
The HTML tags wrap around the whole document. The head tags wrap around the information of the page that wonât be outright visible to the user, such as the title tags, which displays its content on the browser tab. The body element contains everything that is seen on the page.
-HTML is not a programming language. It is a markup language. To be exact it is Hypertext Markup Language (HTML)
-HTML is used to define the structure of your code. It determines how your code will appear.
-When creating a website HTML will determine how the website looks and feel.
-Tags are used to wrap the content so that HTML can affect the content. Example
My cat is very grumpy
-The structure of HTML is called an element. The element consist of an opening tag (element name) wrapped in opening and closing brackets. Then comes the content and finally the closing tag which includes the element name, opening and closing brackets and a forward slash. The forward slash indicates the end of the element.
Attributes are extra information about the element, located within the element tags. You do not want the attribute information to appear in the actual content. An attribute should always have a space between it and the element name, the attribute name followed by an equal sign, and the attribute value wrapped by opening and closing quotation marks. Example: <p class=âeditor-noteâ >My cat is very grumpy
It is the designated structural pattern a document must follow to be considered good HTML. It contains the following elements
You can use the âPreformatted Textâ Button to encapsulate any kind of code you want to show.
function formatText(){
let words = âIâm a preformatted Text box, Please use me wisely!â
}
Carlos Z.
HTML, Hypertext markup language, is the code that is used to structure a web page and its content. HTML 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
We use HTML to build web pages
A tag is a syntaxâs coda that we use to be able to display something on the computer. There is a proper tag for display an image, a text, a titleâŠ
The opening tag <âŠ>
There is the content that could vary from the text if we are using a text tag or the computerâs path for displaying an image
The tag ends with the âclosing tagâ: </âŠ>
Attributes contain extra information about the element that you donât want to appear in the actual content.
I am replacing â>â with â<â to be able to display syntax without actually display some code
"<!DOCTYPE html<
<html<
<head<
âŠ
<title<My test page</title<
</head<
<body<
<âŠ<
</body<
</html<
<p class="master">
I love this course! </p>
<!DOCTYPE html>
required preamble<html></html>
wraps around all the content on the page<head></head>
acts as a container for all the stuff you want to include, but not show, to visitors<title></title>
sets page title<body></body>
contains all content you want to show to visitorsWhat is HTML?
Hypertext Markup Language
What is HTML used for?
To show any form information on a website, be it text or images.
Why are we learning HTML?
Because it is basically the first building blocks of a website.
What is an HTML tag?
It is used to format a text. It makes the browser know how you want to display the content.
What is the structure of an HTML tag?
It starts with an opening tag <âŠ> and ends with a closing tag </âŠ>
What is an attribute?
An attribute provides additional 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>
required preamble
<html></html>
wraps around all the content on the page
<head></head>
acts as a container for all the stuff you want to include, but not show, to visitors
<title></title>
sets page title
<body></body>
contains all content you want to show to visitors
What is HTML?
Hypertext Markup Language
What is HTML used for?
For holding all the elements of a webpage together and formatting them
Why are we learning HTML?
Because it is the foundational language websites
What is an HTML tag?
It is the prefix and suffix which wraps around an element to direct how it should be expressed on the webpage
What is the structure of an HTML tag?
i come to you like an atomic clock each and every day
What is an attribute?
an identifier which is attributed to an element so it can be used to select it individually or as part of a group with the same attribute for a purpose.
What is the anatomy of an HTML document?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The anatomy of a HTML document</title>
</head>
<body>
</body>
</html>