-
What is HTML?
HTML stands for Hypertext Markup Language and is a markup language consisting of diferent elements to modify the appearance of web content. HTML is not a programing language. -
What is HTML used for?
To organize and structure the layout and appearance of web pages using diferent elements and tools. -
Why are we learning HTML?
HTML could be seen as the first stepping block and a base for learning coding and programing. -
What is an HTML tag?
Tags are basicaly the instructions (comands) for the markup language. -
What is the structure of an HTML tag?
< XYZ/ > -
What is an attribute?
Special words/characters containg extended information and controling the elementsâ behavior. -
What is the anatomy of an HTML document?
Every HTML document consists of two elements:
Head elements - provide page title and general page formatting commands Body elements - put the main HTML text in this part.
-
HTML = Hypertext Markup Language is the markup language (not programming language) code used to structure a webpage and its content.
-
HTML is used to make webpage content act or appear a certain way.
-
HTML is the fundamental content-structuring language used for websites. We are learning HTML so that we have the ability to create platforms (frontend) for our smart contracts (backend) = the ability to create the user interface of a Dapp.
-
HTML tags name and indicate the start and finish of an HTML element - they are bookends containing the essential info of an element.
-
= this is the opening tag - p indicates the name of the element - < > indicates this is the start of the element.
- = this is the closin tag - p indicates the name of the element - < / > indicates this is the end of the element.
-
Attributes can be added to elements for the purpose of adding extra information about the element that you donât want visible is the actual content.
-
The anatomy of an HTML document represent the sum and order of all individual elements that make up that HTML document.
-
Hypertext Markup Language (HTML) is a markup language that defines the structure of your content, it is NOT a programming language.
-
HTML is used to display contents on the internet in a particular way.
-
We are learning HTML as it is the most basics of content presentation in the web, this will help beginners build basic knowledge of web data presentation.
-
HTML tags are opening and closing of a HTML content and allows for presentation selections such as font size.
-
The structure of a HTML tag begins with a starting tag
and an ending tag
-
HTML attributes are additional info about an element and usually specified at the start tags.
-
HTML Documents consists of two elements, Head Elements that provides title and formatting commands while Body Elements consists of the main HTML text
<html>
<head>
</head>
<body>
<h1>My attempt at making a nice heading with HTML</h1>
<h2>And now here is my beautiful list of answers</h2>
<ul>
<li>1 & 2. HTML stands for hypertext markup language and is the code used to
build a website and structure it's content. It is not a programming language,
but rather a means of defining the structure of the content</li>
<li>3. It is important to learn HTML because it will allow you to develop
front end web pages that are able to interact with the back-end blockchain</li>
<li>4 & 5. An HTML tag contains an element name enclosed in angle brackets.
There are both opening and closing tags, determining where an element begins
and ends, respectively. Closing tags differ from opening tags in that they have
a forward slash preceding the element name. They essentially define how the
subsequent content, or lack thereof, will be displayed on the webpage.
In other words, how the web browser interprets the content you are
providing</li>
<li>6. An attribute is additional information you do not want to appear in the
actual content. For example, when providing a link to a website, the attribute
will define where the link goes, but will not display the full web
address.</li>
<li>7. HTML documents consist of the html element which wraps
all content on the page, head element, title element and the body element.</li>
</ul>
<p>I hope this looks good^^^:)</p>
</body>
</html>
- HTML is a markup language.
- HTML enables a person to wrap content to make it appear a certain way, or give it certain characteristics.
- Learning HTML will provide us with fundamental coding knowledge that will also enable us to recognize other types of code. Think of learning to walk before you run; slow and steady wins the race.
- An HTML tag contains the alphanumerical element wrapped in opening and closing - indicating where an element begins and ends.
- example "< p>, < /p> (I know there isnât supposed to be a space in the tag, I just put it there so there wouldnât be a real paragraph break in the answer.)
- Attributes contain hidden information about the element that can be easily referenced later.
- Doctype, html, head, meta character set, title, body.
-
HTML stands for HyperText Markup Language. Itâs a markup language and not a programming language, used for building and editing websites.
-
HTML essentially sets the structure of the data and information you want to include/display on your website. You can set and modify a large number of parameters such as titles, headers, paragraphs, lists, images, hyperlinks, etc. HTML is a powerful tool for building a website and making it look the way you want it.
-
To be able to build products on the blockchain, you will also need a place to display your products, which means you will need a website. So learning how to program a website and making it function and look the way you need is an important skill that can greatly enhance your blockchain development. HTML is also a great starting point for a user to learn how to program, and that experience will carry over to blockchain programming and javascript programming.
-
HTML tags define elements, and enclose them within an opening tag and a closing tab. This helps give specific elements on your website specific properties, or displays them in a specific format.
-
HTML tags consist of opening and closing angle brackets <>, with the element type (its respective symbol/syntax) in between the angle brackets. Closing tags also require a forward slash within the angle brackets. An example of a HTML tag would be something like:
-
An attribute is a part of an element, and contains extra information about the element that you do not want displayed on your website content. Attributes consist of an attribute name and value. Attributes must have a space between them and the element name (or previous attribute should it exist), followed by a â=â sign, and then the attribute value wrapped with opening and closing quotation marks.
-
The anatomy of a HTML document is as follows:
- : The doctype, which is a requirement for the document to behave correctly.
- : which is the html element, which wraps all the content on the page and is called the root element.
- : which contains all the information in your html page that is not content you want to show your website users.
- : which sets the title of your page, which shows on the website browser tab
- : which contains the content you want to display to your users, and will include all the other elements you need for your website.
-
HTML is basically a markup language that is used for programing/coding websites. I would compare it with the alphabet(ABC), like when you put some letters together to form a specific word. With HTML you put some codes together, to for example form the object, text, colors etcâŚ
-
HTML is used for programing/coding webpages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.
-
We are learning HTML because it is âbasicâ coding language that we have to use for building simple websites that are able to interact with Blockchain.
-
A tag is a communication tool to communicate a certain action to the browser.
-
HTML, Head and Body.
-
Attributes is adding something extra to your coding that you dont want to appear on the actual content. for example if you want to make a word look bigger than the one prior or next to it.
-
Doctype, head elements and body elements.
Loved your answers. Itâs easy to understand. Great work.
Carlos Z
-
What is HTML?
HTML (Hypertext Markup Language) is used to tag text content to specify how it should be used and reference other material (images, links). -
What is HTML used for?
HTML identifies how the content on a webpage should be used/displayed, as text, images, videos, etc. -
Why are we learning HTML?
HTML is the display front end of the web, which weâll probably want to use. -
What is an HTML tag?
HTML tags are used to enclose the relevant content you want effected by the tag. -
What is the structure of an HTML tag?
content -
What is an attribute?
The attribute contains extra information about the content. -
What is the anatomy of an HTML document?
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> Heres a title. </TITLE>
<!-- additional header stuff -->
</HEAD>
<BODY>
<!-- Main content of the webpage -->
</BODY>
</HTML>
- What is HTML?
HTML means Hypertext Markup Language
- What is HTML used for?
HTML is used to format and structure Web pages
- Why are we learning HTML?
HTML is important to set up websites to interact with crypto applications
- What is an HTML tag?
A HTML Tag is a set of instructions which allows to apply a format a specific content
- What is the structure of an HTML tag?
A HTML Tag is composed of:
-Opening Tag
-A closing Tag
-A Content
-An optional attribute
- What is an attribute?
An attribute adds a particular effect on a certain Tag. Itâs made of an attribute class and an attribute value
- What is the anatomy of an HTML document?
- Doctype: required element
- html element: root element
- head: element: includes of the information that are not directly visible on the page
- meta charset=âutf-8â sets the character set of the page
- title: sets the title of the page
- body: contains all the elements that we want to show
-
HyperText Markup Language is used to transfer data in the form of âtextâ (without extra styling/logic in it). Initially it was designed for sharing documents and there the content is important, not the styling.
-
Itâs used to âtellâ the client (usually the browser) what content and structure particular webpage has.
-
Because JavaScript is mostly used on the Front-End where it does itâs âmagicâ by manipulating the HTML and therefore we need to know HTML in order to use JS.
-
Itâs a segment of text placed in brackets that mark the beginning or ending of an element.
-
<tag atribute1=âattribute valueâ atribute2=âavââŚ>content of the element (there could be other elements, surrounded by opening and closing tag in the content).
-
Itâs an addition to the tag providing some metadata (extra information about how the tag should be treated by the client).
-
Itâs a text document build entirely of tags forming tree-like structure. It should always be wrapped in tags. There are head and body parts - in the head part we keep the metadata and in the body there is the actual content to be visualized. Elements should NOT get split like this for example: because this would break the tree and might lead to faulty behavior. One element should have both his opening and closing tags inside the other or have both outside.
- What is HTML?
HTML stands for HyperText Mark-up Language, is a mark-up language for websites.
- What is HTML used for?
HTML is used to give websites data structure for the content.
- Why are we learning HTML?
HTML is the front end for a lot of blockchain applications. The intention of learning HTML is to allow us to create simple fully functional apps.
- What is an HTML tag?
A HTML Tag is the main element of the website structure.
- What is the structure of an HTML tag?
Most HTML tags, start with , and end with . The âtagâ is a key word indicating the type of tag it is. Between the tags, you have the content, and the tags can have attributes.
- What is an attribute?
An attribute is a property that modifies, adds information, or a characteristic to a Tag.
- What is the anatomy of an HTML document?
Hi! I am just helping by identifying a typo I found in Lesson 10.
Javascript Programming for Blockchain Developers / Categories / HTML & Web / Understanding Web Technology - Hardvard Lecture
âHardvardâ: Should be: âHarvardâ
1.Its a language that is used ti create webpages.
- HTML is used to create webpages.
3.Ivan said that it was good to have something to show off with xp, but also he said that webpages are the visible part of the structures that we are gonna create.
-
I dont know how to say it in technical terms but are simbols that are in the begining and at the end of the of the content, they are there to mark where things end and where things start.
-
A tag is composed by a simbol called angle bracket, the name of the tag and a closing angle bracket for example : that would be a opening tag, and a closing tag looks like this : .
-
An attribute its a trick that allows the editor to hide some extra information inside a word or a phrase or a paragraph.
-
An HTML document is composed by text and images, a title, a capsule that encloses all this text and images, but thereâs way more than that.
-
HTML stands for hypertext markup language. Means, it is a way to structure text in order to make it become more readable on the web. It is not a programming language.
-
It is used for structuring text on websites. For example, with HTML you can create lists, highlight words in bold, italic and so on, define paragraph headings (h1, h2,âŚ), links, insert images,âŚ
-
we need it for designing the skeleton of our frontend page that will be used for accessing/handling with our dapps for example.
-
an HTML tag contains HTML elements and sometimes also attributes. With a HTML opening and closing tag you define where the specific markup element begins and where it ends.
-
structure of an HTML tag: As an example, here we have an h1 element beginning with <h1"> (the " is only for not making it appear here formatted as h1) and ending with </h1"> (also here, Iâve made it invalid adding a â). If we put a text between both tags it will show like this: <h1â>text to be shown as h1 on the page
-
an attribute is additional information we can use within our HTML tags. It wonât show up as content on the page weâre creating but is used for example for styling purposes, or for communicating extra information to search engines, such as rel=ânofollowâ attributes for links within âaâ elements.
-
the anatomy of an HTML document in order to make it work is like that:
definition of the doctype:
the html opening and closing tag
wrapping into it:
the element (always using opening and closing tags). The head contains information we do not want to show up on the page, such as information for crawlers if the page should be indexed on search engines or not, âŚ
the element with opening and closing tags. In the body will be found our siteâs visible content.
- What is HTML? - 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? Code used to structure a webpage and its content
- Why are we learning HTML? To give us a base to begin with
- What is an HTML tag? it is used for creating an element
- What is the structure of an HTML tag? The name of an HTML element is the name used in angle brackets such as
<p>
for paragraph. Note that the end tagâs name is preceded by a slash character,</p>
- 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? 7. Every HTML document consists of two elements:
Head elements â provides page title and general page formatting commands
Body elements â put the main HTML text in this part.
-
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?
For building web applications and structure content in general in a semantic way. -
Why are we learning HTML?
To be able to display data on the internet. -
What is an HTML tag?
Tags states where the element begins or ends. -
What is the structure of an HTML tag?
opening tag/closing tag -
What is an attribute?
Attributes contain extra information about the element -
What is the anatomy of an HTML document?
Itâs the basic structure that holds the elements combining into whole page.
1 HTML (Hyper Text Markup Language) is not a programming language but a markup language to structure a website and its content.
2 It is used for structuring the content of a website
3 we learn it because later on we will learn about smart contracts and those smart contracts together with a website will form the total experience for the user
4 HTML Tags enclose pieces of the website and can attribute some functions to it like, making the text bold or italic or hyperlink to somewhere else.
5 The structure of a tag consists of an opening tag and a closing tag, it contains the name of an element wrapped in opening and closing brackets. The closing tag also has a forward slash in front
6 An attribute contains extra information about the element between the tags, but it does not appear in the content
7 the anatomy of a html document looks like:
!DOCTYPE html -element, the html- element, the head- element, the meta charset=âutf-8â element, a title element and a body element.
Hyper Text Marketing Language is used to make a normal webpage. It is used to convert words into paragraphs (spacing and such). Through using HTML one can also input pictures or embed different types of media onto a front end website. We are learning this first because it is the easiest way to start making a website. Once HTML is understood then Java should come a bit easier. An html tag can change how something looks. It can make the words/letters bold, italics etc. Also, it can take a user to another website if a link is embedded into it.
The structure of an HTML tag usually starts with so if starting with a paragraph it would look something like thisâŚ
This will be the start of the first paragraph of the story on how Bitcoin was created
An attribute contains extra information about the element that you don't want to appear in the actual content. I wrote a music webpage on angelfire . com years ago.. 15?.. I am a bit familiar with HTML but looking forward to learning more and more. I used many lines of code that I probably could not explain at that time but from googling and reading I learned how to implement certain things. I'm excited to learn and be able to explain all of these different things and take programming to another level in my life as a full time career. The anatomy of an HTML document is like the meat and potatoes of the doc. As I stated earlier it starts with and ends with These are the things I was referring to.. Knowing how to use some of the tools but not knowing how to explain them. Really looking forward to learning more from Ivan in this course!! @cryptoquandary on twitter if you see an @ from CryptoQuandary that is me!1.and 2.:Hypertext Markup Language - it is a language used to create (structure) websites. On the other hand, it is not considered as a programming language.
3.Because to create a good front end GUI, it is inevitable to know web design.
4.An HTML tag is âdefiningâ the HTML element. It consists the attributes.
5.<> and </> for the opening tag. It can be a paragraph, but also can consist attributes (unique or non-unique, etc.). All elements have an (or more) opening tag(s) and closing tag(s).
6.An attribute is helping to form the content of the element. So e.g. you can define several elements with the same attribute(s) and after it is enough to target that attribute to make changes in all elements consisting that specific attribute.
- Angle brackets are not working for me in the forum most of the cases
!DOCTYPE html
html
head
meta charset=âutf-8â
title></title
/head
body
All your content
/body
/html