1.Hyper Text Markup Language
2.Html used for managing content on web pages.
3. Learning html helps to understand how dapps
Works at application layer.
4.html tag is starting and ending point.
5.<></>
6.Attribute is identifier of the html element
7. Anatomy of html document describes how html elements.
- Hypertext mark up language, used to structure a web page and its contents
- HTML is used for creating basic non interactive text websites
- We are learnign HTML because we want to be able to create websites and webpages to display our work and to build interactive sites that are dynamic and eventually interact with the blcokchain
- the tag is the beginning and ending part of an element that uses < > brackets. there are some elements that do not need a closing tag such as
- the structure of a tag is
text that you want
- and attribute is soemthign you can put inside an element that will not appear on the website for your viewer.
- this part is still alittle confusing to me. It seems like the anatomy of an HTML document consist of some basic elements including a header, title, and body
- hypertext markup language which defines the structure of content
- enclose, wrap content to make it appear the way you want
- to be able to build a platform (front-end) where our dapps can communicate to the blockchain
- a tag defines the start and the end of a element
- start of the element, opening tag <?> â> content â> closing tag </!> end of element
- contains special informations about a hidden element.
- html documents always contain 2 elements. 1. head elements provide title and formatting commands 2. body element which puts the html text in.
What is HTML?
It is a markup language (not a programming language) that defines the structure of content. It is composed of a series of elements to enclose parts of the content for the purpose of making it function or look a certain way.
What is HTML used for?
It is used to structure a web page and its content.
Why are we learning HTML?
HTML helps to learn how to build an application that can interract with smart contracts. Backend is the smart contract. Front end can be a web site. Because later, when we have ethereum or NEM dapps, we will have a simple web site that interracts with them.
What is an HTML tag?
The beginning and ending part of an element that defines the type of element and where the content of the element begins and ends.
What is the structure of an HTML tag?
opening tag = where x is the type of tag function
closing tag =
What is an attribute?
Attributes contain extra information about the element that one doesnât want to appear in the actual content. It typically has a ânameâ followed by and â=â sign and a âvalueâ with openingi and closing quote marks wrapped around the value.
What is the anatomy of an HTML document?
a. The doctype - needs to be included at the beginning for everything to work right.
b. - the root element to define the contents of the whole page
c. - the element is a container of all of the stuff that is not to be displayed on the page, but that acts in declaring things, defining what search words are to be used, etc.
d. contains the content that you want to show to web userse (ex images, text, audio, etc)
d. sets the character set to UTF-8. Always use this one, as it contains just about everything.
e. <title< sets the title of the page, including the name shown in the tab and bookmark.
- HTML is a Hyper Text Markup Language and it is a code.
- HTML is used for basic (shape, content and form) building of a webpage.
- To be capable of making a front end in blockchain programming later on.
- HTML tag is a part of an element.
- Structure of a tag is opening tag and closing tag. I cant show how exactly they look because text doesnt appear in a correct/same way I am trying to type it:P:)
- Attribute is a part of an element too, which follows opening tag and affects the content of an element in various ways but does not appear in content itself.
- Anatomy of an HTML document:
!DOCTYPE html
html
head
body
meta charset=âutf-8â
title
*** What is HTML?**
*** What is HTML used for?**
It is the standard language mostly used to define how to structure the content of a web page. It is interpreted and rendered by the browsers. Nowdays, in conjunction with CSS3 and Javascript, can be also used to create apps that target more than one mobile OS .
*** Why are we learning HTML?**
We need it to structure the web pages that will work as user interface to interact with the blockchian.
*** What is an HTML tag?**
It is a reserved word that tells the browser an action to apply to the cointained content.
*** What is the structure of an HTML tag?**
It is enclosed within the following
*** What is an attribute?**
The structure of an element is an Opening tag, content, closing tag.
( </imageâ>)
1. What is HTML?
It is a markup language composed of different elements. It is a static language.
2. What is HTML used for?
HTML is used to give structure and appearance to a web page.
3. Why are we learning HTML?
Because we need to know how a web page is structured in order to build user applications, front-end side.
4. What is an HTML tag?
It is the element name which wraps a content with an specific distinction. Both content and tag composed a HTML element.
5. What is the structure of an HTML tag?
It is composed of an opening and a closing section. Example <tag>
is an opening tag and </tag>
is its corresponding closing tag.
6. What is an attribute?
It is an extra information about the element. It is composed of a name and a value and can be used as an element identifier.
7. What is the anatomy of an HTML document?
It is composed of a doctype <!DOCTYPE html>
, the <html>
element who contains the <head>
element as a wrapper of some keywords, a page description, CSS, character set declarations etc⌠, with the <title>
element of the document and the <body>
with the content for the user interaction.
- Hypertext Markup Language
- Creating the webpage
- So we can create usable webpages
- It tells the browser how to handle the text or images
- Opening Tag - Content - Closing Tage
- Information you donât want to appear as content
- Doctype / Head / Meta /Title / body
- Hypertext markup language
- Marking up text on web pages
- So that we can mark up text on web pages - making our smart contracts user friendly
- The opening and closing part of the element. Tells browser how to display the content.
<tag / </tag>
- An attribute extends a tag, changing its behavior or providing metadata. An attribute always has the form name=value (the attributeâs identifier followed by its associated value)
- Doctype, Root element, Head element (meta tags, title, links and scripts), Body element (page content).
1.HTML is HypertextMarkupLanguage for web setup.
2. HTML is a language for browsers to interpret the content as intended.
3.HTML is important for you to be able to run and show your intentions with dapps. Or just present a webpage without being dependent on other parties.
4.Tags incapsules the elements and when needed can add attributes to them. Like a perimeterâŚ
5. < > opens , then </> closes.
6.Attribute can add to the element certain possibilities to be tweaked in some way or another . Not affecting content.
7.Often a head and a body.Head for such as titles, and format. The body is where it all happens. (looks and functions)
-
What is HTML?
It stands for Hypertext Markup Language -
What is HTML used for?
basic website components. -
Why are we learning HTML?
To grasp the basic structure of a website and to set the way for more concepts that will work on top of the HTML structure. -
What is an HTML tag?
a tag allows different elements to be produced in a web page. Things like font color, type, size, etc. It also assigns certain text to different levels as well as declaring images, its source and description. -
What is the structure of an HTML tag?
It must contain an open command for it to apply and a close command to end it. -
What is an attribute?
This gives further design and identity to a tag. By adding an attribute, you allow yourself to name it and be able to call it at a later time when necessary. -
what is the anatomy of an HTML document?
Heading
Title
Paragraph
body
image
lists
links
-Some can vary in order.
What is HTML? Hypertext Markup Language.
What is HTML used for? HTML is used to create web page and structure its content.
Why are we learning HTML? To create the front-end of our DAPPS and Smart Contracts.
What is an HTML tag? Each element on a HTML document is created with a tag.
What is the structure of an HTML tag? A tag start by the opening tag that consist of the name of the element, wrapped in opening and closing angle brackets. The opening tag also can contain some attributes. The second part of a tag is the content. The last part of a tag is the closing tag, that consist of the same structure of the opening tag, except that it includes a foward slash before the element name.
What is an attribute? Part of opening tag of a element that allow config or add extra information in the element.
What is the anatomy of an HTML document? The document start with doctype element and following element that wraps all the content of the entire page. There are two important elements within the element. The first is the element, that acts as a container for all the stuff that config the HTML page e that you donât want to showing. The second is the element, that contains all the content that you want show to the web users.
-
Hypertext Markup Language
-
To structure a webage & its contents
-
Learn the basics of the language that is used to create and or structure a webpage and itâs contents.
-
HTML tags are included with the element to form a paragraph, sentence or heading.
-
The structure is, opening tags are wrapped in opening and closing brackets
While, closing tags are wrapped in a opening bracket forward slash, then closing bracket.
-
Attribute contains extra information about the element that you donât want to appear in the actual content of the webpage. Similar to a private note or additional information you would want another developer to know or be aware of.
-
The anatomy of HTML are all the individual elements combined to make and or structure a web page.
-
HTML (Hypertext Markup Language) Is the code that is used to structure a web page & its contents.
-
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.
-
We are learning HTML so we can build a websites for the applications & smart contracts we are going to build.
-
In HTML a 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 >
-
The structure of a HTML Tag is Open Tag & Content & Close Tag.
-
An attribute contains extra information about the element that you donât want to appear in the actual content.
-
Anatomy of a HTML document
-
The opening tag. This consists of the name of the element, wrapped in opening & closing angle brackets. This states where the element begins.
-
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.
-
The content. This is the content of the element.
-
The element. The opening tag, closing tag & the content together comprise the element.
What is HTML? hypertext markup language
What is HTML used for? a markup language used to create the structure of a website e.g. paragraphs, bullet points, data tables, images, etc
Why are we learning HTML? We must be able to create a website to interact with a blockchain over the web.
What is an HTML tag? specific characters enclosed by brackets, <>, which wrap elements and make the elements look/act a certain way
What is the structure of an HTML tag? opening tag: <.p>. closing tag: <./p>
What is an attribute? tags may have attributes that contain extra information about the element that you donât want to show up in the content of the element. For example: <.a href=âhttps://www.etc.comâ>My Link would yield blue/underlined âMy Linkâ text which, when clicked, would take the user to the specified link in the attribute âhref.â
What is the anatomy of an HTML document? <.opening tag attribute=âxâ>content</closing tag>. Everything together is called an element.
Read this article (https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics). While reading, try to answer the following questions.:
-
What is HTML? HTML (Hypertext Markup Language)
-
What is HTML used for? Web Development. HTML Markup language defines the structure of your a web page and its content (and is not a programming language).
-
Why are we learning HTML? Two key reasons
First: To build an application that interact with your smart contract; build a small website that interact with the blockchain and to just be able to build things that work.
Second: Learning HTML will help when learning JavaScript. -
What is an HTML tag? In HTML a tag is used for creating an element
-
What is the structure of an HTML tag? Opening TAG
enclosed by content
with Closing TAG -
What is an attribute? Contains Extra information about the element that you donât want to appear in the actual content.
-
What is the anatomy of an HTML document? D
⢠DOCTYPE html â original used to link to a set of rules (no longer used)
⢠- Element that wraps all content on entire page aka the root element
⢠- Element container for all stuff to include on the HTML page; but not content you are showing to your page viewers. This include i.e. keywords and a page description that you want to appear in i.e. search results, CSS to style our content, character set.
⢠- Element used to show all the content you want to show to web users when the visit your page. i.e. Videos, Games, playable audio tracks & other.
⢠This Element sets the character set your document should use to UTF-8; UTF-8 includes most characters from the vast majority of human written languages.
⢠This Element sets the title of your page; this 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.
What is HTML?
A markup language used to interact with primarily with browsers,
What is HTML used for?
Formatting and display of a web page.
Why are we learning HTML?
If you canât build a website, itâs hard to be an effect App/Dapp builder.
What is an HTML tag?
This is a marker that defines where a tag start and ends, it is enclosed in â<â and â>â.
What is the structure of an HTML tag?
Opening and closing of a bracket for a marker.
What is an attribute?
Supplemental information about a tag.
What is the anatomy of an HTML document?
DocTYpe. Various elements for cSS, style, wrapping, display, character set, etc.
HTML stands for Hypertext Markup Language. HTML provides the basic structure for every webpage. It is not a programming language.
We are learning it because it gives the basic structure that a webpage needs, so in case we want to create our own webpage (about any topic we want) we will need HTML.
An HTML tag is how we will indicate what is what in our webpage. Text, links, images, etc. everything has to be labeled in HTML so in can be properly displayed on the screen.
Depending on the tag, there are attributes, which are like the properties of a tag. As you can imagine, text and images are different objects with different properties.
I think the basic structure of an HTML document are the header and the body.
P.S. At first, I wasnât sure about replying this topics because I think everybody got the correct answer, but while writing I realized is not about being right or wrong, it is about the thinking-process involved in the writing because first you have to order your ideas. Besides, as non-english speaker, it is a great exercise to practice my english-writing skill (which definitely I need to put in action).
1. What is HTML?
Hyper Text Mark-up Language is language used for creating webpages. It consists of a series of elements, which you use to enclose (wrap), different parts of the content to make it appear or behave a certain way.
2. What is HTML used for?
It is read by a web browser to structure the web page and its content.
3. Why are we learning HTML?
To allow us to design and create a web page that will be a front-end to our smart contract.
4. What is an HTML tag?
The tag defines where an element starts and ends.
5. What is the structure of an HTML tag?
(opening tag) Contents (closing tag)
6. What is an attribute?
Attributes contain extra information about the element that is used to format the content in the element. The attribute itself is not displayed by the browser, the effect it creates is.
7. What is the anatomy of an HTML document?
Individual elements combined to form an entire HTML page.
The main parts are:
a) The opening tag: This consists of the name of the element (in this case, ( p ) ), wrapped in opening and closing angle brackets. This marks where the element begins or starts to take effect â eg. The ( p ) tag marks the start of a paragraph.
b) The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This is the marking the end of the element â eg. where the end of the paragraph is ( /p ). Failing to include a closing tag is a common beginner error, and can lead to strange results.
c) The content: This is the contents of the element, which in our example is just text.
d) The attribute: Contains the extra information about the element which you donât want to appear in the actual content (it is optional).
e) The HTML element: The combination of the above is the element. It contains the opening tag, plus the closing tag, plus the content, plus attributes (optional), equals the HTML element.
Note: this editor doesnât allow you to use markup tags as content so i replaced the < with a (, etc.
- It is a markup language for the internet HTML - Hypertext Markup Language
- Defines the structure of your content when viewed in a web browser
- To create something simple we can show to our friends and brag about it.
- States where an element begins and ends
- Tag structure = (opening tag) - Content - (close tag)
- Contains extra info about the element, creates an identifier for style info
- Anatomy of an HTML doc
- the doctype
- the html element
- the head element
- the body element
- meta charset=âutf-8â or character set
- the title element