- HTML is NOT a programming language, HyperText Markup Language - defining the structure of website content.
- HTML can be used to manipulate content to look a certain way, using elements to enclose or wrap certain parts of the content.
- Being able to learn HTML means we can apply our skills on front end development as well as backend development building websites/landing pages/interfaces for interaction to the applications we build in the future.
- Tags define the element, where it starts, where it takes effect, example < p> < /p> (without spaces in tags brackets) define where the paragraph § begin and end on the page.
- The structure of a tag will contain the attribute
- Attributes contain the information about the element, these are not visible on the public viewed site.
- <!doctype html>
- Jim bob
-
Jim bob
- What is HTML?
Hypertext markup language. - What is HTML used for?
Its s a language to describe e.g. webpages as frontends for the internet to connect the smart contracts we develop with the user. - Why are we learning HTML?
To get a better insight into the background of blockchain technology. - What is an HTML tag?
It is part of a HTML element that actually opens and closes is. It basically describes part of the looks and behavior of the HTML-element - What is the structure of an HTML tag?
It has, as main parts, an opening and a closing tag plus, in between, the content which can also be enclosed in ānesting tagsā. - What is an attribute?
Attributes are part of the opening tags. It consists of a name and a value and can be used as identifier to which one can always be referred to later in the code. - What is the anatomy of an HTML document?
Basically a HTML-Document has an opening and closing tag right at the beginning and the very end of the HTML-file. In between we first find a head element and after that a body element. The head element contains all the information that is not all shown to the user (such as the charset or the page title) whereas the body element on the other side contains exactly that. Even before the opening head tag we find a historical artefact which nobody cares about anymoreand fefers to a set of rules for the HTML page.
- what is Html? HTML is a markup language
- What is HTML used for? It is use to structure the web pages and itās content.
- Why are we learning HTML? Weāre learning it because it acts as an interface to our eos or any other application
- What is an HTML tag? HTML tag wraps the contents or even use to style it. It is used as a tool to put the content into the page
- What is the structure of an HTML tag? There is an opening tag and a closing tag with just the addition of the forward slash to the opening tag
- What is an attribute? An attribute adds an extra information to the elements without showing it in the actual content
- What is the anatomy of an HTML document? HTML document consist of used for all the necessary links contains all the contents of the entire page use to provide styling of the content consist of contents which needs to be displayed
-
HTML = Hypertext Markup Language
-
HTML arranges content for display on a website.
-
So we can put our dApps, smart contracts, whatever, in a usable form on a website.
-
An HTML Tag is a piece of code that is used to give various instructions throughout an HTML document. These instructions include things like where on a website a bit of text appears, bold text, and embedded images.
-
An HTML tag is made up of at least an opening tag (element name in angle brackets) and possibly a closing tag (same but with a forward slash before the element name)
-
An attribute is a way to add additional instructions to a given tag. Things like designating a source file for video/images are done through attributes.
-
The anatomy of an HTML document is how all of the individual elements come together to form a coherent whole. At its most basic, you need the doctype tag on top, and then all the other elements (head, body, title, etc.) are wrapped in the html tags.
What is HTML?
It reads as hypertext markup language.
What is HTML used for?
It is used to structure a web page and its content.
Why are we learning HTML?
To create an interface between user and blockchain.
What is an HTML tag?
Brackets for an element telling how to appear on a webpage.
What is the structure of an HTML tag?
It includes opening tag in angle brackets and closing tag adding a forward slash.
What is an attribute?
Itās information about an element that I donāt want to appear in the actual content.
What is the anatomy of an HTML document?
Itā a set of rules how to combine individual elements in to an entire HTML page.
- Hyper Text Markup Language
- Show and create structure for web pages.
- We need to provide a functional and visible space where a user can interact with program logic.
- An html tag is building block of a web page.
- <tag name attribute(name and value)> tag content </tag name>
- An attribute is an extra property for a tag. This can be many things like providing a way to identify said tag.
- DOCTYPE, html, header, /header, body, /body, /html
1- Hyper Text Markup language is a markup language used for organizing the outline of websites
2- It is used for building websites and their structures. It is standard language for displaying text, pictures, videos, and other media on websites.
3- we are learning it because it is important, regardless of what we are building we want people to be able to a description of what we have built. we can then show em on a website.
4-Tags are used to isolate content within any element you create.
5-Tags begin with a structure of ? and end with a /?, which indicate the entirety of the content in that element.
(? defined as the tag used for that application)
6-Attributes are additional content in elements that are not intended for the user to see. They are used to hold information available to the developer only.
What is HTML?
HTML (Hypertext Markup Language). HTML is not a programming language; it is a markup language that defines the structure of your content.
What is HTML used for?
It is the code that is used to structure a web page and its content.
Why are we learning HTML?
To develop the frontend for the smart contracts we develop.
What is an HTML tag?
The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, and can make font bigger or smaller, and so on. E.g. Paragraph tag =
.
What is the structure of an HTML tag?
The opening tag: This consists of the name of the element (in this case, p), 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
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?
It is how individual elements are combined to form an entire HTML page.
-
What is HTML?
HTML stands for HyperText Markup Language. -
What is HTML used for?
HTML is used to create the static structure of a webpage. -
Why are we learning HTML?
Learning HTML is useful for us in order to be able to create a frontend
web interface to interact with our smart contracts. -
What is an HTML tag?
An HTML tag is there to create elements in the HTML code that themselves define structures (such as hyperlinks, images, paragraphs, etc). -
What is the structure of an HTML tag?
An HTML tag is composed of a bracket containing the name of the element it
represents as well additional attributes:
<nameOfElement attribute1=value1 attribute2=value2 ā¦> -
What is an attribute?
An attribute is used to attach additional information to a tag without this
information appearing in the content of the webpage. -
What is the anatomy of an HTML document?
An HTML document starts with a doctype tag and is followed by an html element which contains the HTML code
of the webpage in a nested structure with elements such as the head of the webpage, its main body, etcā¦
What is HTML?
Hyper text markup language
What is HTML used for?
setting out the structure of webpages
Why are we learning HTML?
dapps are web based
What is an HTML tag?
a tag encloses the content to be displayed with info on how to display it, amongst other properties.
What is the structure of an HTML tag?
< OPEN > </ CLOSE > or for some tags < SELF-CLOSING />
What is an attribute?
a key pair value describing a property of the element.
What is the anatomy of an HTML document?
the structure of your webpage⦠in a basic form like this (but many options available)
Hyper text marking language
It is used for structuring and displaying the content on the web page.
We are learning it so we can design our web page ourselves
HTML tags are 2 types : opening and closing and indicate where it begins and where it finishes to have effect on the content that is wrapped between the tags.
Structure of opening tag - angle brackets enclose the name of the element
Closing tag - angle bracket forward slash name of element then closing angle bracket
Attribute - extra information or an identifier about the element that is not disclosed on the web page.
What is HTML?
HTML is a language interpreted by the browser
What is HTML used for?
Creating web pages
Why are we learning HTML?
To be able to enable user to interact with blockchain smart contract through the web page
What is an HTML tag?
Is a piece of html code which defines the structur of the content
What is the structure of an HTML tag?
Opening tag with attributes, content, closing tag, Opening tag consists of opening bracket name of the tag and the closing bracket. The closing tag looks the same as opening one with the additional slash before the name of the tag
What is an attribute?
Attribute is a tag property wich contain some extra information about the element
What is the anatomy of an HTML document?
HTML document consist of some basic tags that are mandatory for a web page to work like: html body
What is HTML? hypertext mark-up language it's not a programming language
What is HTML used for? structuring elements
Why are we learning HTML? because our contracts might need a front-end
What is an HTML tag? good question errr, it's an element e.g. a paragraph <p> that's the tag for new paragraph
What is the structure of an HTML tag? open and close <p> start the para </p> end the paragraph
What is an attribute? dear oh dear .. ah yes, it's a link! is it? no, the href is the link. is an attribute just extra info? which could be a link but not necessarily.
What is the anatomy of an HTML document?
you have to say that, even though it seems obvious you're talking to a machine
you have to say it again, just so everyone's clear
STUFF ..
STUFF the reading suggests specifiying characters
- What is HTML?
Hypertext Markup Language - What is HTML used for?
Its a protocol used to design the structures of content of a website in order to display certain data in a friendly interface so most people can understand what are they seeing behind theyr monitors. - Why are we learning HTML?
Simple has it, HTML is the backbone structure for every website, its need it in order to know the way the elements of a website has been ordered to. Later we can use another languagues to apply different types of behavior on our websites. - What is an HTML tag?
Can be define has the command or state u want to give to the content of the element. - What is the structure of an HTML tag?
Its begin with the state u want to apply and must be closed in order to know how much content of this element must have this status.
Example:
<title> This is my title! </title>
- What is an attribute?
Can be used to provide extra information of the element and later used to apply custom rules for the element. - What is the anatomy of an HTML document?
<html> <head> <title>This is my title!</title> </head> <body>...</body> </html>
- HTML is Hyper Text Markup Language.
- It is a tool to design a web page or website.
- It is also a user interface for crypto and blockchain industries, that is the reason why we are learning HTML.
- HTML is a markup language to build web page.
- HTML is used in web page coding.
- In smart contract, we need html to build a web interface for the contract.
- &5. HTML tag<></> to enclose or wrap element to show or make it effect in the web page
- extra info that not begin shown in the page
What is HTML?
HTML is a markup language that defines the structure of a web page content.
What is HTML used for?
HTML is used for structure of a web page content.
Why are we learning HTML?
We will create a working website which talks with blockchain.
What is an HTML tag?
Tags are showing name of the element.
What is the structure of an HTML tag?
There are two type of tags, opening and closing tags. Opening tag needs to be used before the content and element name will be wrapped in opening and closing angle brackets. Closing tag need to be used after the content. Closing tag needs to be used after the contend, the structure is same as opening tag except it includes a forward slash before the element name.
What is an attribute?
Attributes is extra information about the element, it does not appear in the actual content.
What is the anatomy of an HTML document?
HTML document is combination of elements. Basically it starts with doctype element, and tag. Then the other elements depends on your web page content, but basically it has head, title, and body tags.
- Hypertext Markup Language
- Used to present date on web
- Blockchain is web 3.0, HTML is front of web
- A part of an element, defines type of element
- You need opening tag, closing tag and content in the middle, and attributes as well if needed
- Is information you donāt want to be displayed but want associated to tag
- Opening and closing tags for , , and and
- HyperText Markup Language is the code that is used to structure a web page and its content.
- HTML is used to programme websites structure and content.
- HTML is a good foundation to build our knowledge and understanding of web development and to build
upon that knowledge to more complex tasks. - A HTML tag defines the START and END of a section.
-
_______________
- An attribute contains extra information about the elements that you donāt want to appear in the actual content.
- ... ...
What is HTML?
HTML is Hypertext Markup Language
What is HTML used for?
It is used for structuring a content which contains a series of elements we use to enclose, or wrap different parts of content.
Why are we learning HTML?
Right now to have some frontend which will showcase our project to the others.
What is an HTML tag?
Itās the beginning or an end of the HTML element.
What is the structure of an HTML tag?
The opening tag, the closing tag, content and element.
What is an attribute?
Basically an extra information about the element that will not show in the website.
What is the anatomy of an HTML document?