- HTML is the code that is used to structure a web page and its content.
- HTML (Hypertext Markup Language) is the standard markup language used to display documents in a web browser.
- To know how to create a web page.
- A set of characters constituting a formatting command for a web page.
- tags typically represent structural information, for example, paragraph styles, anchored frames and tables. These tags and their content are completely ignored during translation and can only appear outside sentences.
- An attribute is a characteristic ie a page element such as font size or color.
- A HTML document is composed of 3 parts 1) a line containing HTML version information, 2) a declarative header section, 3) a body which contains the documents actual content.
-
What is HTML?
(Hyper Text Markup Language) -
What is HTML used for?
A markup language/code used to structure a web page and its content. -
Why are we learning HTML?
Itās the most basic and fundamental language of web pages; the perfect place to start learning. -
What is an HTML tag?
It is code that designates the beginner and end of an element, and surrounds itās content with angle brackets. -
What is the structure of an HTML tag?
Opening tag, content, closing tag - an element. -
What is an attribute?
An attribute is code that contains extra information and commands for an element. -
What is the anatomy of an HTML document?
A very basic anatomy is head & body surrounded by the html element.
Itās a markup language and we use them for reading browser page. We learning them because front-end programming. Tag is a element who can make a word font bigger or smaller or hyperlink image to somewhere else, and so on. Main parts is opening and closing tag and content who comprise the element. Attributes contain extra information about element. HTML document anatomy contains first doctype, second head and then body.
- HTML is a markup language which means it processes data for display
- HTML define the structure of the content and makes it displayable
- HTML is the tool needed to build a front end system
- HTML tag is the root of the document or element
- HTML tag opens <> and closes </>
- Contains extra content that you donāt want to appear in the displayable content
- Opening tag, closing tag, content and element
- What is HTML?
HTML is hyper text markup language (NOT a programming language); basically it provided the fundamental for creating WEB 1.0 a structure for webpage and its content. For example text, set of paragraphs, list of bulleted points, data tables. - What is HTML used for?
HTML consists of series of elements which you use to enclose, wrap, different parts of the content to make it look, act or appear in a certain way. Changing fonts, italicizing words etc. Also known as a type of protocol for webpages and your browser to communicate with each other. - Why are we learning HTML?
In order to learn programming with Javascript we have to dig a bit deeper and understand the fundamentals of how to build a website. This is necessary to connect Backend (smart contract) with the Frontend (website). - What is an HTML tag?
Opening and closing tags define the parameters of an element;<p> ......</p>
- What is the structure of an HTML tag?
It consists of name of the elementangle brackets and p (in this case p) ; stating where element begins and consists of
angle brackets with forward slash; indicating where element ends. - What is an attribute?
attributes do contain additional information about the element which you do not want to appear in actual content. Here class is attribute name and editor note is attribute value. - What is the anatomy of an HTML document?
Head elements providing page title and general formatting commands, also body elements put in main HTML text.
-
What is HTML?
( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its conten -
What is HTML used for?
To build websites. -
Why are we learning HTML?
Because, we need it for front end, and we allways need websites . -
What is an HTML tag?
Define what type of content we have in the website. -
What is the structure of an HTML tag?
Openner,</>
-
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?
That wraps up the basics of individual HTML elements, but they arenāt handy on their own.
Hi @bravelioncrypto, Extremely happy to see your first post on this forum. Hope to see you progress through the courses with zeal and motivation. If any doubts or hiccups, please feel free to reach out to us. We are always here to help.
Happy Learning !
-
What is HTML?
HTML (Hypertext Markup Language) is a markup language that structures a web page and its content. -
What is HTML used for?
To structure a web page and its content. -
Why are we learning HTML?
To be able to build a front end for our dAPP, so that our dAPP can be easily accessible via a GUI to anyone. -
What is an HTML tag?
An HTML tag is used to create an element (which can be data, text, image, etc). -
What is the structure of an HTML tag?
Opening tag:<element>
Closing tag:</element>
Structure of an HTML element: Opening tag - Content - Closing tag -
What is an attribute?
Attributes contain extra info about the element that we donāt want to appear in the actual content.
Attribute structure:
a) a space between the attribute and the element name
b) the attribute name followed by =
c) the attribute value wrapped by " -
What is the anatomy of an HTML document?
<!DOCTYPE html>
a required preamble
<html></html>
this element wraps all the content of the entire page. AKA root element
<head></head>
this element acts as a container for anything you want to include on the page but NOT SHOWN to viewers. Eg keywords for SEO/page description/CSS/character set/ā¦
<meta charset="utf-8">
this element specifies the character set used by your document
<title></title>
this element sets the title of your page (what you see in your tab and bookmarks)
<body></body>
this element contains all the content that you want SHOWN to viewers
1. HTML is a markup language that defines the structure of the content.
2. HTML is used for telling a website how to display text or to embed images.
3. Learning HTML is necessary to format anything that a browser will display from your website. If you can't write HTML, then the browser will just guess on formatting.
4. The tag opens and closes an element.
5. An opening tag begins with the name of the element wrapped in angle brackets. The closing tag puts a forward slash before the name of the element, but is also wrapped in angle brackets.
6. An attribute contains extra information about the element that you don't want to appear in the actual content.
7. The anatomy contains a doctype, html element, head element, character set element, title element, and body element. such as:
Example of a title
Example of a secondary header
example of bold, itallic and bold itallic text
-
What is HTML?
HTML is a markup language used to structure a web page and its content. -
What is HTML used for?
It is used to structure a web page and its content such as title, paragraphs, bullet points, images, and tables. -
Why are we learning HTML?
HTML is the first step of basic programming and it is a basic code to create a browser. -
What is an HTML tag?
A tag is used in order to create an element that might be text, images, paragraphs. -
What is the structure of an HTML tag?
Opening tag <> closing tag </> -
What is an attribute?
An attribute is some extra information about the element that does not appear in the content. -
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>
- Hypertext Markup Language
- HTML is the language that is generally used to structure a web page.
- We are learning HTML to understand the front end and in order to build whatās visible to the public aka the content on top of the blockchain back end.
- A tag can define the character of the content which it encompasses, e.g. words in italic, inclusion of a hyperlink to somewhere else.
- It starts with an < and it ends with an >. The letter(s) define(s) what the visible content is referring to: āimgā stands for an image, āaā is a hyperlink or āpā represents a paragraph and āulā or āolā represent āunorderedā or āorderedā lists. It can also contain an attribute which follow the defining letter(s).
- An attribute contains extra information about the element that you donāt want to appear in the actual content. It appears in a name-value structure as in: name=value.
- It consists of head elements (e.g. title) and body elements (actual main content)
-
What is HTML?
Hypertext markup language -
What is HTML used for?
it is a markup language that defines the structure of your content. -
Why are we learning HTML?
Html gives your content structure an displays things on your web browser according tot the layout youāve coded. -
What is an HTML tag?
tags help format the content of the web browser page. -
What is the structure of an HTML tag?
<>opening tag, element inside </> closing tag -
What is an attribute?
Extra information about the the tag. -
What is the anatomy of an HTML document?
<html>
<head>.....</head>
<body>.......</body>
<img>....</img>
<html>...</html>
HTML is a Hyper Text Markup Language used to help structure a web page
We are learning HTML to create an interface for our smart contracts, and learn the basics to help advance the crypto space and our own personal knowledge base.
A HTML tag is used to identify or place content.
The typical structure is with an opening tag, the ]content, and then a closing tag. Another tag is an empty element which contains no closing tag.
An attribute is extra information that describes an element but does not show on the web page.
The anatomy is:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
- What is HTML? HyperText Markup Language
- What is HTML used for? For configuring the information in way that you want the page viewer to see
- Why are we learning HTML? To make the content recognizable and understandable to viewers
- What is an HTML tag? Its used to define an element
- What is the structure of an HTML tag? open angle and close angle enclosing and element name
- What is an attribute? Gives more information to the element that isnāt necessarily seen.
- 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>
- HTML is a markup language that defines the structure of content
- HTML is used for all web pages enabling proper structure of images and text.
- Learning HTML is an essential step in creating your own content online.
- The content to be displayed on the browser is contained within HTML tags.
- Tags are represented by opening and closing angle brackets that wrap the displayed content within them. The closing tag also has a forward slash to show where the content finishes.
- Attributes contain any information within the elements that you do not want displayed on the web page.
- The anatomy of an HTML document contains:
- Head Elements; all the information about how the page is to be represented that isnāt visible to the viewer
- Body Elements: Consists of all the viewable content e.g. text, images, audio etc.
[quote=āivan, post:1, topic:3055ā]
- What is HTML? HyperText MarkUp Language.
- What is HTML used for? t defines the structure of content on a web page. Web browsers use this to render the page.
- Why are we learning HTML? It is a very useful programming foundation and enables us to create simple user interfaces.
- What is an HTML tag? They are used to create HTML elements which are combined to form the page content.
- What is the structure of an HTML tag? An opening tag with attributes, the web page content followed by a closing tag.
- What is an attribute? Extra info that does not appear in content.
- What is the anatomy of an HTML document? How different types of html elements are combined to create the page content.
-
HTML (hypertext markup language) is a mark up language that defines the structure of the content on a web site.
-
We use HTML to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. Some ways of manipulating the content are bolding it, italicizing it, and hyperlinking text which links to a different page or area of the content.
-
We are learning HTML because it is the foundation of any website. The skeleton which every other aspect of its body is built upon.
-
An 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. -
Structure of a tag (paragraph element example): Starts with an opening tag
then the content right after
then the closing tag at the end to create the whole element. -
Attributes contain extra information about the element that you donāt want to appear in the actual content. Example: <p class=āeditor noteā>My cat is very grumpy
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.
- Anatomy of an HTML document:
-
<!DOCTYPE html>
ā the doctype. It is 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/favourite 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.
1.Hyper Text Markup language is the standard language for web pages
2.The standard markup language for documents designed to be displayed in a web browser
3.I am learning html as a foundation to learn other languages such as java
4.A html tag is the word surrounded used to create html elements such as paragraphs or links
5.The structure of a html tag has a opening tag
and a closing tag
that wraps the contentmy cat is very grumpy
6.an attributes extra bits of information that appear inside the opening tag and their values sit inside quotation" marks"
7.The anatomy of a html document are:the head elements and body elements. the head provides the page title and general formatting commands and the body contains the main html text
-
What is HTML?
It is the front end tool that decides the design of a website. Itās just the visuals and nothing about the backend. Itās a markup language and not a programming language. -
What is HTML used for?
You can modify the frontend to the purpose of the page. Like hyperlinks, italics, bold letters, font size, text colors, etc. You can add images, audios. Lots of things. You are looking at the results of HTML right now. -
Why are we learning HTML?
The frontend is everything when you are trying to get attention. You can use this markup language to give the site variety to keep the users more engaged and hyperlinks, embed videos, embed audios makes the site ore user friendly so the user doesnāt have to type the address or copy paste the relevant address in the adress field -
What is an HTML tag?
A tag is an element inserted to change the layout of the text or make it perform an action -
What is the structure of an HTML tag?
You start with an opening tag ā<ā and close with a closing tag ā>ā -
What is an attribute?
An attribute is an element or a function of a specific part of the tag or the whole tag. It can contain additional information of the given element. - What is the anatomy of an HTML document?
-<!DOCTYPE HTML>
-<HTML>
-<head> </head>
-<meta charset="utf8">
-<title> </title>
-<body> </body>
</html>
- Hyper text Markup language.
a technology that lets you see contents in your browser. - To build a website structure.
- To have a base to connect our dapps with the website.
- A tag denotes the start and end of a section in HTML , like a heading, paragraph, table.
- Opening tag >element>content>closing tag.
- Attributes contain extra information about the element that you donāt want to appear in the actual content.
- doctype,
html
element,head
element, character-setting element,title
element, andbody
element.