1.- HTML is a markup language that defines the structure of your content
2.- It’s used to format the differents parts of the content of a webpage
3.- Because is a friendly way to enter in the programming world
4.- It’s a tag that defines an element (title, list, images, …)
5.- ELEMENT is conformed by …CONTENT… </closing tag>
6.- it’s a unique characteristic inside the opening tag to control the element’s behavior
7.-
< !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< /head>
< body>
< img src=“…” alt=“Some image test” >
< /body >
< /html>
- HTML (Hyper Text Markup Language) is a markup language that defines the structure of your content.
- It is used to make content appear a certain way or act a certain way
- To create a good basic foundation for learning future programming languages
- HTML tags are hidden keywords within a web page that define how your web browser must format and display the content
- A structure of an HTML Tag contains an opening and closing tag of the content
- Attributes contain extra information about the element that you don’t want to appear in the actual content
- < !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< /head>
< body>
< img src=“…” alt=“Some image test” >
< /body >
< /html>
- HTML = Hyper Text Markup Language that defines the structure of your content
- It is the code that is used to structure a web page and its content
- HTML is the basic language for programming static websites. This forms the basis for programming smart contracts.
- This a marking of an element in the HTML language
- opening tag =
closing tag
- Attributes are extra information about the element that you don’t want to appear in the actual content
- Anatomy:
- Doctype
- HTML element
- Head element
- Meta charset
- Title
- Body
-
What is HTML?
HTML stands for HyperText Markup Language. It is the code that is used to structure web pages and their content. So it is more like a markup language than a programming language. -
What is HTML used for?
The series of elements that HTML consists of are used to enclose or wrap different parts of the content text to make it appear or act a certain way, when creating a web page. -
Why are we learning HTML?
We are learning HTML to make any blockchain or smart contract programming we undertake to be able to interact with the web. -
What is an HTML tag?
Every element within HTML needs an opening and closing tag which wrap around the content that the programmer desires to change to act or appear a certain way. -
What is the structure of an HTML tag?
Within an HTML element there will be the opening and closing tags, inside those tags will be the content intended to be changed by the element. Each tag contains name of the element wrapped in opening and closing angle brackets. The closing tag always has a forward slash before the name of the element inside the brackets. -
What is an attribute?
An attribute is additional information given to and sitting inside the opening tag that also enables the element to act and change the content. It comes in the form on an attribute name and then a value of that particular attribute. -
What is the anatomy of an HTML document?
1<!DOCTYPE html>
2<html>
3<head>
4<meta charset="utf-8">
5<title>My test page</title>
6</head>
7 <body>
8<img src="images/firefox-icon.png" alt="My test image">
9</body>
10</html>
- The -doctype html- is a required preamble. They are basically needed to make sure your document behaves correctly
- The -html- works as an opening tag which is the beginning of the entire html element that wraps around all the other elements in the page. Otherwise known as the root element.
- The -head- element is the opening tag for the head element. This acts as a container for all the stuff you want to include on the HTML page that isn’t in the content visable to viewers of the page.
- The -meta charset=“utf-8”- sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages.
- The -title>My test page</title- sets the title of your page, which is the title that appears in the browser tab the page is loaded in.
- -/head- This is the closing tab for the head element
- The -body- element contains all the content that you want to show to web users when they visit your page. This part is the opening tag for that.
- -img src=“images/firefox-icon.png” alt=“My test image”-This is an image element.
- -/body- This is the closing tag for the -body- element.
- -/html- This is the closing tag for the -html- element that wraps around all other elements.
et voila!
-
HTML is a markup language.
-
HTML is used to define the structure of a web site and it’s content.
-
Knowledge of HTML is needed to build websites (the front end) that can interact with smart contracts (the back end).
-
HTML tags are used to tell your web browser how to format and display content on a website.
-
The structure of an HTML tag is, opening tag and opening tag.
-
Attributes contain information about an element that you don’t want to display in the content.
-
The anatomy of an HTML document is the doc type, html, head, meta charset, title, and body.
- What is HTML?
- A code or markup language that stands for Hypertext Mark Up Language
- What is HTML used for?
- It is used to define structure for a webpage and its contents
- Why are we learning HTML?
- It is essential to learn for use in web development
- What is an HTML tag?
- The tags are the markers that denote the opening and closing of an element in a particular section of the HTML
- What is the structure of an HTML tag?
- HTML tags are structured with the use of a pair of opening and closing angle brackets <> for the opening tag and the same with a forward slash in the middle </> for the closing tag
- What is an attribute?
- An attribute is extra information you want to include to describe the element
- What is the anatomy of an HTML document?
- It consists of 6 elements
a.) the required preamble a remnant of early days of programming doesn’t really do anything but necessary for the HTML document to function properly
b.) the root element or html element that is used to wrap the entirety of the content to be found inside the webpage
c.) the head element which acts as the cotainer that includes all the other stuff you want included in the HTML page but aren’t directly shown to the page viewers
d.) the element used to define what character set to be used
e.) the title element which sets the title for your page and is the title that will be shown on tabs
f.) the body element which is composed of all the content that you want to show the page viewers
- What is HTML?
HTML is a language for making simple webpages.
- What is HTML used for?
It is used to make simple web pages and order content on a webpage.
- Why are we learning HTML?
We are learning HTML because it is a good introduction to computer languages and it is also similar to other languages like Javascript that we will eventually learn.
- What is an HTML tag?
A tag is a specific item in the language that tells the computer that a specific kind of element is coming.
- What is the structure of an HTML tag?
A tag has an opening tag and a closing tag. Everything in between these two tags is the content of that element.
- What is an attribute?
An attribute is a piece in the opening tag that acts as a unique identifier for that element. This unique identifier can be targeted by code in a different area of the coding.
- What is the anatomy of an HTML document?
Anatomy is how all the elements need to be organized so that things appear correctly on a webpage. If the ordering is not done properly then the webpage will look weird and won’t work.
1. What is HTML? Is a markup language. It is the structure /layout for the content that will make up the website
2. What is HTML used for? To structure the content.
3. Why are we learning HTML? To understand how to connect blockchain with websites.
4. What is an HTML tag? It consist of the name of the element used.
5. What is the structure of an HTML tag? Opening tag, content, closing tag.
6. What is an attribute? Additional info that does not appear in the actual content. It is specified in the tag.
7. What is the anatomy of an HTML document? Its a group of elements, the document is structured as <html>, <head>,<meta>,<title>,<body>
- Hyper Text Markup Language
- HTML is a Mark up language used to structure web pages and content
- Without HTML we wont be able to make basic sites that integrate our programs
- HTML tags are used for creating elements such as
for paragraph
- open
<?> close </?>
- An attribute is extra info about the element outside of the content
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
1.) HTML or Hypertext Markup Language for long, is the code that gives the internet it’s structure. HTML is a programming language.
2.) HTML gives the internet its graphical structure. It is the building blocks of what we see when we are online instead of using command prompt.
3.) We need a fundamental upstanding of how things work so we can build smart contracts and other blockchain development tools. HTML of the bedrock of the GUI.
4.) the Tag tells the code to start and the end.
5.) A tag has the opening tag which is a “more than” sign and then the content. It closes with a "less than sign which is the closing tag. All of these three things together are called the element.
6.) an attribute has information required but you do not ant to see in the web content.
7.) When we put all of this together we get an anatomy of HTML document with opening and closing tags, content which results in an element. Attributes help when you wan to find content that has been categorized so it can be used later.
1. What is HTML?
HTML is a standard for describing the structure and presentation of information via the Internet.
2. What is HTML used for?
HTML is used to structure a web page and its content.
3. Why are we learning HTML?
We need to learn HTML as a foundation of web development for better understanding the blockchain development.
4. What is an HTML tag?
HTML tag opening/closing tag states where the element begins/ends.
5. What is the structure of an HTML tag?
HTML opening/closing tag consists of the name/forward slash name of the element, wrapped in opening and closing angle brackets.
6. What is an attribute?
Attributes contain extra information about the element that is not to appear in the actual content.
7. What is the anatomy of an HTML document?
Wow! Who knew this is how it worked?
-
HTML is Hypertext Markup Language
-
It is used for structuring a web page and its content
-
We are learning HTML to gain a basic understanding of HTML and its functions
-
An HTML tag is the opening tag and closing tag
-
Less than/greater than angle brackets are the opening tag and less than/greater than symbols or angle brackets for the closing tag. < > and < / >
-
An attribute is information that does not appear in the content. There are two attribute components:1. attribute name (class =) and 2. the attribute value (“editor-note”)
-
The anatomy of an HTML document are the elements that are combined to form an entire HTML page.
- HTML is a mark up language that defines a structure for a web page and its content.
- HTML is used to content (text and images) act to appear a certain way.
- So we can create and edit web pages which will be the store front to the smart contracts we will code.
- A tag is used for creating an element.
- A tag show the start and end of element
- An attribute is information about an element that does not show on the actual web page.
- The anatomy of an HTML is the head and body which are where all the elements are kept.
- What is HTML? Also known as Hypertext Markup Language, HTML is markup language that used to structure static web pages.
- What is HTML used for? Front end web development. HTML is used to structure static webpages and content.
- Why are we learning HTML? To learn the basics of programming that will apply to blockchain development, and to show off our blockchain projects with frontend webpages.
- What is an HTML tag? Tags are used to wrap the content of an element.
- What is the structure of an HTML tag? Content</Closing Tag>
- What is an attribute? Attributes contain additional info that is not visible within the actual content of a website.
- What is the anatomy of an HTML document?
*<!DOCTYPE html>
<html>
<head></head>
<meta charset="utf-8">
<title></title>
<body></body>
</html>*
-
A markup language that defines the structure of your content.
-
HTML is code used for creating static web pages in which the code uses series of elements which you use to enclose, or wrap, different parts of content to appear a certain way.
-
To learn basics of web development so we may tie smart contracts to front end web pages of our own design.
-
HTML tags mark where an element begins and ends. ex.
random content
-
< > = beginning of paragraph content </ > = end of paragraph content.
-
Attributes contain extra info about the element that you don’t want to appear in the actual content.
- My test page
-
What is HTML?
hyper text markup language -
What is HTML used for?
the code that is used to structure a web page and its content. -
Why are we learning HTML?
to be able to write a front end to blockchain -
What is an HTML tag?
The name of the element wrapped in opening and closing angle brackets <> -
What is the structure of an HTML tag?
content -
What is an attribute?
An addition to the tag that specifies the attribute in form of
name=value -
What is the anatomy of an HTML document?
<!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>
- HTML is a markup language that is used to create websites/webpages.
- HTML is used for the structure of a website/webpage.
- We learn HTML to create websites. This way we don’t have to pay someone to create websites for us. Understanding HTML is really important if you want to program javascript.
- A tag in HTML is used to tell the website what type of content is between the open and closing tag and how to show it.
for example,example
tells the website that it should show the user the word “example” using the header “1”. - The start of an tag begins with <> and ends with </> the tag defines the properties of the information in it.
- An attribute is used to further define what a tag should do, for example, if you want to add an image you can do so
where the “src” “width” and “height” is attributes
- An HTML file starts with then then
n.b. I’ve uploaded an image of the answers because only in the end I had noticed that the tags I had put in the text were screwing everything up and impairing reeadability … and I didn’t really want to re-write everything xD
n.b.b. I forgot the tag which assigns the page’s tab name and also the bookmark’s reference text
Your image source is incorrect, maybe you should reupload the image.
If you have any more questions, please let us know so we can help you!
Carlos Z.
-
HTML is “Hypertext Markup Language.” It is a markup language that defines the structure of your content.
-
It is used to structure a web page and it’s content. It 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 to be able to use it with blockchain and crytpocurrency. In our case, we are learning it to program money, smart contracts for example, and many other use cases involving programming and crytpo currency.
-
Tags are opening and closing angle brackets used to enclose content to show where that particular content begins and ends. Failing to use tags properly will result in errors.
-
The structure of an HTML tag consists of:
- opening tag - where element or content begins
- closing tag - where element or content ends
- the content - the actual content used
- the element - the opening tag, closing tag and the content together
-
Attributes contain extra information about the element that you don’t want to appear in the actual content.
- it is a required preamble to your coding wraps all the content on the entire page, also know as root element contains all the stuff you want to include on the html page but not shown to the viewers sets the characters to use UTF-8, including most prog language characters sets the title of your page, appears in the browser tab page all the content that you want to show web users when they visit your page