- What is HTML?
Hyper Text Markup Language - What is HTML used for?
HTML is used for creating content that will interact with web browsers. - Why are we learning HTML?
HTML is the backbone of the web. - What is an HTML tag?
A tag surrounds content and is used to describe how it should be interpreted and presented in a browser. - What is the structure of an HTML tag?
There is an opening tag within brackets <> followed by a closing tag at the end of the element to close the tag operation</> - What is an attribute?
An attribute will add features to an element by linking it to other elements and style inputs. - What is the anatomy of an HTML document?
This would be a typical web page setup…
-
What is HTML?
HTML stands for hypertext markup language used to define and alter pieces of web content. -
What is HTML used for?
Structuring web pages and content. -
Why are we learning HTML?
In order to understand and setup systems that opp orate on the web. -
What is an HTML tag?
A tag is an indicator used to define a piece of content. -
What is the structure of an HTML tag?
element </closing tag> -
What is an attribute?
An attribute is additional descriptive information inside of the tag which is not shown in the content. -
What is the anatomy of an HTML document?
<!DOCTYPE html> (Preliminary introduction to the script).
<html> (Root element, sets the structure, comes before and after <head> </head> & <body> </body>).
<head> (The head contains many definitive attributes and data reguarding the page, which is unseen by viewers)
<meta charset="utf-8"> (Defines the character set your page can read, "utf-8" contains most characters from most written languages).
<title>My test page</title> (Name of the page located in the browser tab / bookmarks).
</head>
<body> (This section contains all the viewer content).
<img src="images/firefox-icon.png" alt="My test image">
</body>
</html>
-
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 is used 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?
just to help us creat a website to build upon -
What is an HTML tag?
The enclosing tag can make a word or image hyperlink to somewhere else -
What is the structure of an HTML 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?
every HTML document is formed by a head and body
- What is HTML?
Hyper Text Markup Language is code which defines the structure of a webpages content.
- What is HTML used for?
It is the code used to structure a web page and its content.
- Why are we learning HTML?
It is good take have an understanding of how webpages work, to use as a base for further programming to be layered on top.
- What is an HTML tag?
A HTML tag, is used to wrap information you want to apply to your webpage.
- What is the structure of an HTML tag?
The structure of a HTML tag, is to wrap the information you want to use in the webpage, by placing the tag in front of and after the information (sandwiching it). Normally the tags will be within < and >while to follow the information it is given a forward slash to end the wrapping .
- What is an attribute?
Attributes contain extra information that will not be shown on the webpage, but can be used to affect the information to be shown. Attributes will have a name and value designated, these can be used to identify items with similar properties.
- What is the anatomy of an HTML document?
1- HTML it’s a markup language that defines the structure of your content.
2- Is used to structure a web page and its content.
3- Because I should be able to build things that work. And this is the basic.
4- A tag is what we use to state where the element beggins and ends
5- The structure of a tag consist of the name element wrapped in opening and closing angle brackets.
6- An attribute is extra information that you don’t want to appera in the actual content.
7- That wraps up the basics of individual HTML elements, but they aren’t handy on their own. Here we have the following: DOCTYPE. I’ts a required preamble. They don’t do much, and are basically just needed to make sure your document behaves correctly. This element wraps all the content on the entire page and is sometime known as the root element. 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. This element set the character set your document should use utf-8 which includes most characters from the vast majority of written languages. TITLE. This element sets the title of your page, which is the title that appears in the browser tab and in the bookmark/favorite. BODY. this element contains all the elements that you want to show to web users when they visit your page, whether thats the text, images, videos ,games, playable audio tracks or whatever else.
-
What is HTML?
It’s the code that is used to structure a web page and its content. It stands for HyperText Markup Language. -
What is HTML used for?
Used for displaying text, pictures, videos, and media on websites. -
Why are we learning HTML?
So are smart contracts that we build will be able to interact with a website. -
What is an HTML tag?
Used to create an element on a web page, it may contain text, images or links to other information. -
What is the structure of an HTML tag?
Includes a Opening and Closing tag. -
What is an attribute?
Extra information about the element. -
What is the anatomy of an HTML document?
Contains a doctype, a html element, a heading, a title, and a body.
1-> HTML is a universal internet browser language to structure a static webpage with his content
2-> For building static webpages
3-> Because static webpages are the basic structure to put out content from databases, dynamic structures and afcourse smart contracts, it is in that case the absolute frontend
4-> the Tags holding the name of the element and gives the start and the and of that same element
5-> Tags identifying parts of the document to behave in a certain way,
6-> A attribute contains extra information about the element that you don’t want to appear in the actual content.
7-> This wraps up the basics of individual HTML elements
- Hypertext Markup Language
- Used as a protocol to create simple websites that can interact with a user interface.
- It is important to be able to design and implement your own web pages. When developing a project, it is better to have 100% control of the associated content.
- A tag is an instruction for the web browser as to how it will interact with the content; how to display it, and is how differentiation happens within a web page.
- Tag structure: Content-text, images, links</Closing tag>
- An Attribute is additional information that you don’t want to appear in the content, but identifies the content in some way. This allows all content of that type to be modified in a uniform way based on instructions you create.
- It looks like simple text making up a series of elements. If you knew the function of all of the tags, it looks like you may be able to anticipate what the HTML document would produce when interacting with the user interface.
1-What is HTML?
is the code that is used to structure a web page and its content
2-What is HTML used for?
to structure a web page and its content, enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. 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
3-Why are we learning HTML?
to structure a web page and its content
4-What is an HTML tag?
- 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.
- 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.
5-What is the structure of an HTML tag?
opening tag
closing tag
6-What is an attribute?
an href attribute is use to make a link to another website on the page
7-What is the anatomy of an HTML document?
html, head and body
- What is HTML?
HTML is not a programming language but a markup language that defines the struture of your content.
- What is HTML used for?
HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content.
- Why are we learning HTML?
We should be able to build things that work, we should be able to build a small website that interacts with the blockchain.
- What is an HTML tag?
HTML tags are used for opening and closing an element. The opening tag marks where the element begins and the closing tag marks where it ends.
- What is the structure of an HTML tag?
Opening tag: Open angle bracket, element name, closing angle bracket.
Closing tag: Open angle bracket, forward Slash, element name, closing angle bracket.
- 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?
Individual elements are combined to form an entire HTML page such as doctype, html element, heading, UTF-8, title and body.
I did this html style to see if I've actually learnt something here
1. It is a mark up language that will define the structure of your content
2. To give websites structure and utility
3. As a basis to learn simple code where the same logic can be used for other protocols
4. A tag you can use later to action instructions
5. Tags need an open close and can contain other tags inside of it
6. An attribute contains additional properties that can be instructed
7. It needs to have certain opens and closes for large chucks of the code Like html - /html to open and close or head - /head open close.
I get the feeling this is not going to work properly. I'll be really happy if it does. I will have successfully got the idea of how this all works
- What is HTML?
- HTML stands for Hyper Text Markup Language
- What is HTML used for?
- HTML is used to structure a web page and its content
- Why are we learning HTML?
- We need to first learn how to build websites, so later (when building dapps) this website can interact with smart contracts. The website will be the front end.
- What is an HTML tag?
- In HTML, tags are used for creating elements.
- What is the structure of an HTML tag?
- there are an opening and closing tags. The opening tag consists of the name of the element, wrapped in opening and closing angle brackets. The closing element 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?
- doctype. It is a required preamble.
- the html element.
- the head element.
- meta charset=“utf-8”
- the title element.
- the body element.
-
HTML stands for Hypertext Markup Language. As a markup language, it is not a programming language, it is a standardized syntax that defines the structure of a website’s content
-
HTML is used to structure a web page and its contents
-
It is important to learn HTML to understand basic website structure. Building websites plays a big role in the frontend part of most software development. To create functional blockchain projects that rely on smart contracts, which may be seen as the backend part of the project, knowing how to create the frontend is essential to be able to build a complete project
-
HTML tags are responsible for opening and closing HTML elements, which are the basic building blocks of HTML structure
-
An opening tag consists of the name of the tag (“p” if the element is a paragraph, for example) wrapped in opening and closing angle brackets ("< p >" for opening a paragraph). The closing tags is the same but includes a forward slash, “/”, before the name of the tag ("< /p >" for closing a paragraph)
-
Attributes are included in the opening tag of an element and contain information that relates to the content (formatting, links, etc.) but is not explicitly visible on the website
-
HTML documents start with “< !DOCTYPE html >”, after which the “< html >” element is started. Inside the html element there are the “< head >” and “< body >” elements
Fun fact:
in number 5, when explicitly writing the actual tags without the spaces, the editor opened and closed a paragraph xD
This shows this forum interprets HTML
And number 7 was a complete mess before I added all the spaces inside the angle brackets
- HTML is a Hypertext Markup Language.
- It is used to structure a webpage and its content.
- We are learning HTML to connect smart contracts with a website.
- HTML tag is a special word or letter surrounded by <>. Tags are used to create HTML elements.
- The structure of an HTML tag is opening tag
and closing tag
. - An attribute contains extra information about the element that you do not want to appear in the actual content.
- An anatomy of an HTML document is:
1. What is HTML?
A Markup language. It is short for HyperText Markup Language.
2. What is HTML used for?
For formatting and structuring websites
3. Why are we learning HTML?
So that we can create a front end to interact with a blockchain smart contract behind the scenes
4. What is an HTML tag?
Syntax which surrounds content to identify how the enclosed content should appear on the webpage.
5. What is the structure of an HTML tag?
A tag uses angle brackets to surround an element. There must have an opening tag and closing tag. For example “p” enclosed in <> is an opening tag and /p enclosed in <> is a closing tag
6. What is an attribute?
An attribute provides additional information for the element. For example the img element can contain attributes for src (image url) and alt (alternate text)
7. What is the anatomy of an HTML document?
DOCTYPE html - required preamble
html - root element surrounding entire html code
head - container for information about the web page that won’t be visible e.g. character set, SEO key words, page description
meta charset=“utf-8” - character set of the web page
title - Title of the page, name of browser tab, also appears as the description if the page is bookmarked
body - the body of the webpage
You can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.
function formatText(){
let words = “I’m a preformatted Text box, Please use me wisely!”
}
Carlos Z.
- What is HTML? It is a markup language for defining the structure of the content.
- What is HTML used for? For structuring a web page and its content.
- Why are we learning HTML?To be able to build a front-end which will communicate with a back-end (smart contract in our case).
- What is an HTML tag? It is a part of an element in the HTML or better the start and the end of it.
- What is the structure of an HTML tag?The name of the element wrapped in opening and closing angle brackets.
- What is an attribute? A part of the element which does not appear in the actual content.
- What is the anatomy of an HTML document? A set of elements who have an opening tag, the content and the closing tag.
-
HTML stands for Hypertext Markup Language and it defines the structure of the web content.
-
It is used to build simple static web pages.
-
So we can build the front end and integrate to the back end solutions on the blockchain. ]
-
The tag is the name of the element.
-
The tag is formed by the opening tag and closing tag.
-
An attribute contains extra information of the element, that is not be shown on the content.
-
The anatomy is what gives structure to the content.