- Hypertext Markup Language.
- It is used to structure a web and its content.
- To understand how a web site is constructed, you cannot build a website without HTML.
- A tag states where an element begins and end, HTML tag has an opening and a closing part. For example, is the opening tag and is the closing tag.
- Opening Tag, element, Content, Closing Tag.
- Attributes contain extra information about the element that you don’t want to appear in the actual content.
- DOCTYPE html, html, head, meta, title /title, /head, body, img, /body, /html
- Hyper Text Mark-Up Language
- HTML defines and structures the content of a web page
- In order to learn how to build properly structured websites readable by both users and bots
- Tags are used in HTML to define an element
- opening tag, content, closing tag (i.e.
my Tag
- Attributes is additional information that you don’t want to actually display and can also affect or alter the contents within the element
- The Doctype, HTML Tag, Head, Meta-data, title, and body
- HTML means Hypertext Markup Language. This is the Code that you need for structuring a web page and its content.
- Programming your FrontEnd of a Website. The Content, the structure of your Website, make your font bigger or smaller etc.
- We need HTML so we can make a simple Website to interact easier to a Blockchain. It is easier to learn JavaScript and Solidity when you understand HTML.
- A tag is a part of an element. So the program understands where is the beginning of an element and the ending of the element.
- An HTML tag has a wrapped in opening and closing angle brackets.
<- opening tag
The closing tag includes a forward slash before the element name. - An Attribute contains extra information about the element that you don’t want appear in the acutal content.
- That wraps up the basics of individual HTML elements.
<!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>
Here are my answers, let me know if my answers could be better!
1 HTML is a markup language
2 HTML is used to structure a webpage and it’s content
3 We are learning HTML to structure a webpage in a way that allows users to efficiently interact with the blockchain
4 An HTML tag consists of the name of an element and shows where it begins and ends. Content wrapped in these tags are affected in how they appear and/or act.
5 An HTML tag consists of an opening tag surrounded in angle brackets followed by content and finishes with a closing tag, also enclosed in brackets but also includes a forward slash.
6 Attributes are extra information about an element that doesn’t appear with the element’s content, can appear in the opening tag.
7 The anatomy of an HTML document usually follows these orders of tags:
Doctype
Html
Head
Meta charset
Title
Body
And possibly some images and hyperlinks
- Hypertext Markup Language.
- HTML is used for is used to structure a web page and its content.
- We learn HTML to be able to create and organize a web page.
- An HTML tag is used to mark the beginning and the end of the content in the element.
- An HTML opening tag is composed from 2 angle brackets with the name of the element inside ; and the closing tag has 2 angle brackets with a slash inside and the name of the element inside.
- An attribute contains extra information that we don’t want to show up in the content.
- The HTML document contains :
- opening tag
- content
- closing tag
-
HTML is “Hypertext Markup Language” code.
-
HTML is used for structuring web pages, its contents, and its series of elements.
-
We are learning HTML because it gives us the knowledge to develop web pages, interfaces, dApps, games, etc. to make it look a certain way, make it do certain things, code certain protocols, or maybe even provide some sort of security or protection.
-
An HTML tag can italicize words, make the font bigger or smaller, emphasize a word, or show an image hyperlink to somewhere else.
-
The structure of an HTML comprise of opening and closing tags that enclose a word(s). In between the opening and closing tags is the content.
-
An attribute is any extra information about the element that you don’t want to appear in the actual content. It usually has a space between the element name, the attribute name followed by an = sign, and attribute value with quotations.
-
The anatomy of an HTML document comprises these elements in the particular order:
<!DOCTYPE html>
— doctype
<html></html>
— the <html>
element
<meta charset="utf-8">
<title></title>
- the title element
<body></body>
— the <body>
element.
- HTML means Hypertext Markup language, it is the fundamental technology for websites.
- It is used to create the content or bone structure of a website.
- we learn HTML to be able to understand how to impute content on the web basically.
- An HTML tag consists of a opening tag and enclosing tag, that isolate elements which gives a stature to whatever it contents.
-
opening tag
closing tag - An attribute contain extra information about the element that you don’t want to appear in the actual content.
- !DOCTYPE html tag
HTML opening and closing tag
Heading opening and closing tag
Title opening and closing tag
Body opening and closing tag
Img tag
-
What is HTML?
Hypertext Markup language -
What is HTML used for?
To create content of web pages -
Why are we learning HTML?
To be able to create a web page, markup the content of it, and then use this language as a basis to learn other languages -
What is an HTML tag?
HTML tag is the root of the document. It shows the beginning and the end of the document. -
What is the structure of an HTML tag?
An opening tag, content, a closing tag. -
What is an attribute?
it is extra information about an element, which is hidden. You cannot see in the actual content. -
What is the anatomy of an HTML document?
Doctype - preamble
Html tags
Element sets for languages
Head
Title
body
-
What is HTML?
HTML (Hypertext Markup Language) is a coding language for documents designed to be displayed in web browsers. -
What is HTML used for?
It structures websites and its content. -
Why are we learning HTML?
When creating applications on the blockchain you also need a website through which people can access these. -
What is an HTML tag?
An HTML tag is a set of characters constituting a formatted command for a Web page. At the core of HTML, tags provide the directions for the visual content that you can see on the Web. -
What is the structure of an HTML tag?
It starts with an opening tag that has the name of the element in angle brackets and finishes with a closing tag with the same name in brackets but it includes a forward slash before the element name. In between these tags is the content of the element. -
What is an attribute?
Attributes define additional characteristics or properties of the element for example width and height of an image. Attributes are specified in the opening tag and usually consist of name/value pairs represented like this: name=“value” -
What is the anatomy of an HTML document?
The following individual elements are combined to form an entire HTML page:
doctype, root element, head element, , title element, body element
1. HTML (Hypertext Markup Language) is the code
2. HTML is used for to structure a web page and its content.
3. We are learning HTML to connect the web page with blockchain technology and smart contracts.
4. HTML tags are like keywords which defines that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML content and a simple content.
5. HTML tags contain three main parts: opening tag, content and closing tag. But some HTML tags are unclosed tags.
6. Attributes contain extra information about the element that you don't want to appear in the actual content.
7.Anatomy of an HTML document wraps up the basics of individual HTML elements, but they aren't handy on their own.
-
A “markup language”
-
This is used to structure the content of a page
-
To build a website
-
Exemple of HTML tag :
-
“<” + “the letters that specify the type of tag we want to use” + “attributes if we want to use one” + “>”
-
Extra information that won’t appear for the user (used to link with the HTML with the CSS for example)
-
Here is an example :
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The title (not visible for the viewers)</title>
</head>
<body>
<h1>The title (visible for the viewers)</h1>
<p>The text</p>
</body>
</html>
1.Hypertext… scroll for the rest
2.Universal language for web browsers. Especially text based
3. html will provide us with the ability of webpage development. Later we can integrate the blockchain to the webpage.
4. These are the beginnings and ends of a element which defines the characteristics and purpose of the content
5. content
6. Attributes are extra characteristics you can add to the tag. This could be used as grouping or defining different styles or type of information delivered.
7. Exclamation mark and tab.
<!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 HyperText Markup Language
What is HTML used for?
it’s used to create websites and structure
Why are we learning HTML?
to be able to create a website
What is an HTML tag?
its what gives an element a beginning and end
<> </>
What is the structure of an HTML tag?
opening
<>
Between tags, there will be content
Closing
</>
everything together gives you an Element
What is an attribute?
is the extra information about the element that you don’t want to appear in the actual content
content
What is the anatomy of an HTML document?
it’s the elements that are combined to form a basic HTML page
Example:
<!DOCTYPE html>
<html></html>
<head></head>
<meta charset="utf-8">
<title></title>
<body></body>
- What is HTML?
the code that is issued to structure a web page and its content. - What is HTML used for?
for enclosing, wrapping different parts of a content to make it appear/act a certain way. - Why are we learning HTML?
to be able to build Dapps - What is an HTML tag?
a function we give to an element to do something: hyperlink, italicize, change font etc. - What is the structure of an HTML tag?
< >, </ > - What is an attribute?
an extra information about an element 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>actual title</title>
</head>
<body>
</body>
</html>
- What is HTML?
HTML is the code that is used to structure a web page and its content - What is HTML used for?
HTML is used to define the structure of your content in a webpage. - Why are we learning HTML?
Its an easy language to begin with and its the first thing you interact with on the web. - What is an HTML tag?
HTML tag is keyword which defines that how web browser will format and display the content. - What is the structure of an HTML tag?
- A tag starts with an opening , has usually an attribute inside and finishes with a closing
- What is an attribute?
- An attribute is used to denote special feature of an element or 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>
- HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content.
- HTML is a markup language that defines the structure of your content. 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.
- To write the front end for our dapps and smart contracts in the website.
- Something to define what type of content we have on the website.
5 The main parts of our element are as follows:
a. The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets . This states where the element begins or starts to take effect — in this case where the paragraph begins.
b. The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends — in this case where the paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
c. The content: This is the content of the element, which in this case, is just text.
d. The element: The opening tag, the closing tag, and the content together comprise the element - Attributes contain extra information about the element that you don’t want to appear in the actual content.
-
- What is HTML?
HTML is markup language , which used for structure of web page and contents. - What is HTML used for?
Hypertext Markup Language - Why are we learning HTML?
actually HTML is the base or Skelton of web pages. that why its help to show contents of different forms for example images, tables, hyperlinks. - What is an HTML tag?
Tags are the keyword of this language - What is the structure of an HTML tag?
closing tag and ending tab with currly bracketshello world
- What is an attribute?
attribute is also keyword which add extra info for element - What is the anatomy of an HTML document?
<title> My First program </title>
</head>
<body>
<H1> Hello World <H1>
</body>
Q1: HTML is a markup language for the structure of our content. Basically the foundation for any web page.
Q2. To structure a webpage and the content within.
Q3. To understand the fundamentals of webdev and build our skills from there.
Q4. An HTML tag encases content and defines what the content is whether a paragraph or title or anything else
Q5. An opening tag to show where the content begins and the closing tag to show where the content ends.
Q6. Extra info relating to the content that wont show up on the final webpage.
Q7. A preamble and 5 elements. The HTML, head, meta chartset, title and body elements.
-
What is HTML?
HyperText Markup Language. -
What is HTML used for?
It is the code used to structure a web page and its content. -
Why are we learning HTML?
To define structure of the content on a web page so it appears and acts in a certain way. -
What is an HTML tag?
Tags are used to create elements or parts of a web page. -
What is the structure of an HTML tag?
The name of the element is wrapped in an opening and closing closing tag with angle brackets. -
What is an attribute?
Attributes contain extra info about the element which is not supposed to be in the actual content. -
What is the anatomy of an HTML document?
<!DOCTYPE html>
— doctype.
<html></html>
— the html element.
<head></head>
— the head element.
<meta charset="utf-8">
— the character set of the document.
<title></title>
— the title element.
<body></body>
— the body element.
-
What is HTML?
HyperText Markup Language -
What is HTML used for?
Used in defining the structure of web content -
Why are we learning HTML?
To have a basic understanding to create a simple site/blog -
What is an HTML tag?
The parameters needed to define the content and layout on a website -
What is the structure of an HTML tag?
Opening tag >elements and/or content < -
What is an attribute?
A characteristic specific to the tag… visual and/of functional -
What is the anatomy of an HTML document?
doctype/html > Root element Head >Body: Attributes(s) & Content >Character set>Title