- What is HTML?
code that structures website content - What is HTML used for?
creating websites - Why are we learning HTML?
we need to create websites for users to be able to interact with our code - What is an HTML tag?
a thing that makes different parts of the content display a certain way. it also indicates where the element begins and ends - What is the structure of an HTML tag?
opening tag, content, closing tag - What is an attribute?
extra information about an element - What is the anatomy of an HTML document?
a required preamble, an html element that wraps the entire contents, the head element that contains things that are not actually displayed, some meta stuff like character sets, the title, and the body
- What is HTML?
HTML stands for Hyper Text Markup Language
- What is HTML used for?
HTML is the standard markup language for creating Web pages
- Why are we learning HTML?
So we may begin to understand basic programming and code.
- 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
- What is the structure of an HTML tag?
An HTML Document is mainly divided into two parts:
HEAD : This contains the information about the HTML document. For Example, Title of the page, version of HTML, Meta Data etc.
BODY : This contains everything you want to display on the Web Page.
- What is an attribute?
HTML attributes are special words used inside the opening tag to control the elementâs behaviour. HTML attributes are a modifier of an HTML element type . An attribute either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them.
- What is the anatomy of HTML?
Anatomy of an HTML document is the basic form of the HTML that it needs to contain to display the needed thing in web browser. Itâs type(so the browser knows what its dealing with), html tags(so the browser knows where to expect that type), head and body.
[img]https://designshack.net/wp-content/uploads/dom-tree-graphic.jpg]/img]
- 1. What is HTML?
It is a hypertext markup language
2. What is HTML used for?
HTML is used to define the structure of content on a website. For example, it determines where a piece of text should appear, what size, alignment and color it should have. It can also be used for handling images, bullet points, data tables and hyperlinks.
3.Why are we learning HTML?
It will give us the basics of programming so that we can start grasping the concept of programming as we go further down the path of learning. When we know HTML we can also learn JS and later on C++ and Solidity.
4.What is an HTML tag?
The HTML Tag determines where a HTML Element starts and ends.
5. What is the structure of an HTML tag?
Opening tag, content, closing tag.
For example:
I am becoming a blockchain developer
6. What is an attribute?
An attribute can be inserted before the content within a HTML Element. This will enable the developer to use the attribute name to give any content that uses this attribute a certain style.
7.What is the anatomy of an HTML document?
(root element open) (header open, what wonât be visible to users on the page) (character set open & close. Always the same) My Page (title open & close. Title that appears in the Tab) (header element close) (body open. What users will see when browsing)content
(body close) (root element close)-
Hypertext markup language
-
html is used to create a website and its contents.
-
We are learning HTML so that we understand how to display our content on the web.
-
Tags state where the element begins and ends. It also defines how the content will be formatted/displayed.
-
the opening tag consists of the name of the element wrapped in opening and closing angle brackets.
the closing tag is the same as the opening tag but also contains a forward slash before the element name. -
an attribute is extra info which you donât want to appear in the content
-
Doctype
HTML
Head
Body
- HTML means hyper text markup language. basically code for a web page.
- HTML is used to describe the structure of your content.
- We are learning html to have a foundation for creating smart contracts.
- A html tag is the name of the element.
- the structure of a html tag starts with
the element surrounded by the angle brackets and then closed with
. angle brackets with a forward slash. - an attribute is extra information about the element that you donât want to actually show. in the content.
- anatomy of a html document: has lots of elements that start with angle brackets and end with forward slash in the angle brackets.
- Hyper text markup language
2.HTML code a) defines basic structure of the website via elements and tags. b) is the basic language for writing websites on the internet. c)It makes the website appear and look a certain way. d) The elements tell the browser how to display the web page e)The elements also label pieces of content such as paragraph, heading ,link, image etc - HTML is foundational language for web based applications. I want to create a simple website that acts as the the beginning before Java script then transition to blockchain language.
- An HTML tag is a container of all HTML elements (except the (DOCTYPE). It is the root of an html document.
Tags can be a) inline level elements such as. b) Block level eg tags that take a new line such as header tags, paragraph tags etc
- text </closing tag> - the structure of html tag
- Attribute -contains extra information of the element that you donât want to appear in the content. attribute has a name and a value. an attribute should always have the following 3 characteristics: a). A space between it and the element name (or the previous attribute, if the element already has one or more attributes).b) The attribute name followed by an equal sign. c). The attribute value wrapped by opening and closing quotation marks.
- Anatomy of an html document
An HTML document is divided into 2 parts:
Head-This contains the information about the HTML document. eg Title of the page, version of HTML, Meta Data etc.
Body: This contains everything you want to display on the Web Page.
1/2. HyperText Markup Language is the code to structure a webpage and contents
3. To be able to create a webpage for our smart contracts to live in
4. its in <?> format to allow the code to know what kind of element it is dealing with
5. <?>. to open, to close
6. its an extra piece of information not shown in content
7.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
</head>
<body>
<p> words </p>
</body>
</html>
- What is HTML? A: HTML (Hypertext Markup Language) is the code that is used to structure a web page
- What is HTML used for? A: To define the structure of your content.
- Why are we learning HTML? A: So we can learn to build a ui that can link to our smart contract.
- What is an HTML tag? A: It is the description of the code heading.
- What is the structure of an HTML tag? A: starting & ending in angled brackets eg:
I hope I donât fk this up
- What is an attribute? A: The extra information about the element that you donât want to appear in the actual content.
- What is the anatomy of an HTML document? A: The list of elements.
- What is HTML?
HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content.
- What is HTML used for?
Creating web pages
- Why are we learning HTML?
In order to be able to create wep pages that interact with blockchains
- What is an HTML tag?
Tags indicate the nature of how content would be displayed. Typically an opening and closing tag are required in immediate proximity to and on either side of the content in question. Tags combined with content make what are called elements.
- What is the structure of an HTML tag?
It is a charater/string which is code for the name of an element, for example, p is for the element representing a paragraph. Opening tags are simply enclosed in angle brackets whereas closing ones have a slash inserted such as "
"- What is an attribute?
An attribute is an instruction about the nature of an element such as the style of its presentation
- What is the anatomy of an HTML document?
A n ordered set of elements each of the form âOpening tag, possible attribute, content, closing tagâ noting that elements may be nested within other elements, they may be empty but correctly combined a HTML document make.
-
What is HTML?
Itâs a coding language used to create webpages -
What is HTML used for?
This defines the layout and structure of webpages -
Why are we learning HTML?
So that later on we understand how to interact with elements on a website when making smart contracts and dapps. -
What is an HTML tag?
A tag makes up part of an element. It has two parts. An opening tag and a closing tag. -
What is the structure of an HTML tag? There is an opening <> and a closing tag </> which surrounds the content that we want to be affected by the tag
-
What is an attribute?
An attribute makes up part of a tag. It allows you to customize the content in a tag more. -
What is the anatomy of an HTML document?
An Html document usually contains a Title, A header, A body and other elements wrapped into the html tag
- HTML stands for Hypertext Markup Language which is a language that defines the structure of your content. It consists of a series of elements that make content look or act a certain way.
- It is used to structure a web page and its contents.
- It is beginner friendly and at a later stage we will learn how to interact with elements of a website when creating smart contracts and dapps.
- A tag is used for creating an element. Tags state where the element begins or starts to take effect and where it ends.
- Opening tag - <>
Closing tag - </> - This contains extra information about the element that wonât appear visually in the content.
7.- doctype (a required preamble)
- the html element -(wraps all content on the page)
- the head element (a container for all content unseen to viewers)
- sets character set your document will use)
- the title element (sets the title of the page)
- the body element (contains ALL content viewers will see)
- HTML stands for Hypertext Markup Language.
- It defines the structure of the content.
- It is the basic language of creating a website.
- Tag marks the beginning and end of the content.
- The opening tag has
<p> and the closing tag has </p>
- Attribute contains extra info about the element that you donât want to appear in the actual content.
- The anatomy of HTML consists of the opening tag, the closing tag, the content and it all together makes an element.
What is HTML?
- HTML is a markup language that defines the structure of your content and it consist 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.
What is HTML used for?
- HTML is the code that is used to structure a web page and its content.
Why are we learning HTML?
- We are learning HTML for us to know how to communicate and give instructions to the computer for us to make proper programs and websites.
What is an HTML tag?
- HTML Tags are the tags where the HTML element begins or start and ends. They are represented with <> for the opening tag and </> for the closing tag.
What is the structure of an HTML tag?
- The structure of an HTML Tag are as follow: <> for the opening tag and </> for the closing tag.
What is an attribute?
- An attributes contain extra information about the element that you donât want to appear in the actual content and shouls always contain a space between it and the element name, the attribute name followed by an equal sign, and the attribute value wrapped by opening and closing quotation marks.
What is the anatomy of an HTML document?
-
- doctype - Make sure your document behaves correctly
- The html element - Wraps all the content on the entire page and is sometimes known as the root element
- The head 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
- meta charset=âutf-8â - Sets the character set your document should use to UTF-8
- The title element - This sets the title of your page which appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it
- The body element - This contains all the content that you want to show to web users when they visit your page
My answers to home work:
- Hypertext Markup Language
- Used to structure a webpage and its content
- Learning HTML in order to prepare and enhance our study of solidity for example
- The tag is use to create or format part of a webpage
- Structure is enclosing, in angle brackets e.g
- An attribute is used to extend an element, changing its behaviour or adding metadata
- The anatomy is: opening tag, the content, closing tag, the element.
-
HTML is Hyper Text Markup Language
-
HTML is used to define the structure of the web page and all of its elements and content.
-
We are learning HTML so that we know the basics of to make a website, add content to it and organize the content the way we want to.
-
Tags are what begins and ends an element. Every element in an HTML web page beings with an opening tag and ends with a closing tag.
-
The opening tag is <> and the closing tag </>
-
An attribute contains extra information about an element that you donât want to appear in the content.
-
The anatomy of an HTML document is: (each element tag enclosed within < >)
!DOCTYPE html
html
head
meta charset="utf-8"
title </title
/head
body
/body
/html
-
HTML stands for Hyper Text Markup Language.
-
HTML is used to instruct the browser how to display the content of your webpage.
-
So that we can create our own webpage.
-
In HTML tags are used to create an element, with an opening tag and ends with a closing tag.
-
The structure of an HTML tag are the opening tag <> and the closing tag </>.
-
All HTML element can have attribute which provide additional information about the element.
-
All HTML documents begin with !DOCTYPE html tag followed by the html tag ,a head tag and then the body tag .
1: HTML is Hyper Text Markup Language
-
HTML is the code used to structure a web page and its contents
-
Blockchain and crypto is based on the web and HTML is the language used on the internet so we need to understand HTML in order to work in this space
-
A tag is used to tell the browser what we want it to do / show
-
An HTML tag is structured by < name of tag> at the start of where you want the tag to be., with the information you want affected by the tag following, and ending in the same name of tag but with a / so < /name of tag>
-
An attribute is where you put information inside the tag that you do not want to show on the browser
-
individual elements used to create the page.
<!DOCTYPE html>
<HTML>
<Head> content </head>
<body> content </body>
</HTML?
-
HTML stands for "Hypertext Markup Language⌠a computer language that makes up the web pages on the WWW (World Wide Web). Also considered a âroot element.â Hypertext links electronic documents of words, images, videos, etc that link to other HTML documents.
-
HTML is used as a computer language by computer programmers that organizes in specific orders and commands directing the format, style and appearance of web page documents. The data is on the screen, but the markup does not appear on the computer screen. HTML works with JS and CSS.
-
HTML? We want to learn Blockchain technology. To learn well and become successful we must learn HTML. It is assumed that we would want to learn HTML since programmers must understand HTML websites. .Computer languages work together.
-
Tags are used in HTML programming. Tags are how the markup of the content in the HTML document is specified. Tags are the before and after language of HTML to start the language of the webpage, and stop the language of the webpage directing the computer to finish and end. Start tag, , and end tag </tag name>.
-
Open tag is represented by a "less than, " â<â and closing tag is represented by a âgreater than,â â>.â
There is also a tag to make text bold. âstrong,â means to stand out. âBold.â and has a closing tag using a forward slash. </strong. Tags are wrapped in angle brackets.and
-
Attributes are the extra information in tags in the form of name= "value pairs. Destination of the link is indicated with href=âhttp://âŚâ The href stands for âhypertext reference,â (included in angle brackets). There is a metadata tag , and < and closing bracket is written as > (âgreater thanâ) which we will learn about later.
-
Anatomy of an HTML document include programs and subprograms that follow specified formats or algorithms wherein the elements contain opening and closing tags, titles, content, all belonging to the element of the web page. Subprograms follow the same structures. The program tag begins the documentation to the point in which the subprogram is introduced from beginning to closing; the main program takes over and ends the document. Thus, the HTML is the opening tag, the closing tag and the content together which may include subprograms having the same patterns and can have attributes.There must be a space between the attribute and the element name. Attributes followed by =sign. Quoting all attribute values makes the content/element understandable and consistent.
HTML stands for Hypertext Markup Language.
It is used to to build websites, It is how you display move and control your text and images.
We are learning as we need to understand how the front end of the operation (what the user will see) works before we move onto the backend making smart contracts that will operate with the front end.
Tags tell the computer when we are starting and ending a command, and what we want to do with the content that itâs wrapping.
It starts with a opening tag and finishes with a closing tag <> </>
An attribute is more information on the element but is not displayed in the content I think its for other programmers to help understand the code.
its all the elements comprised together to make the whole
the head and the body
- What is HTML?
Hypertext markup language - What is HTML used for?
Structure a webpage and its content. Itâs a way for you to get your content to act a certain way - Why are we learning HTML?
- What is an HTML tag?
An openingtag is a tag that states when the action starts and a closing tag states when it stops. - What is the structure of an HTML tag?
text - What is an attribute?
Attribute is extra information about the element that we donât want to be shown in the actual content.
What is the anatomy of an HTML document?
Element is the whole thing, opening, closing tag and the content.