-
HTML is a markup language that defines the structure of your content.
-
It is used to structure web page and its contents.
-
To create a front end interface for our smart contract.
-
It’s the instructions to create elements.
-
Starts with an Opening Tag, content and Closing Tag
-
Attributes gives extra information about the elements.
-
DocType, , Head, Body
-
What is HTML?
Hyper Text Markup Language -
What is HTML used for?
To structure the content on a website -
Why are we learning HTML?
To create user friendly and accessible interfaces for using smart contracts on dapp -
What is an HTML tag?
Its to define the structure of the website, e.g. h1 tag is more important than h2 tag therefore it gets bold text. -
What is the structure of an HTML tag?
Always has a start and ending. e.g. < h1 > and closes with < / h1 > -
What is an attribute?
Attributes point to the HTML tags and contain extra information about the element that dont direct appear on the content so you can change the appearence easier with the attribute -
What is the anatomy of an HTML document?
< !DOCTYPE html>
< html>
< head>
< meta charset=“UTF-8”>
< title>The page < /title>
< /head>
< body>
< /body>
-
What is HTML?
Stands for Hypertext Markup Language. -
What is HTML used for?
Its a standard language for displaying text, pictures, videos, links and other media on a website. -
Why are we learning HTML?
Its is the most basic programming for any developer in order to show a description of what you build on a website. -
What is an HTML tag?
Tag are used to isolate contents within any element you create. -
What is the structure of an HTML tag?
An HTML tag consists of a left angle bracket (<), a tag name (such as “h1”) and a right angle bracket (>) . Tags are usually paired so that you have a tag at the beginning and the end of a section of the document (&
for example.) -
What is an attribute?
An HTML attribute is a piece of markup language used to adjust the behavior or display of an HTML element. For example, attributes can be used to change the color, size, or functionality of HTML elements . Attributes are used by including them in an opening HTML tag: <tag_name attribute_name=“value”>Content</tag_name> -
What is the anatomy of an HTML document?
An HTML is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body , which contains the document’s actual content.
-
Hypertext Markup Language. It is a coding language consisting of tags and elements
-
HTML is used to structure and create webpages
-
HTML is the one of the most important languages of Web 2.0. We learn it to understand the basics of simple coding and also to familiarize ourselves with web 2.0 before we move on to web 3.0
-
tags are the bits of code that tell the browser where to place text or images, whether to make a font bigger or smaller, basically they are used to place/alter all things web-page related
-
An HTML tag consists of a letter or word between two arrows such as
. If it is a closing tag it will also contain a forward slash such as
-
An attribute contains extra info about an element of a webpage that is only displayed in the code and not on the page itself. For example you might distinguish a class of text that appears throughout the page as ‘opinions’ or something of the sort and they will be easier to find in the code as they are all distinguished by the ‘opinions’ attribute
-
Opening tags, elements and attributes followed by closing tags. Usually will include
What is HTML? What is it used for?
HTML is the code that is used to “mark up” and format web pages, decribing for web browsers how text and other media will be displayed.
Why are we learning HTML?
JavaScript is used in tandem with html on web pages. Understanding JavaScript probably wouldn’t do much good if someone is entirely clueless about the context in which JavaScript instructions are delivered.
What is an HTML tag?
Tags mark where elements begin and end in an HTML document.
What is the structure of an HTML tag?
It is marked in angle brackets like this: eLeMeNt
What is an attribute?
Attributes provide information about elements that are not visible in the content.
What is the anatomy of an HTML document?
The doctype, the html element, meta character set, title and body.
-
What is HTML?
Hypertext Markup Language -
What is HTML used for?
Structuring the content of a webpage -
Why are we learning HTML?
Creating webpage -
What is an HTML tag?
Angle brackets containing the name of an element, used to define an element -
What is the structure of an HTML tag?
Angle brackets containing the name of an element -
What is an attribute?
Extra information added to an HTML tag for specific purpose -
What is the anatomy of an HTML document?
Doctype
HTML element
head element
title element
body element
- What is HTML? Hyper Text Markup Language
- What is HTML used for? Structuring web pages
- Why are we learning HTML? It is necessary to be able to code
- What is an HTML tag? The opening and closing part of the element
- What is the structure of an HTML tag? A < > with characters in between
- What is an attribute? Extra information that doesn’t appear in the content
- What is the anatomy of an HTML document? Doctype , element wraps all content , element , element, element, element and closing tag
- HTML = hypertext markup language
- it is used to structure a webpage and it s content
- for knowing how to create a web page
- HTML tag can make a word or image hyperlink, bloding words, can make font go bigger etc.
- opening tag ( this state where the element starts to make effect ) and closing tag ( this states where the element ends )
- Attributes contains extra infos about the element that you don t want to appear in the content of the web
7 . < ! DOCTYPE html > is a required preamble
< html > this is the html element that wraps all content on the entire page
< head > is the container of all the stuff you want to include in your html page
< meta charset = " utf - 8" > this element sets your document should use UTF-8 which includes most characters from the vast majority of written languages
< title > My test page < / title > is the title element
< / head >
< body > contains what you want to show for the web users when they visit your page
< img src = " images/ firefox - icon . png " alt = " My test image " > this is the image element. SRC= source. ALT = alternative attribute which allows you to describe the image for user who can t see the image because of various reasons
< / body >
< / html >
-
What is HTML?
Hyper Text Markup Language (at least I know I got this one right) -
What is HTML used for?
It makes the structure for the webpage. -
Why are we learning HTML?
Probably beause the structure is an intergral part to any web coding -
What is an HTML tag?
This is what wraps the element. Its at the beginning and end of the element. -
What is the structure of an HTML tag?
A left angle bracket, a name, and a right angle bracket. -
What is an attribute?
Attributes contain extra information about the element that you don’t want visible. -
What is the anatomy of an HTML document?
Opening tag, content, then closing tag
Hypertext Markup Language
To display information on a web page.
We will be creating web pages when learning to code.
It is markup used to specify the parts of an html page.
HTML tags start with a bracket "<" and end with a closing bracket ">" In between the brackets is some text. Most html tags consist of an opening tag and a closing tag which has ends with a /. Text is written between these two tags.
An attribute gives some information about the tag. For example, an image tag could have an alt attribute which would give some text that will be displayed if the image itself does not display.
An html document consists of a !Doctype html tag, an html tag, a head tag which includes meta tag(s), and a body tag.
What is HTML?
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
What is HTML used for?
HTML is the foundational language that all web pages use
Why are we learning HTML?
HTML is the foundation of the web. If we build on the web, we should learn the code.
What is an HTML tag?
Tags have multiple uses such as chainging the style of text font or creating hyperlinks to other sites.
What is the structure of an HTML tag?
An opening tag and then content in the middle and then a closing tag afterwards.
What is an attribute?
An attribute is extra information about an element that you do not want to appear in the actual content.
What is the anatomy of an HTML document?
doctype - required so the document behaves correctly. element - wraps all the content on the entire page (root element). element - acts as a container for adding keywords and a page description that isn't shown to the page viewers. element - sets the character set the document should use. element - sets the title of the page, shown in the browser tab and bookmarks. element - contains all of the content that the web users will see such as text, images, videos, audio, etc...- HTML is a markup language that defines the structure of web content.
- HTML is used to structure a web page and its content.
- To get a basic understanding of how HTML works to make the transition to coding DAPPs easier.
- HTML tags are the main parts of an element that can the content’s appearance.
- The structure of HTML tags consist of an opening tag, closing tag, the content, and the element.
- An attribute contains extra information about the element that you don’t want to appear in the actual content.
- The anatomy of an HTML document consist of:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
What is HTML?
HTML is a specific program language that consists of a series of elements which are encapsulated in different tags. These Tags make these elements look and act in specific ways.
What is HTML used for? HTML is commonly used for web pages Why are we learning HTML? To understand the basis and logic behind programming What is an HTML tag? A HTML tag is what gives the content inside HTML a specific function or look. For example, you can create texts or paragraphs with text depending on the tag you put on them. What is the structure of an HTML tag? A tag is conpoused in a opening tag, closing tag, and the content inside of it What is an attribute? An specific description inside a tag What is the anatomy of an HTML document?
1:Indicates the computer that the code is a HTML document
2:Indicates that the HTML document is in language:English. The tag needs to be open and close.
3: — the 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.
4: — This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages.
7:This will be displayed on the page as the title of it .
9:Body is everything the page will display to the eye of the user.
-
What is HTML?
Stands for Hypertext Markup Language, used to provide structure for the contents of a web page. -
What is HTML used for?
Used for structuring contents such as paragraphs, titles, list, image, hyperlink reference. -
Why are we learning HTML?
This helps us in creating our web-based applications. -
What is an HTML tag?
A markup to determine which part the content is (making up an element) in the bigger part of the whole document. -
What is the structure of an HTML tag?
for opening and then we need to close with -
What is an attribute?
Attribute provides extra information about the element -
What is the anatomy of an HTML document?
It has
then followed by nested elements within the root
within it it has the titles, character sets, and body of the page.
- HTML is a Hypertext Markup Language and not a programming language.
- HTML is used to structure a web page.
- We’re learning HTML in order to structure our web page and place contents appropriately.
- Tags are used to open and close contents.
- Opening and closing.
- An attribute contains information about the element. An attribute can structure the content in a specific manner.
- This is the basic structure:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
What is HTML?
HTML stands for hypertext markup language and is a language used to define instructions to a web browser to display and format content.
What is HTML used for?
HTML is used for creating web pages which can be read by a browser, displayed and formatted accordingly.
Why are we learning HTML?
We are learning HTML as we will need it to build web applications for the purposes of writing crypto applications that are web based (such as dapps interfaces).
What is an HTML tag?
A tag can either be an opening tag or a closing tag and it is used to define the start and end of an element. An element represents, most typically an item in HTML that is visible on the web page.
What is the structure of an HTML tag?
An opening tag starts with ‘<’, followed by the tag name and ending with ‘>’. A closing tag is similar with the exception that it starts with ‘</’.
What is an attribute?
An attribute defines properties specific to an element and consists of a key and value pair with the value ideally enclosed in ‘"’.
What is the anatomy of an HTML document?
An HTML document consists of just elements. These are the basic elements needed for an HTML document.
<doctype html>
<html>
<head>
<title>Document title</title>
<meta charset=“utf-8”>
</head>
<body>
<h1>Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
What is HTML?
HTML (Hypertext Markup Language) is a markup language that defines the structure of a webpage. It contains a set of paragraphs that are listed in bullet points images or data tables.
What is HTML used for?
It is used to structure the contents of a webpage.
Why are we learning HTML?
To help us understand the structure of a smart contract with front-end development.
What is an HTML tag?
A tag is used to create an element of a webpage.
What is the structure of an HTML tag?
The structure of an HTML tag is the opening tag, the content, and the closing tag.
What is an attribute?
An attribute is an extra information that does not appear in the content.
What is the anatomy of an HTML document?
DocType, , Head, Body
1.HTML stands for Hyper Text Markup Language.
2.It is a standart for displaying text, pictures, videos, and medio on websites.
3.To understand better the structure of a smart contract.
4.Determines the content that is being displayed.
5.Tags begin < and end with/>
6.It adds information to an element.
7.
- paragraph
-
What is HTML?
HTML is the markup language that defines the structure of your content. -
What is HTML used for?
HTML is used to structure a webpage and its content. -
Why are we learning HTML?
Having a basic understanding of HTML is essential for building any web applications. -
What is an HTML tag?
A tag is used for creating an element. -
What is the structure of an HTML tag?
< p>(opening tag) Content goes here… < /p >(closing tag)
get rid of the spaces next to the p’s . -
What is an attribute?
Attributes contain extra information about the element that you dont want to actually appear in the content. -
What is the anatomy of an HTML document?
WITHOUT THE SPACE AFTER EACH <
< !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< title> < / title>
< /head>
< body>
< /body >
< /html>
HTML Basics
What is HTML?
HTML (HyperText Markup Language) is the code that is used to structure a web page and it’s content. It defines the structure of your content. HTML consists of a series of elements, these elements make the content appear a certain way.
What is it used for?
To allow you to control how your text is presented on a web page. It does this by marking up normal English into hypertext.
Why are we learning HTML?
We need it in order to use a program such as Visual Studio Code in creating a DEX
What is a tag?
A tag is a tag name surrounded by < and > brackets. This tells the browser anything within these tags are to be styled in a certain way.
What is the structure of a tag?
Normally consist of an opening and closing tag. Example is
and
this denoted to the browser that anything within this tag will be treated in a particular way.What is an attribute
Attributes contain extra information about the element that you don’t want to appear in the actual content. An attribute can allow you to give the element a non-unique identifier that can be used to target it with style information and other things.
Anatomy of an HTML document
Essentially the combination of individual elements to form an entire HTML page. The format looks like this.
My test page