HTML is short for Hypertext Markup Language
-It is used for coding webpages
-Learning HTML is important for alot of reasons! This analogy popped up in my head: Not knowing HTML is like a librarian not knowing how to read^^
-A HTML tag is used to complete elements (<____/>) some inserts for example img source code does not need an end tag
-Attributes contains/adds additional information inside of an element
-HTML HEAD BODY (simplyfied)
-
What is HTML?
Hyper Text Markup Language -
What is HTML used for?
HTML is used as a language to tell a computer what you want a website to look like. Computers will do what you tell them to do, but you will have to use a language the computer understands. -
Why are we learning HTML?
This is like the baby steps to learning code. WE must have a solid foundation of getting used to computer language before we can go on to smart contracts. -
What is an HTML tag?
An HTML tag is something that can make words bold, italicized, or hyperlinked. You can also hyperlink an image. -
What is the structure of an HTML tag?
, content, -
What is an attribute?
This contains information about an element that you do not want a viewer to see on the webpage. I am thinking about the CLASS tag and how it can be used to identify and organize information for a web-designer to have an easier time. if you dont use the CLASS tag⦠your gonna have a bad time insert appropriate south park meme here -
What is the anatomy of an HTML document?
- HTML is a markup language.
2.HTML is used to structure content on web pages.
3.We are learning HTML as the base language to build web pages. Web pages to interact with protocols and make for a nice Gui and user experience.
4.Tags are part of the HTML element. They are placed at the beginning and end of each line and tell the elements how to behave.
5.Tag Structure: <> </>
6.Attributes are parts of the element that contain extra information hidden from the the content of the users.
7.Element contains Tags at beginning and end. In between we have the content.
- What is HTML?
Itās HyperText Markup Language - What is HTML used for?
Itās a code used to structure a web page and its contents, like structuring the paragraph, adding images ⦠- Why are we learning HTML?
Because itās useful to understand how to build a basic website, to eventually use it to integrate with blockchain. - What is an HTML tag?
It gives structure to the text, link, paragraph and headings. - What is the structure of an HTML tag?
Thereās an opening tag and closing tag; opening tag consists of the name of the element like p wrapped with brackets. The closing tag is similar, just thereās a slash forward before the letter /p - What is an attribute?
Itās an extra information that you donāt want to appear in the text. - What is the anatomy of an HTML document?
html
head
title
body
- HTML is the code that is used to structure a web page and its content.
2.HTML is a series of elements which you can use to enclose , or wrap different parts of the content to make it appear a certain way. - To create, understand, and build future projects using HTML language
- Where the element begins to take effect. Begins and ends .
- Begins with a opening tag content ,element, and a closing tab.
- HTML elements can have attributes, provide additional information about an element. Attributes are always specified in the start tag and usually come in name/value pairs like: name=āvalueā.
7.An HTML page always starts with the tag , it has and where all the info needed to the website that wonāt appear as a content
- HTML is a markup language to structure a web page and its content.
- To make websites
- We should be able to build a small website that shows how to connect with the web and that communicate with the backend.
- HTML consists of a series of elements. These elements are wrapped in tags, which denotes how the content of the element should act in the file.
- content
- an attribute contains extra information about the content that you donāt want to appear in the content
<!DOCTYPE html>
<html>
"Here comes all the content"
</html>
- HTML stands for Hypertext Markup Language.
2.It is standard language for displaying information on my screen from the internet.
3.It is important for any developer to learn because regardless of what you are building, you want people to be able to find a description (at the very least) of what you built.
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. Attributes are always specified in the start tag.
7.All HTML documents begin with !DOCTYPE html tag, then follow with the html tag, and a head and body, at the very least.
-
What is HTML?
HTML (Hypertext Markup Language) is a markup language that defines the structure of your content. -
What is HTML used for?
To enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. -
Why are we learning HTML?
To know the basics before we start with programming Javascript. -
What is an HTML tag?
HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content. -
What is the structure of an HTML tag?
Opening Tag: <?>
Closing Tag: </?> -
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?
< html >
< head > < /head >
< body >< /body >
< /html >
1 hypertext mark up language, the coding language for websites
-
Used to create simple websites
-
Itās the front end of product that we create. itās what the user will see and interact with and how they will most likely interact with our smart contracts
-
a html tag specifies how an element ( text, image, links) will appear
-
html tag consists of
opening tag
attribute
element
closing tag -
an attribute allows extra information to be assigned to an element. it could be descriptive or could have an extra function such as the class attribute, that assigns a value to the element that allows it to be targeted.
-
idoctype
for number 7, for some reason it cut of the html, head, meta, charset, title, body,
- Hypertext markup language
- HTML tells the computer how a webpage should be displayed to viewers.
- HTML is an important building block for blockchain because having a good looking user interface will help get more user involvement and volume to a blockchain. These user interfaces are webpages written using HTML.
- A tag is put into the HTML code around some information that will be displayed on the webpage and it assigns certain characteristics to the info enclosed in it.
- the opening tag is preceded by a less than symbol (<) then followed by a greater than symbol (>) and the closing tag is formatted the same except for it is preceded by a less than symbol and a forward slash (</).
- An attribute is a reference contained within the opening tag that assigns a class to that HTML element. The class can be called somewhere else in the HTML document to assign certain characteristics to any element with that class.
- The doctype, the head which contains the title and style attributes, the body which contains elements like h1 headers and p paragraphs that are shown on the webpage. and an optional element footer which can contain links or disclaimers to be displayed at the bottom of the webpage.
- HTML is a markup language and protocol that defines the structure of the content of your site
- HTML is used for enclosing and wrapping different parts of content to make it appear in a certain way
- We are learning HTML as a foundation from which to build on so later we can easily interact/identify other code/languages of smart contracts
- HTML tag: opening or closing, stating where an element begins and ends
- An attribute specifies additional properties not seen in actual content
- Anatomy of HTLM is as follows:
doctype: a required preamble
html element: element wrapping all text
head element: container for everything that isnāt viewable on page
character set: character set to UTF-8
title element: title of page
body element: contains all content to be viewable
What HTML?
HTML is Hypertext Markup Language .
What is HTML used for?
To provide the structure of the website.
Why are we learning HTML?
So then we can create websites for our Dappās to run off from.
What is an HTML tag?
It is the name of any element you are using.
What is the structure of an HTML tag?
Ex:
What is an attribute?
An attribute is the characteristics of an element.
What is the anatomy of an HTML document?
-
Hypertext markup language / not a programming language but a markup language
-
Every website one sees on the internet is written in HTML code ans is actually an HTML file. HTML code is used to build websites and enables proper formatting of text/images/content so that the browser can display this content as intended.
-
enables us to build simple websites and/or landing pages and gives us more flexibility than i.e. wordpress.
enables us to create UIs for smart contracts and blockchains -
Tags are keywords hidden within a web page that tell the web browser how to format and display your content and creates the basic structure of the HTML file/ website.
-
There is always an opening tag and generally a closing tag
< keyword attribute > CONTENT </ keyword >
-
An attribute allows to customize tags / often are asigned a value with ā=ā sign.
7.
Javascript styles classes title metatags contentWhat is HTML? A markup language for the front end of your website/app
What is HTML used for? To tell a web browser how to interpret the information in the HTML-document
Why are we learning HTML? To be able to āprogramā the front end (āGUIā) part of an website/app
What is an HTML tag? A tag wrapping the whole webpage, starting and ending
What is the structure of an HTML tag? Start tag, element, attribut, closing tag
What is an attribute? Extra info about the element
What is the anatomy of an HTML document?
<html>
<head>
info not seen
</head>
<body>
info seen
</body>
</html>
- HTML is Hypertext Markup Language
- HTML is used to structure webpages
3.Learning HTML will help with front end development and is a good starting point to learn to code. - An HTML tag is the convention for opening and closing elements.
- It opens with āā and closes with āā x=element
- Attributes are used hold extra information about an element, they are used to create things like check boxes, radio buttons, etc.
- HTML minimum anatomy:
You can use the āPreformatted Textā Button to encapsulate any kind of code you want to show.
function formatText(){
let words = āIām a preformatted Text box, Please use me wisely!ā
}
Carlos Z.
What is HTML?
HTML is a markup language(HyperText Markup Language)
What is HTML used for?
Gives basic text functions/visual effects.
Why are we learning HTML?
As an introduction to learning javascript.
What is an HTML tag?
An HTML Tag is the part of an element that shows where the element begins and ends.
What is the structure of an HTML tag?
HTML tag structure is the opening /closing angle brackets encasing the tag variable(s) which also includes the tag variable.
What is an attribute?
An attribute is the part of the HTML element that 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?
The anatomy of an HTML document is the element and all of itās included parts.
opening tag,
closing tag,
the content,
the element itself.
-
What is HTML?
Its 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 webpage -
Why are we learning HTML?
To develop āfront endā and / or static websites. -
What is an HTML tag?
It is what describes the element that encloses the content -
What is the structure of an HTML tag?
opening tag followed by content followed by closing tag -
What is an attribute?
it is something that contains extra information about the element but wonāt appear in the content -
What is the anatomy of an HTML document?
It contains the document type, root element and content (headers titles etc.)