-
HTML is hypertext markup language
-
It’s used to structure a web page and its content.
-
We are learning HTML to to understand the front end and be able to connect.
-
HTML tag is an element that can make a text appear a certain way.
-
Brackets with a value and before the content and in most cases after it.
-
An attribute is extra information about the element you do not want to appear in the actual content.
-
The anatomy of an HTML document is !DOCTYPE html, html, head, meta charset= utf–8, title and body.
HTML first basics
-
What is HTML?
Hypertext Markup Language. -
What is HTML used for?
Defines the structure of a web-page. All web-pages are written in the html protocol. -
Why are we learning HTML?
To understand and create basic web-pages. Additionally to have a practical way to demonstrate and test coding knowledge. -
What is an HTML tag?
A tag is an marker that can preceed or wrap text to mark it or apply an instruction to it. -
What is the structure of an HTML tag?
Angle brackets, identifier such as p or img, / to close. Can be singular or in pairs.
example (without spaces):
< p > … < /p >
< img >
-
What is an attribute?
Within elements of a web-page, attributes exists for items such as images, links and text.
An attribute gives an instruction to the browser to apply to the text that follows it. -
What is the anatomy of an HTML document?
Doctype
Head
Body
What is HTML? Hypertext Markup language consisting of a series of “elements” used to enclose or wrap different parts content to make it appear a certain way, or act a certain way. An element consists of an opening and closing tags, attributes that extend the tab and enclosed text content. The tags begin and end an element in source code and can make a word or image hyperlink to somewhere else, Italicize words, make font bigger or smaller and so on.
What is HTML used for? Web page development, web document creation, internet navigation responsive images.
Why are we learning HTML? To create user interface page that will interact with a smart contract.
What is an HTML tag ? Most elements are written in a start tag and an end tag. Tags begin (open) and end (close) an element in source code and can make a word or image hyperlink somewhere else, italicize words, make font bigger or smaller and so on.
What is the structure of an HTML tag? Opening tag, content, closing tab.
What is an attribute? An attribute extends a tag changing its behavior adding metadata or adding extra information about the element you don’t want to appear in the actual content. An attribute always has the form “name=value” (attributes identifier followed by its associated value).
What is the anatomy of an HTML document? DOCTYPE declaration, document tree including html element, head element, meta charset=”uft-8”, title element and body element. Images, markup text designating headings Paragraphs lists and Links
<!Doctype html>
<html>
<head> </head>
<body>
</body>
</html>
- Hypertext Markup Language
- It is a protocol used to show information on the webpages, every internet page is built on html.
- So that we can understand the correlation between javascript and web page development
- It is used for creating an element
- Opening and closing brackets, it defines the text.
- It specifies the properties inside the attribute, for example
Hello
- !DOCTYPE ... ...
- HTML (hypertext markup language) is the code that is used to structure a web page and its content.
- HTML is used for structuring web pages and its content.
- to be able to build an app that can interact with a smart contract. Build the front-end of the app.
- wraps all the content on the entire page. Root element.
- < tag> < /tag> opening tag, content, closing tag
- attribute contains extra info of the element, that you don’t want to be visible in the content
- doctype, html, head, title, body
-
What is HTML? - HTML is an acronym and stand for Hypertext Markup Language. It is not programming but a markup language and consist series of elements. HTML is an acronym and stand for Hypertext Markup Language.
-
What is HTML used for? - HTML is used to define the structure of the content on websites.
-
Why are we learning HTML? - While a functional website is composed of front and back end, non-functional have just the front end. Either way, in order to create and structure the front-end we will need HTML.
-
What is an HTML tag? - Tags are used to create elements.
-
What is the structure of an HTML tag? - In most cases, there’s open and closing tag at the start/end of the element respectively. However, some tags, such as image(
) does not have a closing tag.
-
What is an attribute? - Attributes are placed within the opening tag and contain information for the element such as giving a unique identifier and won’t be visible to the website visitor.
-
What is the anatomy of an HTML document? -->
...
-
What is HTML?
HTML is not a programming language, it’s markup language that define structure of your content -
What is HTML used for?
for documents designed to be displayed in a web browser. -
Why are we learning HTML?
to design base of the website and make web pages on the internet viewable -
What is an HTML tag?
its special word of letter between brackets we use tags to create HTML elements. -
What is the structure of an HTML tag?
< p > content < /p > and all of it called element -
What is an attribute?
special words used inside the opening tag to control the element’s behavior. -
What is the anatomy of an HTML document?
doctyp as preamble
< html > < /html >
< head > < /head>
< title > < / title >
< body > < /body >
1: It Is an Hypertext man up language used to design Web site layouts
2: HTML creates the formatting of text and images on the web page ensuring the best resutls
3: It is to better understand the coding behind web pages and eventally progress towards java and Solidity for writing of smart contracts. Also to be able to identify the best programmers if we go into project leadership
4: A tag is used to instruct the browser how to display and what sort of content to expect and display
5: A tag defines the beginning and end of an elements well as important information of its element type
6: An attribute is additional information that is not wanted displayed
7: The head and the body. containing all the elements that are combined to be a complete HTML page
What is HTML?
HTML is not a programming language; it is a markup language that defines
the structure of your content.
What is HTML used for?
HTML (Hypertext Markup Language) is the code that is used to structure a web
page and its content.
Why are we learning HTML?
To be able to build basic websites
What is an HTML tag?
If we want a line of text to stand by itself we wrap the text in opening and closing tags.
What is the structure of an HTML tag?
Opening tag- content- closing tag.
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?
[quote=“ivan, post:1, topic:3055”]
-
What is HTML?
**Hypertext Markup Language -
What is HTML used for?
It is used to structure a web page and its content in a format that is presentable and makes the content appear or act in a certain way. -
Why are we learning HTML?
To learn the basics of programming so the knowledge can be transferable and help understand other languages easier. It also is to help us understand the front end development to ensure we can work with smart contracts and the back end. -
What is an HTML tag?
HTML tags are used at the beginning and the end of paragraphs or a word sets that provide a formatted command for a Web page. -
What is the structure of an HTML tag?
The opening tag at the beginning < p > with the content in the middle which is the text written and the closing tag at the end </ p>. -
What is an attribute?
An attribute contains text information in the content but will not be published and is only seen by the developers and is only seen in the element of the content. -
What is the anatomy of an HTML document?
I don’t know I can’t get my head around what is actually the anatomy. By doing this course further it will fall into place. If uou could describe it in layman’s terms (easy to understand like Ivan does I may understand a little more))
*HTML: Hypertext Markup Language is code used to structure web pages.
*We are learning HTML, because it is important to know the basics of web development, and it will be useful to know how to structure a web page that can interact with a smart contract.
*A HTML tag is placed at the beginning and end of the element, and directs the content.
*The structure of a HTML tag is angled brackets around an element name. The closing tag includes a forward slash before the element name.
*An attribute is a piece of code that contains extra info about the element.
*The anatomy of an HTML document is:
Doctype-makes sure document behaves correctly
html-root element, wraps all the content on the entire page
head-everything that isn’t content (ie: keywords for search page results)
UTF-8 -sets the title of the page for browser tab and for bookmarks
body-everything the viewer sees.
-
What is HTML?
HyperText Markup Language -
What is HTML used for?
Protocol used for web pages to provide structure and display information to the user -
Why are we learning HTML?
If we are going to work with crypto and making a business, then basic information on HTML is useful for further progression and how to read different types of codes -
What is an HTML tag?
It is the element we add to a document to define parts of the documents for easier structural purpose and to modify the content in some form or another - What is the structure of an HTML tag?
-
What is an attribute?
Attributes are further information for the content without appearing in the content. Another way is the variable associated to the element -
What is the anatomy of an HTML document?
HTML documents can be broken down into two parts. Head and Body
-1. & 2. HTML is “hypertext markup language”, provides a way of formatting and structuring web page content
-3. Website design is important to provide a friendly user interface for crypto projects
-4. & 5. opening and closing tags surrounding the content, delimit elements within html, to provide formatting options eg bold
-6. attributes provide a way of labelling html content with comments, which can be used to edit styles for the whole document
-7. the main parts of an html document include the html, head and body tags:
Thanks @lux1 for your first post. Hope to see you progressing through the courses like a breeze. If any hiccups or doubts, feel free to reach out. We are here to help always !
Happy Learning !
-
What is HTML?
A markup language -
What is HTML used for?
Way of formatting and structuring content -
Why are we learning HTML?
To understand the function of webpages.
It’s no programming language. It’s a markup language. -
What is an HTML tag?
Wraps to define an element in html. -
What is the structure of an HTML tag?
Angulars define the beginning and ending of a tag. Tags define beginning and ending of element. Beginning tag is opening angular and closing angular with letters in between to define the type of tag. Closing tag has an opening and closing angular as well as letters and a forward slash in it -
What is an attribute?
Defines additional properties -
What is the anatomy of an HTML document?
A) doctype
B) html
C) headers
D) content
Homework: HTML Reading Assignment
- HTML is the language necessary to build a static webpage, Hypertext Markup Language
- the code to structure a web page and its content
- to learn the basics of a web application. HTML is the first thing a user sees when using your product. It is where we will build the front of the dApp, which will hold the contents of the instructions to tell the backend what to do.
- HTML tags are elements that open and enclose our web contents and provide structure.
-
- open using the specific element tag and then closed with a forward slash
- Attributes contain extra information about the element that you don’t want to appear in the actual content and can be later used for styling and reference.
- The anatomy of an HTML document is like a book. You have the title, chapter, subtitles, body, etc. You have the heading of the HTML document and then the body of the HTML document, the content of the page.
-
What is HTML?
HyperText Markup Language - Not a programming language.
Works with Elements.
Elements contain:
Opening tag = open & close angle brackets containing element name
Closing tag = open & close angle brackets containing forward slash then element name
Content - Goes between the tags: TagOpenMumble grumble, wimble nimble, cats.TagClose -
What is HTML used for?
For web page structure and content.
Elements are used to enclose/wrap different parts of the page content. -
Why are we learning HTML?
Web page design and layout. -
What is an HTML tag?
These instruct the opening and closing of an element. -
What is the structure of an HTML tag?
Opening Tag (& attributes)
Content
Closing Tag -
What is an attribute?
Extra information about the Element that does not need to be shown.
Should always have:
1.Space between it and the element name
2.Attribute name followed by equal sign
3.Attribute value wrapped by open/close quotes
Ex. p class=“editor-note” class is the attribute name, editor-note is the value. -
What is the anatomy of an HTML document?
**open angle brackets are removed
!DOCTYPE html> //required preamble
html> //html element wraps all page content, root element
head> //head element contains not-for-viewer content, ie keywords, style, char setting
meta charset+“utf-8”> //includes vast majority of useful linguistic characters
title>My test page //title element - page title for browser tab & bookmarking
/head> //head closing tag
body> //body opening tag - contains all content to be shown to users
img src=“images/firefox-icon.png” alt=“My test image”> //Image embedding with alt attribute.
/body>
/html>