@KryptoDr
Excellent answer sir(s)! remember you can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.
I am a happy Preformatted Text box, please use me wisely!
Keep that amazing job!
Carlos Z.
@KryptoDr
Excellent answer sir(s)! remember you can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.
I am a happy Preformatted Text box, please use me wisely!
Keep that amazing job!
Carlos Z.
I’m not entirely sure if you are adressing me but just in case thanks thanks a lot for the support.
yes, both of you guys are doing a great job! keep it up man!
HTML stands for hyper text markup language. HTML is the main language used in website development. Contrary to popular believe it is not a programming language, it is a “markup language” that is used to give structure to content.
HTML is used for web development and front end site creation. It provides all of the textural and image structure and formatting that you see when you visit any website on the internet.
We are learning HTML because without basic web development knowledge we will not be able to set up our own website that will later interact with the blockchain. If we cannot create our own website up we must pay someone else to do this for us, which can me expensive and possibly more time consuming depending on that coders amount of clients.
An HTML tag is used to start and end an element in the markup language.
Examples of the structure of an HTML tag include opening tags < p > and closing tags < / p > (normally these would not have spaces between characters). P is the tag variable in the case, and all tags will use angled brackets, with the end tag always having a backslash before the variable to signify a cease of the element.
An attribute in HTML is a way of extending a tag or changing the way a tag behaves. Attributes can also help to feed the tag metadata. An attribute will always consist of a name and a value given to that name. Ex. name=“value” Attributes allow for elements to be given identifiers.
The anatomy of an HTML document first includes the doctype, followed by the html opening element. Then comes the head element with wraps any metadata and titles inside of it. After the head comes the body element (traditionally text paragraphs and images will go in here), and finally the closing html element.
(for paragraph). The closing tag is the same as the opening tag, exept that includes a forward slash before the element name:
. Inbetween of the tag is the content(text). All together is the element.1- HTML (hypertext markup language) is the code that is used to structure a web page and it`s content.
It is not a programming language, its a markup language that defines the structure of your content. It consist of a series of elements and tags that are used to modify appearance and the way the web page works or acts.
2- HTML is used to structure a web page and order its content.
3- We are learning HTML because it is the base of web development and in order to build websites that work with blockchain we need to know how to structure a web page first.
4- A HTML tag is needed in order for us to create an element, it consist of an opening tag, the content and a closing tag, all these together form an element.
- The opening tag states where the element begins.
- The closing tags states where the element ends.
5- The HTML tag structures as following:
< Opening tag> Content </closing tag> .
6- An attribute contains extra information of the element which you don´t want to appear on the actual content.
Its structure is the following:
< tag attribute name= "attribute value "> Content < / tag >
7- < !DOCTYPE html > the doctype.
< html > < / html> the HTML element wraps the content of the entire web page. Also known as 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 "> it sets the character set your document should use.
< title > < /title > the tittle element set the tittle of your page, which is also the title which would appear on the browser.
< body> the body element contains all the content that you want to display to the web users that use the page.
<!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>
My Dog is lazy
Hypertext Markup Language, HTML, is the markup language that specifies the structure of pages on the Internet. It is used to specify sections of a Web page and links pages together so that one can travel the 'Net. It’s important to learn HTML to understand how a basic web page is put together.
HTML tags mark elements of a page that would occur in natural writing, like a heading, paragraph, image or table.
HTML tags use angle brackets < > to separate tags from the content, usually. The beginning of an element is marked with an opening tag, like <p>
, followed by the paragraph’s content, then closed with a similar style tag plus a leading forward-slash as the closing tag, </p>
.
Attributes are special values that the element can be assigned, like a “class” that specifies how the element is to appear on screen. Attributes sit inside the opening html tag in name-value pairs, like name="value"
.
An HTML document starts with the HTML declaration, head, meta, title, end of head, followed by the body, navigation, content, footer, end of body, end of html.
What is HTML?
HTML is not a programming language; it 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 (Hypertext Markup Language) 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 learn the basics in coding and set a foundation for our learning path.
What is an HTML tag?
A tag indicates the start and end of an element.
What is the structure of an HTML tag?
Opening Tag = <>, 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?
The individual elements that are combined to form an entire HTML page.
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?
1. What is HTML?
Hyper text markup language
2. What is HTML used for?
To “organize/construct” information a certain way on a website.
3. Why are we learning HTML?
It’s a fundamental part of making websites and is a good startingpoint to learn coding.
4. What is an HTML tag?
The frames for what the element should be. (shows where it begins and ends and what should be included)
5. What is the structure of an HTML tag?
It consists of greater then and lesser then symbols with a indicator betwen that says what type of element the tags are framing. Examples < p > < a > etc. The end tag needs to have a forward slash included so show that it’s the end tag. ( < / p > )
6. What is an attribute?
Information for an element that is not seen in the final version. (instructions/specifikationes for the element)
7. What is the anatomy of an HTML document?
Doctype
Htlm
Head
Titels
Meta charset
Body
then to close the tag you add forward slash after the opening bracket like this:
1. What is HTML?
It is a markup language which creates structure of your content.
2. What is HTML used for?
Creating electronic documents (pages) that are displayed on the World Wide Web. (Creating websites)
3. Why we learning HTML?
When we build smart contract we need to have one way to interact our smart contracts with and web interface is the right way.
4. What is an html tag?
It’s an element which include one opening tag and one closing tag, the opening tag represent the name and where the elements begins. The closing tag this tag represent where the element ends. In every element you have content it can be text, images or script.
5. What is the structure of an HTML tag?
An opening tag telling the page what do display and closing tag represent where the element ending.
6. What is an attribute?
A characteristic of a particular element to provide greater information.
7. What is the Anatomy of an HTML document?
This is how a normal html document looks like.
(the head part is used for text and tags that do not show directly on the page, except “title”) (the body part is used for displaying all text, images, hyperlinks and so on, shown on directly on the page.)1 - HTML is a basic language to build simple websites.
2 - It is used as a base language to develop websites
3 - We are learning HTML to help us understanding better programming, to learn how to keep learning withing programming, and to be able to create basic websites that can interact with our smart contracts.
4 - An HTML tag specify what characteristics the text in between needs to have.
5 - < tag> text </ tag>
6 - An attribute has the information of the element that does not need to appear in the page.
7 - The anatomy of an HTML document is the basic layout that it needs. start with HTML tag, HEAD, TITLE, BODY, and always close tags in the right order.