-
HTML stands for Hyper Text Markup Language. Element that wraps all the content of an entire page
-
HTML is the code that is used to structure a website and it’s content.
-
HTML is the root element. So where it all begins. To get a better knowledge of smart contract and writing different code u need to know the basics.
-
A tag is used for where a element starts and ends.
-
U can can add all kinds of additional information to the element inside a tag
-
That contains additional information of the element that you don’t want to see on the actual content.
-
the doctype
HTML element
head element
title element
body element
- What is HTML?
it is a markup language that defines the structure of your content - What is HTML used for?
HTML is used for building website that contains simple txt, images, and links. - Why are we learning HTML?
Without understanding HTML codes, we will never be able to understand even the basic of how a website work and made. If we don’t understand how they work, how can we even be able to learn how to program with blockchain? - What is an HTML tag?
A tag lets the website to understand what you want to display or execute on the website. - What is the structure of an HTML tag?
It usually starts with an opening tag-content-closing tag, this whole thing is an element. Things can be added in the element such as empty elements, nesting elements, or list. - What is an attribute?
AN attribute is when you don’t want a certain information to be shown in the actual content. - What is the anatomy of an HTML document?
It usually starts with an opening tag-content-closing tag, this whole thing is an element. Things can be added in the element such as empty elements, nesting elements, or list.
-
HTML, standing for “HyperText Markup Language” is a language used to structure a web page.
-
HTML is used in order to provide a universal format / structure of a web page.
-
We are learning HTML to provide a Front-End structure to interact with a Back-End of a program
-
A HTML tag is used to instruct the browser of the content & type of content
-
The structure of a HTML tag consists of an element (using open and close tags) & content (clickable / interactive / viewable information)
-
An Attribute is extra information that is not displayed as content
-
The Anatomy of a HTML document consists basically of an Opening & a Closing tag, which instructs the browser what to do with the embedded info. plus the content / info. I.E: (but without spaces)
< html> - Wraps entire document
< head> - Things included in page, but Not displayed as content
< title> - The title of page, appearing in browser
< body> - All content intended to be viewed in page
Hi @KingArt!
…and welcome to the course!
Your answers are mostly OK
Q7 is especially good
Yes…and more specifically, the opening and closing tags enclose (wrap around) a specific piece of content , marking it up to be displayed, or behave, according to the type of element assigned to it.
We need more detail here e.g.
<elementName>The content</elementName>
Hi @Fati!
…and welcome to the course!
Nice answers
Could you try resubmitting Q7…you seem to have had a problem adding your image. Instead, try adding the actual tags (formatted as code, using the </>
icon in the menu of this forum’s text editor).
Hi @Hermann!
…and welcome to the course!
Nice answers
Take a look at this post for a more detailed approach to this question about the anatomy of an HTML document.
Hi @vandenBosch!
…and welcome to the course!
Nice answers
Just to add a bit more detail to a couple of them…
HTML tag structure:
<elementName>The content</elementName>
Take a look at this post for a more detailed approach to this question about the anatomy of an HTML document.
Hi @Cashflow101,
Your answers are mostly OK
Just to add to a couple of them…
5. What is the structure of an HTML tag?
<elementName>The content</elementName>
7. What is the anatomy of an HTML document
Take a look at this post about how to approach this question.
Hi @sharpest!
…and welcome to the course!
Nice answers
Just one small observation…
I think you meant to say:
<head>
…but NOT directly displayed as content on the page for users to see and read.
-
What is HTML?
Hyper Text Mark up Language. -
What is HTML used for?
Defines the structure. It is the code used to structure a web page and content. -
Why are we learning HTML?
To be able to understand and structure a website or app. This will be the front end of our projects. -
What is an HTML tag?
Tags make images or text performe a certain way. -
What is the structure of an HTML tag?
opening tag at the beginning and closing tag at the end. the element will be named too. -
What is an attribute?
An attribute is something that can be added to an element, extra info that can not be seen. It consists of two parts a name and a value. -
What is the anatomy of an HTML document?
The anatomy consists of several elements.
a required element at the beginning that sets the rules
this wraps the entire content of the page. Root element. contains info on the page viewers do not see. keywords, page description, character set... this element is included in header. Standard character set Sets the title of the page. this is displayed on the tab. Description for bookmarks. This is the content to be displayed for users. text, pics, video, games, audio... should look something like this:1
2
3
4
5
6
7
8 body content
9
10
OK my answer is not displaying in it’s entirety. Must be using the tags does not display.
Darn it I was so proud!
Hi Jon, will do. Thank you for the feedback!
-
What is HTML?
HTML is a markup language, to structure the content of a website. -
What is HTML used for?
With HTML you can determine, how the content of a website appears to the user. -
Why are we learning HTML?
Because every program needs some kind of front end, for a user friendly communication with the back end. -
What is an HTML tag?
HTML tags define where an element begins (opening tag), ends (closing tag) and what kind of effect it has on the element. -
What is the structure of an HTML tag?
There is an opening tag and a closing tag. Tag must always be closed and must not overlap. -
What is an attribute?
An Attribute is extra content, that is not shown to the user. -
What is the anatomy of an HTML document?
- the doctype
- the root element (wraps the whole content)
- the head element (content that is not shown to the user)
- character set element
- title element (title of the page)
- body element (content that is shown to the user)
- What is HTML?
- What is HTML used for?
- Why are we learning HTML?
- What is an HTML tag?
- What is the structure of an HTML tag?
- What is an attribute?
- What is the anatomy of an HTML document?
- HTML is not a programming language but instead a markup language. HTML = Hypertext Markup Language.
- HTML is used to define the structure of a document by using a series of elements to make content appear a certain way.
- We are learning HTML as it allows us to think about things differently, gives us the tools we need to understand what we are seeing when we look at web pages and it provides us with the knowledge base we need in order to develop our own web pages and therefore not be reliant on others as we get deeper into the crypto space - we can contribute directly and independently with new ideas/projects.
- Tags are the beginning and ending markers of an element. They encapsulate the content.
- The structure of an HTML tag is the element name surrounded by opening and closing angle brackets - the closing tag has a forward slash before the element name to indicate the end of the element. < p >This example should not have spaces, but this content will be sent to a new paragraph if I take them out< /p >
like this
- An attribute is basically extra information that you do not want to show up in the main content. The attribute can often be used to give the element an identifier (e.g. ‘class’ attribute) so that you can reference it later for style information, etc.
- Anatomy of an HTML document is the structure in which we use certain elements to define the way the document will be viewed. It always starts with the < !DOCTYPE html > preamble. The html element will start on the next line and will encapsulate the entire document, with the closing html tag at the end of the document. Contained within the html element will be the head element which is where the character set is defined and the title of page would appear, then the body element is used to encapsulate all of the content you wish to display on the page. Within each element, other elements can be used as well but the main elements are html, head, body - the sub level elements that may be used are things like titles, paragraphs ( ‘p’ ), links ( ‘a’ ), nesting elements ( ‘strong’ ), empty elements ( ‘img’ ), etc.
Thank you! Much more clear!
is a markup language and not a programming one.
create things on websites
so we can create web pages connected to the blockchain
is the opening and closing tag of a element and looks like this for example. < p> and < /p>.
they are things that contain extra info that wont appear in the actual content.
<!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 - Hyper text Markup Language is the basic structure of a webpage and its contents.
-
HTML is used to give structure to the content.
-
We are learning HTML to learn the basic of web development so as we have a site that can interact with the blockchain. This is what people will see.
-
A HTML tag is the name of the element and this states when that element starts and ends.
-
The structure of an opening tag is the open and closing angle brackets with the element for a closing bracket this is the same but and forward slash is also used after the open angle bracket but before the element.
-
An attribute is a word within the element that states the elements behavour.
-
The anatomy of an HTML document is :-
- What is HTML?
HTML is a markup language the define the structure of your contents. - What is HTML used for?
It is used to build web contents - Why are we learning HTML?
It is for us to build a front end to interact with smart contract. - What is an HTML tag?
a tag is a note to define the start and end of a section and how it is display. - What is the structure of an HTML tag?
There is Opening tag and closing tag. In between the tag is call element. - What is an attribute?
Attribute contain extra information about the element that don’t show in the content - What is the anatomy of an HTML document?
Start with defining document type follow by header for title and content in the body
Hi @jon_m !
Thanks for the welcome, good to be here! Yes, I did intend to state as above. I’ll ammend my answer though, (and triple-read future responses )
cheers again
-
HTML (Hypertext markup language) it’s a markup language for creating a webpage.
Hypertext: text which contains link to other texts
Markup: language that is designed for the processing, definition and presentation of text, specifying code for formatting, both the layout and style, within a text file. -
It is used to program limited content websites that are to be displayed on the World Wide Web.
-
As a necessary foundation for web and blockchain development.
-
A tag tells the browser what type of content it has to show (HTML) and in what way.
-
Begins with an opening
<tag>
, continues with the content between those tags, and finishes with a closing</tag>
-
An attribute specifies additional properties regarding the content included inside a tag.
-
Always starts with the
<html>
tag, and it has 2 elements:
-
<head>
element with page title and page formatting commands -
<body>
element, which contains all the content. All the open tags of these elements need to match with a closing tag respectively.