- What is HTML? Hypertext Markup Language
- What is HTML used for? Defines structure of content to create a basic web 1.0 static web page.
- Why are we learning HTML? To be able to create a web page as a front end of a dapp for example.
- What is an HTML tag? Element names inside brackets that tell the web page where elements begin and where they end.
- What is the structure of an HTML tag? <> </>
- What is an attribute? Additional info inside the tag not meant to be displayed on the page.
- What is the anatomy of an HTML document?
< html>
< head>
where you would add information you donât want visible like search tags etc
< /head>
< body>
displayed content of web page, etc
< /body>
< /html>
1. What is HTML?
HTML stands for Hypertext Markup Language and it is not a programming language.
2. What is HTML used for?
It is used for structuring the content of a website.
3. Why are we learning HTML?
We need it to enclose or wrap different parts of the contents to make it appear a certain way, or act a certain way.
4. What is an HTML tag?
When we want a part of the content to stand by itself, we use certain tools such as tags to enclose it.
5. What is the structure of an HTML tag?
The opening tag:
(if the name of the element is a paragraph -p-)
The closing tag:
6. What is an attribute?
Any attribute contains 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.
7. What is the anatomy of an HTML document?
That wraps up the basics of individual HTML elements, but they arenât handy on their own. It consists of several elements inside other elements placed in a specific order.
What is HTML?
HTML stand for Hyper Text Markup Language. So, HTML is not a programing language but it is a markup language, that can be used to build a web page. With HTML a programmer is able to design web page the way it needs to be designed in order to make it more user friendly or just to provide some kind of information.
What is HTML used for?
For designing a web pages
Why are we learning HTML?
We are learning HTML in order to be able to make to communicate smart contract with a web browser.
What is an HTML tag?
Tag represents what you want to do, or it represents the name of the ELEMENT
What is the structure of an HTML tag?
Opening Tag and Closing Tag
What is an attribute?
Attributes contains an extra information that you donât want to be visible in the content.
What is the anatomy of an HTML document?
HTML page is made out of several commands.
is needed to make sure that document behaves the right way this element wraps the content on the entire page is needed to include data that wonât be visible for a public is a character set, UTF-8 includes majority of languages title of the page which appears in the browser tab when page is loading contains all the information you want to show to your web page visitors1. 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.
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?
To learn the fundamentals of creating a WEB page.
4. What is an HTML tag?
The enclosing tags within an HTML element 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?
The main parts of an HTML element are as follows:
-
The opening tag: This consists of the name of the element, wrapped in opening and closing angle brackets . This states where the element begins or starts to take effect.
-
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. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
-
The content: This is the content of the element.
-
The element: The opening tag, the closing tag and the content together comprise the element.
6. 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.
7. What is the anatomy of an HTML document?
- Images
- Marking Up Text
- Headings
- Paragraphs
- Lists
- Links
-
What is HTML?
My Answer: HTML is not a programming language but a mark-up language that defines the appearance, layout and actions of your web page content. -
What is HTML used for?
My Answer: HTML is used to give a webpage structure in its appearance, layout and basic function. HTML is basically a set of rules/commands that that dictate how your webpage will display. -
Why are we learning HTML?
My Answer: We are learning HTML because we need to have the ability to connect our back end blockchain contracts to a standard webpage with a user-friendly interface. -
What is an HTML tag?
My Answer: An HTML Tag indicates the opening and closing of an element. An HTML can include attributes with values and controls how content is displayed or functions. -
What is the structure of an HTML tag?
Open Element - Less Than Sign (<) the element § then Greater Than Sign (>)
Close Element - Less Than Sign (<) forward slash (/) the element § then Greater Than Sign (>) -
What is an attribute?
My Answer: An Attribute is additional information within an element that doesnât show in the content. They are used as identifiers so different things like style can be added later on. -
What is the anatomy of an HTML document?
My Answer: doctype, html element, head element, meta charset utf-8, title element, body element
- HTML is hypertext markup language. It is not a programming language.
- It is used to format text and images (content) so that they display a specific way according to a set of requirements.
- We are learning HTML to markup text so that it appears a certain way. It will also serve as a place to add scripts or snippets of code.
- An HTML tag is an element that is used to enclose or wrap text, images, or links to make them act or appear a certain way.
- The structure of an HTML tag: An HTML tag is an element tag that is preceded by an angled bracket and followed by a closing angled bracket. This is where the element starts to take effect. Text usually follows the opening tag and ends with a closing tag; angled bracket, forward slash, element, and angled bracket
- An attribute is additional information that you donât want to appear in the content like the tag id and the class.
- The anatomy of an HTML document
a. The doctype
b. Html element
c. Head
d. The character set, which should be set to avoid problems later and it is metadata within the head tag.
e. The title tag is the title of the page appearing on the browser tab.
f. The body tag which normally displays the page content.
g. The closing HTML element.
1,2. HyperTextMarkupLanguage - a markup language used for providing various types of content and formating that content, usually for websites
3. It is a fundamental tool used in web 1,0 and above, so still used today. Necessary for JS as JS can manipulate HTML
4,5. Something that looks like and is used to specify element type, where it begins and where it ends
6. An attribute specifying something about an element: size, position, rotation, color etc. Attributes can also have a role in JS
7. doctype, html tage enclosing head and body
1 Hypertext Markup Language
2 HTML is used to structure a web page and its contents.
3 I will need HTML to create a web page that describe, promote and give access
to anybody on the web to use my smart contract.
4 It is used for creating an element, It allows to make paragraphs, display
images, links, fonts sizeâŚ
5 It start by an opening tag then finish by a closing tag.
<tag> </tag>
6 Attribute are special words used inside the opening tag to control the elementâs
behaviour.
7<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>exemple</title>
<head/>
<body> content </body
<html/>
-
HTML is an abbreviation standing for Hyper Text Markup Language. HTML is a markup language used to structure content.
-
HTML is used as a standard format of webpage content so that browsers can interpret the content and display them for users in a uniform fashion. In a way HTML can be thought of as the lingua franca of web browsers like postscript was for printers.
-
We are learning HTML because it provides several useful benefits. It exposes new programmers to certain concepts behind internet technology and it will provide us a way of building webpages to interact with blockchain technology with human readable interfaces. Since HTML is not a programming language, it provides an easy route for people overcome any anxieties they may have working with internet technology to build up their confidence.
-
An HTML tag is a character sequence which acts as an encoding identifier for content so that a browser knows how to display that content within the context of a webpage document.
-
An HTML tagâs structure begins with an enclosing â< >â character into which is placed an identifying set of alphanumeric characters. Each alphanumeric character set identifies the content as being of a particular type. For instance
would identify the content as a paragraph while would identify the content as being a paragraph. Certain types of tags need an accompanying ending tag which mirrors the beginning tag except for the inclusion of a â/â symbol in front of the alphanumeric character set like
which is the ending tag for a paragraph element. -
An attribute is extra information about the content that a webpage designer does not wish to include within the content. An attribute can be used also to identify all content blocks within a webpage which should be displayed with a certain style format. Also, attribute tags provide a means for testing tools as well as content scraping bots to target particular areas within a webpage.
-
On a high level an HTML document begins with a HTML document type preamble identifying the document as an HTML document. The so called root element is the html tag pair which encompasses the remainder of the document. Within the html tag pair the document is divided by two enclosed sections- the section delineated by the head tags and the section delineated by the body section. Within the section marked by the encompassing head tags, elements which include content character set, CSS style information, as well as the title of the webpage are included. In short, non-content information about the webpage encoded within particular elements are placed within the head section of an HTML document. In a similar fashion the body of the HTML document includes all the content of the webpage. That includes text, lists, images, as well as links to other multimedia content.
1-html is a markup language HTML stand for hyperText Markup Language
2-html used to tell the browser what to show in the web page
3-we learning html to represent information to the user and allow him to interact with the page
4-html tag is way to represent element withen an web page
5-the structure content
6-an atribute is parameter added to the html tag to provide more information about the tag
7-starts always with <!doctype html> and end with and we find between others tags
hi Kamelsf sorry for bothering, I also taking the course and I have a background in computer science Iâm 4th computer science student , I want to emprove my english
if youâre interested I trade you my knowledge with english
thank you
Hi mahdi, you not bothering me at all, sure i can help you if you need any help. I saw your post, your english looks good so far. My native language is french. My english is not perfect either. Let me know if I can help in any way. Whatâs your native language ? Welcome to the academy brother
Hello,
-
HTML is the acronym for hypertext markup language.
-
HTML is used to arrange text or elements within a static web page.
-
HTML goes in pair with solidity programming, we might create our own eth token which will need to link up with something visual, such as a webpage.
-
A html tag is used to define and structure text within the page. the text will react differently depending on its tag, becoming hyperlinked or whatnot.
-
The html tag has the opening tag, the content, and the closing tag. all of these compose the element.
-
An attribute is a comment. it allows you to leave notes within the text, without having your notes appear on the webpage.
-
DOCTYPE html> which is required at the beginning of a document.
html> all encompassing the document. needs to be closed at the end of the document.
head> which includes important elements you donât want to appear on the page, for instance search keywords.
metacharsets> the language you want the text to appear,
title> how the page will be called, and how it shall appear on the bookmarks
body> all the content of your page, hypertext, links, picturesâŚ
best,
1. What is HTML?
Hyper Text Markup Language (HTML) is the standard markup language used to display content in a web browser.
2. What is HTML used for?
It is used to structure the design, layout, and presentation of the content of a website including text, fonts, images, colors, video, forms, buttons, links, etc.
3. Why are we learning HTML?
It allows one to get introduced to programming and quickly see results by building a simple website. HTML is also a prerequisite to learning Javascript which is a good first programming language to learn. Javascript will then help you to learn C++ and later Solidity which is the language of smart contracts on the Ethereum network.
4. What is an HTML tag?
It is the code that defines every structure on an HTML page.
5. What is the structure of an HTML tag?
AN HTML tag consist of an opening tag and a closing tag. The tags are wrapped in opening and closing angle brackets. With the closing tag distinguished by a forward slash.
i.e. Opening tag = Content Closing tag = </element name>.
6. What is an attribute?
An attribute is extra information about an element that you donât want to appear in the actual content. Its purpose is to control the elementâs behavior.
7. What is the anatomy of an HTML document?
The anatomy of an HTML document consists of a set of standard elements as follows:
!DOCTYPE html - the set of rules that apply to the HTML
html - the root element that wraps all the content of the entire web page
head - this element is a container for all everything you want to include on the HTML page that isnât the content you are showing to the page viewer
meta charset=âutf-8â - character set your document should use to support most written languages
title - this element sets the title of your page
body - this element contains all the content that show to web page visitors
All the above elements have opening < > and closing tags < / >
1. What is HTML?
HTML stands for Hypertex markup language and is used to edit text on a webpage, basically a text editor that gives form to your webpage including images, videos and can include references links and much more.
.
2. What is HTML used for?
HTML is used for âwritingâ webpages, giving form and organizing the structure of the website.
3. Why are we learning HTML?
it is kind of programming but not⌠and also so we can build a basic website where we can in future implement blockchain technology.
4. What is an HTML tag?
a bracket with an order/indication in it
text
5. What is the structure of an HTML tag?
element </closing tag> this all together is called the element
6. What is an attribute?
an attribute extends or gives more information about an element but will not appear in the content
7. What is the anatomy of an HTML document?
The basic structure, how it should begin, structure and how it should end. with all important information so the browser will no how to read the webpage.
- It is the program used to display basic features such as text and images on websites.
- It is used to structure and design website structure.
- As a foundation so that once we can build a basic site, we can use that knowledge when creating smart contracts.
- When an element starts/ends
- Open and closing angle brackets with a / to close. (< p>) and (</p)
- Extra information about an element that does not appear in content.
- When the various elements combine to create a web page.
-
HTML (hypertext markup language) is the code that is used to structure a web page and its content.
-
HTML is used to format how a web page will look to the users, including text, images, and hyperlinks.
-
We are learning HTML because it will be important to understand how our user facing web pages interact with the blockchain on the back end.
-
Tags are used to make formatting changes to texts, make hyperlinks, and generally are used to interact with and make modifications to text on the web page.
-
HTML tags are structured such that they begin and end elements. For example,
âŚ
. -
An attribute contains extra information about the element that you donât want to appear in the actual content.
-
The anatomy of an HTML document includes:
- The doctype
- The element
- The element
- The element
- The element
- Hypertext Markup language that defines the structure of the content
- its used for displaying content in different ways
- with HTML you can create a website, that could interact with the blockchain
- it gives instructions how the content should be structured or highlighted
- opens with < > and sometimes there is a closing tag </>
- Attributes contain extra information about the element that you donât want to appear in the actual content.
thanks for answering Kamelsf
I speak french too our courses at university taught with french language
my native language is Kabyle
like you see english content is more large then the french one, thatâs why Iâm interested to learn this language to reach more thoughts and cultures
we can take the course together