- HTML is a markup language that defines the structure of your content. It is not a programming language, it is only used to create visual structure and not to define functionality.
- HTML is used to structure a web page or a page in an app and its content.
- We are learning HTML because it is the essential backbone of all pages on the internet. Regardless of what a person is programming, HTML is needed at the core of any application or web page.
- An HTML tag identifies content on a webpage.
- An opening tag is the name of the element wrapped in opening and closing brackets, and a closing tag is the same with the addition of a forward slash before the element name. The opening and closing tags surround the content of an element.
- An attribute contains extra information about the element that you donât want to appear in the actual content.
- Doctype, HTML element, head element, meta charset = âUTF-8â, title element, body element.
-
A protocol that is used to structure a webpage and its content.
-
It is used to define the structure of the websites content.
-
So that we get a basic understanding on how to write code and to learn how to build a simple webpage for future programming and integration.
-
A code that creates an element.
-
Opening tag -> Attributes/Content -> Closing tag. This is all wrapped up as an âElementâ.
-
An attribute is extra information for the element that will not be visible content on the webpage. Itâs used for your own navigation and order.
-
In the very basic you need a root element <.html> <./html> to wrap up all the content on the page, a head element <.head> <./head> where you code everything that is not viewable content on the webpage, and a body element <.body> <./body> where you code everything that will be viewable content on the webpage.
However it is recommended to use a meta element such as <.meta charset=âutf-8â> as it includes the majority of character sets of written languages, and a title element <.title> <./title> which sets the title of your page that is shown in the browser tab and more.
-
What is HTML?
Its a markup language, that defines the structure of your content. -
What is HTML used for?
It used to create and structure sections, paragraphs, headings, links, add images for web pages. -
Why are we learning HTML?
To learn the basics of how to build webpages and programming. -
What is an HTML tag?
The tag can make a word or a image go to somewhere else. like < p > < b >hello < /b > < /p > shows like this:hello
-
What is the structure of an HTML tag?
< > and </ > -
What is an attribute?
It contain extra information about a element that you do not want to appear in the actual content. -
What is the anatomy of an HTML document?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My picture</title>
</head>
<body>
<img src="someting.jpeg" alt="Ivan2">
</body>
</html>
-
What is HTML?
HTML is no a programming language but a markup language that defines the structure of your content. -
What is HTML used for?
It is used to enclose or wrap different parts of content to make it appear a certain way on a webpage. -
Why are we learning HTML?
As our base before getting in to Java script. Like building from the skeleton to the muscles to the skin. -
What is an HTML tag?
A tag is used for creating an element (a data item, chunk of text or an image). The text inside angle brackets makes an element, e.g.for paragraph.
E.g.
My cat is very grumpy
Enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, make font larger or smaller etc.- What is the structure of an HTML tag?
-The opening tag: states where the element begins or starts to take effect
-The closing tag: at the end of an element but includes a forward slash before the element name. this states where the element ends
-The content: contents inside the element
- The element: Everything from the opening tag, closing tag and contents that comprise the element.
- What is an attribute?
Attributes contain extra information about the element that you do not want to appear on the actual content. E.g.
My cat is very grumpy
The attribute here is class=âeditor-noteâ where class is the attribute name and editor-note is the attribute value
An attribute should always have the following:
- A space between it and the element name (or the previous attribute, if the element already has one or more attributes)
- The attribute name followed by an equal sign
- The attribute value wrapped by opening and closing quotation marks.
Ivan on tech Academy
Regine Ndifor
1/5/2020
First assignment
1, what is HTML?
It is not a programming language but a make up language that defines the structure of your content
It can be used to manipulate content e.g images, texts to appear the format we want
2, What is HTML used for ?
HTML is the code that is used to structure a web page and its content. It used html to enclose different parts of the content make it a certain way
3, Why are we learning HTML?
We use HTML to make word structural content appear in a certain way. We als learn HTML because it exposes us to the basics coding which will assist us in developing and programming
4, What is an HTML Tag?
Tags are elements used at the beginning of any content including paragraphs and at the end
Opening tag consist of the beginning of the name of the element open and closed in brackets and closing tag indicate the end of the element consisting of a open bracket a forward slash P close brackets. It is shows content display where we want it to be.
5, What is the structure of an HTML?
The HTML structure is the document type of the website; encompassing the head, title, body all wrapped up in open close
6, What is an Attribute?
Attributes contain extra information about the element you donât want to appear in the structural content. It modifies the default functionality of element type or provides functionality to certain types of elements which are unable to function without themâŚAttributes are parts of the content you donât want to appear in the actual content.
7, What is the anatomy of an HTML Document?
All elements of the doctype make up the anatomy from
< html> < title>My test page < img src=âimages/firefox-icon.pngâ alt=âMy test imageâ >Everything between
< /html>
-
HTML stands for Hypertext Markup Language.
-
HTML is a code that is used to structure a webpage and its content.
-
We are learning HTML so we can have an understanding of the front side of the programs that users interact with.
-
An HTML tag is used to create an element. It is placed at the beginning and end of an element to allow separation and creation of a heading, paragraph, text table, etc.
-
The structure of an HTML tag consists of the opening tag, closing tag, contents, and the element.
-
An attribute has extra information about the element that you donât want to appear in actual content. It needs to consist of space between it and the element, attribute name followed by the equal sign, and the attribute value wrapped by the opening and closing quotation marks.
-
When I submitted this it did not come up because I have no content in it, I added an extra space at the beginning of each tag.
< !DOCYPE html>
< html>
< head>
< meta charset=âutf-8â>
< title>
< /head>
< body>
< /html>
-
What is HTML?
HTML Hypertext Markup Language is the code that is used to structure a web page
and its content.HTML is not a programming language, it is a markup language
It is Hypertext Markup Language which is used to create or structure web pages.
-
What is HTML used for?
HTML is used to form web pages and its structure. -
Why are we learning HTML? To build a foundation in order to interact with Smart
Contracts using Java Script. -
What is an HTML tag?
A tag or element is meta-data about or contains payload data.
The data goes between the opening tag and closing tag like:Dogecoin has no max coins
-
What is the structure of an HTML tag?
Dogecoin has no max coins, why people buy it?
is the opening tag.
is the closing tag. -
What is an attribute?
Attributes contain extra information about the element but that should not appear in
the text of the element. -
What is the anatomy of an HTML document?
No Doge
- HTML stands for Hypertext Markup Language
- it is not a programming language , but a markup language
- it is the code that is used to structure a website and its content
-
HTML is the code that is used to structure web sites and content within the website such as text, images, videos, and links.
-
We are learning HTML so we can develop and publish our own projects, and be able to program/publish blockchain programs on the web.
-
HTML tags are what direct the way all content is structured that creates the web page and what and how the viewer sees it . eg: font size or back links behind words or images
-
An HTML tag has an opening <> and closing tag </>
-
An attribute is used to define the characteristics of an HTML element and is placed inside the elementâs opening tag. All attributes are made up of two parts â a name and a value.
What is HTML? HTML is not a programming language; it is a markup language that defines the structure of your content. Elements that make the page appear a certain way, or act a certain way.
What is HTML used for? For Web development. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
Why are we learning HTML? To built a website.
What is an HTML tag? Something that opens and closes an element.
What is the structure of an HTML tag? Opening Tag
The closing tag
What is an attribute? Attributes contain extra information about the element that you donât want to appear in the actual content. Here, class is the attribute name and editor-note is the attribute value.
What is the anatomy of an HTML document?
<!DOCTYPE html> They are just needed to make sure your document behaves correctly.
<html></html> This element wraps all the content on the entire page and is sometimes known as the root element
<head></head> 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.
<meta charset=âutf-8"> This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages. Essentially, it can now handle any textual content you might put on it.
<title></title> This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.
<body></body> This contains all the content that you want to show to web users when they visit your page, whether that's text, images, videos, games, playable audio tracks, or whatever else.
1.What is HTML?
HTML is a markup language that defines the structure of your content
2.What is HTML used for?
It is used to structure a web page and its content
3,Why are we learning HTML?
It is pretty much the language of the digital world, it pays to have a working knowledge of this language
4.What is an HTML tag?
Opening tag followed by a closing tag, with content in the middle.
5.What is an attribute?
An attribute is another term for a field. Itâs typically a public constant or a public variable that can be accessed directly.
6.What is the anatomy of an HTML document?
<!DOCTYPE html>
- What is HTML?
HTML is not a programming language. Hyper Text Markup Language, used to structure a web pageâs content.
- What is HTML used for?
Building websites for your project.
- Why are we learning HTML?
In order to build a website for our projects.Smart Contracts are websites that run on the blockchain.
- What is an HTML tag?
a tag is used for creating an element.
5.What is the structure of an HTML tag?
- What is an attribute?
Attributes are a changeable property or characteristics of a program. In HTML a attribute is a characteristics of a page element for example the font of the webpage.
- What is the anatomy of an HTML document?
It is basically the combination of all individual elements to form an entire HTML web page. It is taking all chapters of a book and putting it together to form an entire book.
- Hypertext markup language.
- Is a code used for build the structure and contents of a web page
- Because we need to have a basics knowledge to make a step further and programming on Blockchain.
- We use tagas to allow the browser to recognise what type of content it has to show and it what way, it aslo wrapped between angle brackets.
- Has an opening tag <" " > and a closing tag </" " > and contain the name of the element.
- The attribute provide extra information about an element.
- < !DOCTYPE html>
< html>
< head>" " </ head>
< body> " "</ body>
< /html>
- What is HTML?
- HTML is a markup language that plays a major role in the structure of a web page.
- What is HTML used for?
- HTML (Hypertext markup language) is code being used to create and edit the content of a web page.
- Why are we learning HTML?
- In order to build a web page that actually interacts with the blockchain , we need a basic understanding of how web development works. Thats also very important for the front-end development of an application.
- What is an HTML tag?
- HTML tag is a special word or letter surrounded by angle brackets. Its used to create HTML elements and those usually have an opening and closing tag.
- What is the structure of an HTML tag?
- < special word or letter > Opening tag
- </special word or letter > Closing tag
- What is an attribute?
- It is extra information about an element that is not supposed to be shown to the end user.
- What is the anatomy of an HTML document?
-
< !DOCTYPE html> acts as set of rules that pages had to follow be be considered as good HTML
-
< html>< /html> known as root element - wraps all the content on the page
-
< head>< /head> contains all the information that we dont want to show to the end user. Mostly keywords to optimise the page performance on searching engines
-
< meta charset=âutf-8â> character set which includes most characters from the vast majority of written languages and should help to avoid some errors
-
< title>< /title> sets the title of the page that appears in the browser tab , also used for bookmark/favorite
-
< body></ body> contains all the content we want to be shown to the user ( text , image , video etc. )
1. What is HTML?
(Hypertext Markup Language). HTML is not a programming language; it is a âmarkup languageâ that defines the structure of your content.
2. What is HTML used for?
To structure a web page and its content 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 create websites as the front end of/for blockchain applications.
4. What is an HTML tag?
A âtagâ is used for creating an element.
5. What is the structure of an HTML tag?
whatever
6. What is an attribute?
Attributes contain extra information about the element that you donât want to appear in the actual content.
7. What is the anatomy of an HTML document?
My test page- A programming language, made up a series of different elements.
- It can be used to wrap different parts of content, to make it appear a certain way. Such as using the enclosing tag to make a word, or image hyperlink to somewhere else.
- To learn some of the key fundamentals to be able to use Solidity and create smart contracts.
- A tag allows a browser to recognise the content it displays and in what format.
- Element wrapped in the lesser than, and greater than, and closing, same, but with a forward slash before the element
- Contains additional data about the information about the element that you donât want to appear in the content.
7.Separate parts used to combine an HTML page
- HTML is a markup language for coding web pages.
- HTML is used to structure a web page and its content, eg with paragraphs, lists, images and data tables.
- So that we can create a web page as the front end of the dapps we will build later.
- An HTML tag is a part of the language, usually occurring in pairs, which defines how the content enclosed by the pair of tags is to be formatted.
- The opening tag contains the name of the tag, wrapped in opening and closing angle brackets. The closing tag also contains a forward slash before the name.
- An attribute is a part of the language that gives additional information about the element that is not to appear in the actual content. It has an attribute name, an equal sign, and a value wrapped by quotation marks.
- An HTML document has a sequence of tags and content. It starts with the tag, followed by the opening and closing tags which enclose the rest of the document. The rest of the document then has opening and closing tags enclosing the information that is not part of the content of the page; this is followed by the content which is enclosed by the opening and closing tags.
1.markup language
2. to structure a webb page and its content
3. so we can create a web page in the front end that is nice to use
4. its the enclosure of an element.
5. opening tag: consists of the name of the element wrapped opening and closening in angel bracket
Closing tag:is the same as an opening tag except that it includes a forward slash before the element name
6.extra info on the element that doesn´t show up when using the web page.
7
What is HTML?
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.
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 so we can put statistical information on a webpage.
What is an HTML tag?
HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.
What is the structure of an HTML tag?
The opening tag: This consists of the name of the element wrapped in opening and closing angle brackets.
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.
What is an attribute?
Attributes allow you to customise a tag, and are defined within the opening tag.
What is the anatomy of an HTML document?
The anatomy of na HTML wraps up the basics of individual HTML elements to form an entire HTML page.
- HTML (HyperTextMarkupLanguage) is the code that is used to structure a web page.
- It is a markup language that defines the structure of your content.
- HTML is an easy language to understand, it enables you to better understand other programming languages such as C++.
- An HTML tag describes the content of the element, its opening and its closing.
- The structure of an HTML tag is < p > or < / p >, denotes the opening and the closing of a paragraph.
- An attribute gives a paragraph description( name ) and value.
- The anatomy of an HTML document is,
content
.
- What is HTML?
- What is HTML used for?
- Why are we learning HTML?
- What is an HTML tag?
- What is the structure of an HTML tag?
- What is an attribute?
- What is the anatomy of an HTML document?
HTML stands for Hypertext Markup Language. It is a markup language.
HTML is used to instruct web browsers how to structure web pages.
We are learning HTML because it is the standard language used in documents that are displayed in web browsers. It is crucial to programming and a building block to learning use of CSS and Javascript.
Tags open and close an element as well as naming said element.
An opening HTML tag will contain the name of the forthcoming element enclosed in angle brackets. Following the contents of the element, the closing HTML tag will mirror the opening tag with the addition of a forward slash preceding the element name.
Attributes contain information about the element that won't appear in the content, but rather instruct the element on how to act.
An HTML document is made up of a series of elements. Elements are made up of:
The opening tag consists of the name of the element and marks where the element begins.
The content of an element contains the information that will be displayed on the web page.
The closing tag marks the end of the end of the element.