-
What is HTML?
A markup language (Hypertext Markup Language) that translates code into a basic website. -
What is HTML used for?
To create a static website, though there are tags/elements that allow you to add dynamic content, such as gifs and video content. -
Why are we learning HTML?
To understand the basic construction elements of a webpage and be able to create such a page. -
What is an HTML tag?
An HTML tag is an element of the page code that contains and translates more descriptive data. -
What is the structure of an HTML tag?
Beginning and ending or opening and closing markers, which can contain attributes, with content inside those markers (i.e. - paragraph opening and closing marker). -
What is an attribute?
An attribute is a descriptive detail pertaining to or altering the content of an element.
(i.e. - a href=âhttp:\www.hello.comâ>Link to Hello.com /a)
NOTE - leaving out brackets, as they alter the appearance of the answer to actual HTML code. -
What is the anatomy of an HTML document?
Elements:
!DOCTYPE element
html /html element
head /head element
meta charset=âutf-8â /meta element
title /title element
body /body element
-
HTML (Hypertext Markup Language) is a static coding language that defines the structure of your content.
-
To create a set of paragraphs, a list of bulletin points, or using images and data tables known as elements.
-
To understand the basics of coding and get familiar with the structure of coding.
-
A tag is used for creating an element.
-
Opening tag - Content - Closing tag = content
-
Quoted or unquoted name and value that refers to information about the element that you donât want to appear in the actual content.
!DOCTYPE html
html
head
meta charset=âutf-8â
title
head
body
img src
alt
body
html
- Hyper text Markup Language is the code that is used to structure a web page and itâs content.
- Making web pages
- to understand front end applications. Front end ( web/Dapps) will interact with back end(Blockchain) so we must understand front end first.
- The start of finish of a line of code.
- It is the start and closing of a line of code. Opening tag
<p> , Closing tag </p>
6.Attributes contain extra information about the element that you donât want to appear in the actual content. - The combination of elements to form an entire HTML page
- Hypertext Markup language
- Used to summaries information on the website, properly
- To ensure we got the basics to go further with the programming in other languages
- A tag defines different part of the HTML document
- <?> <?/>
- Attributes stores extra info about the element thatâs not visible in the actual content.
- The way to build up the site.
-
Hypertext Markup Language - Code
-
HTML is code used to structure a webpage - content
-
In order to incorporate (front/end) with blockchains applications/development
-
Open/Close identifies where an âelementâ takes effect
-
Open Tag - Content - Close Tag - Entire structure is the Element
-
Contains extra info of the Element that does not appear visible
-
HTML - HEAD - META - TITLE/TITLE - HEAD - BODY/BODY - HTML
- Hypertext Markup Language
- Structure a web page and its content.
- To be able to create a website that can interact with the blockchain/smart contracts.
- A tag is used to create an element.
- <?>content (this line of code is the Element)
- Contain extra information about the element that you donât want to appear in the content.
- html - head - meta - title - body
- What is HTML? Hypertext Markup Language
- What is HTML used for? Code used to structure a webpage and its content
- Why are we learning HTML? So we understand how to construct a web front end that can interact with a back end smart contract
- What is an HTML tag? Contains the name of an element which is genereally a function that changes the content, which could be text in some way. Overall the tags and the content is called an element
- What is the structure of an HTML tag? Open angle bracket, name of element, then closing angle bracket
- What is an attribute? Attributes contain extra information about the element, which wonât appear in the actual content. Basically the it gives contentn a non-unique identifier which can be used to target it for other reasons.
What is the anatomy of an HTML document? is required preamble, element wraps all content on the entire page, sometimes called the root element. this element contains all stugg yo want to include that isnt the content you are showing page viewers, like keywords or page description. , <meta charset="utf-8> sets the character set you web page uses, element sets the title of your page, element is the content of your web page including tex, images, vids.
1. What is HTML?
HTML stands for Hypertext Markup Language. It is the skeleton of our web application and used to structure a web page and its content. It consists of a series of elements, that label pieces of content, that tell the browser how to display the content.
2. What is HTML used for?
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.
3. Why are we learning HTML?
To be able to build web applications and front end GUIâs that our backend, like smart contracts, can communicate with.
4. What is an HTML tag?
The < html > tag represents the root of an HTML document. The < html > tag is the container for all other HTML elements (except for the <! ).
5. What is the structure of an HTML tag?
An opening and closing tag < > </ > with the word html inside both. The html element wraps all the content on the entire page, the root element.
6. What is an attribute?
All HTML elements can have attributes. Attributes provide additional information about elements. Attributes are always specified in the start tag and usually come in name/value pairs like : name=âvalueâ
7. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>Project Title</title>
<head>
<body>
<!-- Project content -->
</body>
</html>
-
What is HTML?
= HTML ( Hyper text Markup Language) is the code that is used to structure a web page and its content. -
What is HTML used for?
= Used to structure a web page and its contents. -
Why are we learning HTML?
=To develop front end of Web1.0, as we move towards web2.0 and web3.0 to create dapps. -
What is an HTML tag?
= It defines areas and sections. -
What is the structure of an HTML tag?
<body>
</body>
-
What is an attribute?
= Attribute is the info available for the editor which wont be displayed to the user. -
What is the anatomy of an HTML document?
These individual elements when combined together in a particular sequence form the anatomy of the HTML document.
What is HTML?
is the code that is used to structure a web page and its content.
What is HTML used for?
is used to create electronic documents (called pages) that are displayed on the World Wide Web.
Why are we learning HTML?
to have a previous knowledge because it is a language to create websites and then we will move on to javascript.
What is an HTML tag?
An HTML tag is commonly defined as a set of characters constituting a formatted command for a Web page and tags provide the directions for the visual content that one sees on the Web.
What is the structure of an HTML tag?
HTML structure includes specific open and close, the content, the element.
What is an attribute?
is aditional inforamtion about the tag or elements.
What is the anatomy of an HTML document?
My test page- What is HTML?
html is a language that defines the structure of your content - What is HTML used for?
It is used to make your content appear in a certain way. - Why are we learning HTML?
Because we need to learn the basics of web development first - What is an HTML tag?
strong text - What is the structure of an HTML tag?
Opening tag / content / closing tag - What is an attribute?
Itâs information that wonât appear in the actual content - 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>
-
What is HTML?
Itâs code languaje âHyper text Markup Languageâ -
What is HTML used for?
Itâs used to struture a web page and its content -
Why are we learning HTML?
We learning it because itâs basic to understand programing languaje and create websites -
What is an HTML tag?
A tag is used to create an element you can per example view in the website you are creating, inside a tag you can create attributes for each tag. -
What is the structure of an HTML tag?
In a tag you can find opening tag <>, attributes ="", and closing tag /<> -
What is an attribute?
Attribute is extra information about the element inside a tag - 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>
-
What is HTML? HTML is a basic computer language that is used for organizing and consists if a series of elements such as you can enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
-
What is HTML used for? HTML is a main building block of building a web page and all of its contents.
-
Why are we learning HTML? HTML will help to build smart contracts and interact with smart contracts.
-
What is an HTML tag? HTML tag is the elements of structure the core of HTML, tags provide the directions or recipes for the visual content that one sees on the Web.
-
What is the structure of an HTML tag?
The structure of an HTML Tag is a âContainerâ for other elements of the web page structure and content <> -
What is an attribute? Attributes contain extra information about the element, that you donât want to appear in the content, or any additional information about the element.
-
What is the anatomy of an HTML document? HTML should include <HTML, Head, Title, Body.
- What is HTML?
- Hypertext Markup Language
-
What is HTML used for?
Web page protocal to display information from internet -
Why are we learning HTML?
To create web pages -
What is an HTML tag?
Makes the browser recognise the content -
What is the structure of an HTML tag?
, attribute inside and finishes with a closing -
What is an attribute?
specifies some additional properties regarding the content included inside a tag. -
What is the anatomy of an HTML document?
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 (title, descriptions, seo, scripts and so on), and finally the where all the content lies. All these tags need to be closed
-
What is HTML?
Hypertext Markup Language that defines the structure of your content on a web page browser -
What is HTML used for?
HTML is used to to enclose, or wrap different parts of content to make it appear a certain way or even act a certain way so a particular web page appears and functions as it is intended to do -
Why are we learning HTML?
As HTML is the foundation of web pages and browsers and it is essential that we learn how this works so we can code our own web page that will define our smart contracts protocol and make it accessible to everyone. -
What is an HTML tag?
A tag is part of an element which specifies what, where and how the content will appear on a web site. -
What is the structure of an HTML tag?
The basic Structure of a tag in HTML language is to identify parts of the document and to ensure to behave in a certain way, for example, if you want the content of an element to be on a new paragraph it would consist of an opening tag and closing tag -
What is an attribute?
An attribute contains extra information about am element that you do not want to appear in the actual content. -
What is the anatomy of an HTML document?
The anatomy of a HTML document is a required preamble which consists of;
- Doctype
- HTML open tag
- head open tag
- head closing tag
- body open tag
- body close tag
- HTML Closing Tag
- What is HTML?
Is a Markup Language that defines the structure of websites
- What is HTML used for?
Is use to create static websites
- Why are we learning HTML?
To create websites or FrontEnd for our Apps
- What is an HTML tag?
Tags indicates the structure of the text
- What is the structure of an HTML tag?
Content
- What is an attribute?
The attributes shows extra info about the element that is not showed in the content and that can be targeted to give non unique identifiers
- What is the anatomy of an HTML document?
The Doc type, the tags that content all the data from the page, the headers, the characters type, the title, and the body
<!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 (Hiper Markup Language)
- HTML is language used for developing text and image websait.
- We are learning HTML so to comunicate the comand to develop Websaith page
- Tag is the form of the way we structure the page by opening and closing the line fraze.
- The structure of tag is openning
<P> text </P>
- Atribute is when you need to add more information to the text like tipe text fond etc
- HTML document anatomy consist Beginning , information and closing. Its all structured in separate new lines as opening
<html> and closing </html>
- What is HTML?
HTML is a markup language that is used to structure a web page and its content.
- What is HTML used for?
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.
- Why are we learning HTML?
Because is the base language to structure a website and we always need to understand the base before we can evolve for something much more complex.
- What is an HTML tag?
Consists of the name of the element. This states where the element begins or starts to take effect and where the element ends.
- What is the structure of an HTML tag?
The opening tag is wrapped in opening and closing angle brackets and the closing tag is the same as the opening tag, except that it includes a forward slash before the element name.
- 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?
Is a set of individual HTML elements that combined form an entire HTML page.
- What is HTML?
HTML stands for hypertext markup language and is the code used for web pages. - What is HTML used for?
HTML is used to code web pages. - Why are we learning HTML?
This will be useful for creating GUIâs for any applications we build in the future. - What is an HTML tag?
An HTML tag determines where an element begins and ends. - What is the structure of an HTML tag?
The opening tag, the closing tag, and the content together comprise the element. - 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
meta charset=âutf-8â
titleMy test page/title
/head
body
img (content)
/body
/html
1.HTML is a markup language that defines the structure of your content. (hyper text mark up language
2. Used to structure website and its content
3. Because HTML is foundational to coding and block chain development
4. a set of characters constituting a formatted command for a Web page
5. It begins with an opening tag and ends with a closing tag, with content in between. The element is them all collectively
6. extra information about the element that you donât want to see in the actual content
7. makes sure document behaves correctly