- HTML (Hypertext Markup Language)
- Is the code that is used to structure a web page and its content.
- It can be used to 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, and can make font bigger or smaller, and so on.
- The content</The closing tag>
- Attributes contain extra information about the element that you don’t want to appear in the actual content.
- That wraps up the basics of individual HTML elements.
Q: What is HTML?
A: HTML (Hypertext Markup Language) is a markup language that defines the structure of webpage’s content.
Q: What is HTML used for?
A: HTML is used for structuring the contents of a webpage.
Q: Why are we learning HTML?
A: To be able to create webpages (frontend for our programs).
Q: What is an HTML tag?
A: Tags are the “words” of HTML that tell the browser how to interpret/show the content between them.
Q: What is the structure of an HTML tag?
A: Opening and closing tag, content between them and attributes of the opening tag.
Q: What is an attribute?
A: An attribute contains extra information for interpreting the content between tags.
Q: What is the anatomy of an HTML document?
A:
<html></html>
<head></head>
<meta charset="utf-8">
<title></title>
<body></body>
-
HTML is a Markup Language, that tells content what to do with Tags.
putting text in bold or something else. -
It is used to make and structure webpages.
-
We need HTML for making the front-end of a Dapp or making a webpage to interact with a smart
contract. -
a Tag is an instruction to your content. Every tag has a different way to show content.
< opening tag >
< / closing tag >
6 An Attribute is used to add something to an Element Like witdh or height, without it apears in
your actual content. < opening tag atribute >
< html >
… < head >
… < /head >
< body >
< /body >
< /html >
greetz ManzO
- What is HTML?
HTML stands for Hypertext Markup Language - What is HTML used for?
For structuring and defining the way the content on webpages to be displayed. - Why are we learning HTML?
To build websites - What is an HTML tag?
HTML tag defines the beginning and the ending of the element - What is the structure of an HTML tag?
HTML tag constists of an opening tag and a closing tag - What is an attribute?
Attribute provide extra information about the element that you do not want it to appear on actual content - What is the anatomy of an HTML document?
The antonomy of an HTML documents is the way individual elements are combined to form an entire HTML page.
What is HTML?
HTML (Hypertext Markup Language)
What is HTML used for?
Is the code that is used to structure a web page and its content.
Why are we learning HTML?
Because it will serve as the front-end of our development, while blockchain is the back-end.
What is an HTML tag?
The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, and can make font bigger or smaller, and so on.
What is the structure of an HTML tag?
Opening tag, closing tag and the content in between,
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?
an example
My test page1: What is HTML?
Hyper text language.
2: What is HTML used for?
For making webpages.
3: Why are we learning HTML?
So that people can interact with us and our product.
4: What is an HTML tag?
a tag is something that is used for defining something in a code.
5: What is the structure of an HTML tag?
HTML tags should begin with a <?> and end with a
6: What is an attribute?
Attributes can provide extra information about an element.
7: What is the anatomy of an HTML document?’
<body>
...</body>
- HTML is a markup language that define the structure of a content.
- HTML is used to structure a web page
- We learn HTML to be able to create static websites
- HTML tag it is an element that defines where a specific paragraph start and when is the end
Hello
- Structure of an HTML tag is the following:
- start tag:
- content : Hello
- end tag :
-all the above together are called: Element
- An attribute is an extra information that can be assign to an element
- The HTML anatomy is:
- : starting tag where will be put all the content
- : here is the place where we will put the page description and other keywords
- : what character will use
- : web page title
- : end of the head
- : starting our website content
- : closing out website content
- : closing html tag.
- HTML is Hypertext Markup Language
- HTML is used to define a structure of the wab page and its content
- We are learning HTML to have a knowledge of wab page structure and abbility to bild a simple site (front-end) for our future blockchain study
- HTML uses elements to give some additional mianing to a browser. Element consisns of tag, tag and content wraped between these two tags
- The opening tag structure is angle brackets and a name of element between them. The closing tag has an additional forward slash
- An attribute carries extra information about the element which an author doesn’t want to appire in the contect of the wab page
- HTML page anatomy is structured in following way:
<!DOCTYPE html> <html> - contains all information which is dispalyed on the wab page <head> - main information about contant <title>Name of the wab page</title> </head> <body> - sets all the contant you want to show <h> </h> - header <p> </p> - paragraph </body> </html>
What is HTML?
hypertext markup language.
What is HTML used for?
Telling web browsers what content you want to comminucate (or have communicated to you), and how you want it done.
Why are we learning HTML?
It’s a key building-block of the fastest, widest reaching communication method that exists today.
What is an HTML tag?
A piece (or pairs) of code which lets the browser know what kind of element you want to create.
What is the structure of an HTML tag?
<something />
or <something>
some content </something>
. The tag can also contain attributes.
What is an attribute?
metadata about the element, used to define it’s properties. Also used to reference the element through the DOM, and read, modify the element’s properties.
What is the anatomy of an HTML document
Kind of like a snowman with emo hair.
Head element allows importing external resources (css, js etc) and adding tags to track users and spam SEO. It’s content is mostly hidden from the user, apart from the favicon and title text.
The body element content (within it’s and it’s child tags) is mostly visible, but can be hidden (or translucent) depending on styling.
Head tag is team management, and Body tag is the playing field.
- HTML is a markup language used to define the structure of web page content.
- HTMl is used to build web pages.
- We learn HTML because it is a front end that represents an interface to the back end applications we will build using solidity.
- HTML tag is an element used to enclosed different parts of the content and make them appear in a certain way.
- HTML tag consists of opening and closing element wrapped in angle brackets. The closing tag is same as opening but has forward slash before the element.
- Attribute contains extra information about the element that does not appear in the actual content.
- The Anatomy is the structure of the HTML document and how individual elements are combined to form the entire HTML page.
- hypertext markup language
- for adding and managing a content on our website
- we want to make a connection and interface to our dapps
- it’s a tool that allows us to manage the content
- opening tag, closing tags
opening tag consints of angle brackets and the name of the element inside them
closing tag has also a forward slash before the element name - it’s an extra information about the element
- !doctype html - setting up the rules of the page;
html - everything what is the webpage consists of;
head - non content;
body - content;
-
& 2.HTML is a series of structured elements that contain content that you would like to show (or not show) on a webpage. HyperText Markup Language.
-
Learning HTML will enable me to create a webpage which in turn will help me learn Javascript which will eventually be the place where I shill my dastardly scam coin
(Joke) to the uneducated public
-
& 5. a HTML tag is the part of the element which denotes the start and finish of an element (usually) consisting of angled brackets
the closing of which involves a forward slash
-
An attribute allows you to assign additional information to the element which you can then use to target that element for styling with CSS or functionality with Javascript
-
A HTML document has a start, a middle and an end. This consists of , HTML element which encloses everything in the page, a Head element with charset (the characters that can be used) and a title element then a body element or (main content)
-
HTML is a markup language which means,
-
it is not a programming language, instead it is there to display written code in a certain way. It might enlarge a written text or display it as a paragraph.
-
it is basic knowledge of how a website works and is necessary to connect with the web.
-
If we’d have a sentence, tags would help us to wrap the content to transform it eg. in a paragraph.
-
There’s an opening tag and a closing tag. The closing tag comes with an additional forward slash.
-
An attribute contains additional information for the element. The element comprises from the tags and the content.
-
It has a tag, a for the info about the website and the for the content.
- What is HTML?
Code to structure a web page - What is HTML used for?
Structering content - Why are we learning HTML?
To create a place where blockchain based apps can find its conent - What is an HTML tag?
A way to defining a element - What is the structure of an HTML tag?
A name between two brackets - What is an attribute?
A way to give your element a identifier to call up on later - What is the anatomy of an HTML document?
A fixed set of elements to make it work properly as a web page.
I went through this assignment even though I have practiced HTML before and have built websites. I think it will help me understand HTML5 better given the changes over the years. I may cheat slightly for my answers.
- Hypertext Markup Language.
- HTML is used to structure elements and content for web browsers.
- HTML is the interface through which users will interact with our smart contract coding on the blockchain.
- An HTML tag defines a part of a web page to structure it, such as the p tag for making paragraphs.
- Opening tag, content, and closing tag.
- An attribute gives extra information to a tag, and is divided into the name and value, which is in quotes.
- The anatomy is the basic parts of the html document.
-
What is HTML?
It is the code used to develop web pages. -
What is HTML used for?
It is used to structure the content of the web page. -
Why are we learning HTML?
It can be used in association with JavaScript -
What is an HTML tag?
It helps to define an element. -
What is the structure of an HTML tag?
Opening and closing brackets, attribute, content. -
What is an attribute?
Information about the element but not content. -
What is the anatomy of an HTML document?
What is HTML
HTML is a markup language to structure a website.What is HTML used for?
It's used to build the base of a website. HTML itself just provides the static wrappers for all the content we want to display.Why are we learning HTML?
Im learning HTML to build websites that interact with different Dapps.What is an HTML tag?
HTML uses different elements as wrappers for the content. Each element consists of an opening and a closing .What is the structure of an HTML tag?
1.
<tag>
2. content 3.</tag>
A element is build up of three things. First there is the opening tag. Second we do have the content to wrap and third we have the same tag just with a additional backslash as closing tag.
What is an attribute?
An attribute works like an identifier to the individual elements. With this identifier it's possible to like style information to the element.What is the anatomy of an HTML document?
Some old thing i don't know about yet. This is the wrapper for the whole document. It works as header for all the stuff thats not displayed on the page. it's the place for all the contentDo you get my english or do i have to use some kind of grammar tool other than google docs ?
First reading assignment, let’s go!
- HTML stands for Hypertext Markup Language which is a type of markup language.
- HTML is used to define the structure of content that build a web page.
- We are learning HTML because we are learning to create a front end for users to connect with the back end work that we will be doing further in the course.
- A HTML tag is used to create an element or to state the name of the element.
- A HTML tag has an opening tag that consists angle brackets with the name of the element in them, for the closing tag, a forward slash is required before the name of the element, however for empty elements, the closing tag is neither required nor allowed.
- An attribute contains extra information about the element that does not appear in the web page.
- The anatomy of an HTML starts off with:-
.html. element, that wraps all content on the entire page (root element)
.head. element, that contains all information that is not needed to be presented to the page viewer.
.body. element, the main content that the page viewers see.
.title. element, the title of the page
Please do correct me if I have answered any of the questions inaccurately. Would deeply appreciate it
1
.Hypertext Markup Language, …
2. and 3.
To be able to structure a web page and its contents.
4.Opening and closing tags states where the element begins and ends.
5. Consists of the name of the elements wrapped in opening and closing angle brackets,
6.Extra info about the element that will not appear in the actual content.
7.Individual elements that are combined to form an entire HTML page.
- A markup language used for browsers to read and render webpages
- Render webpages on browser
- So we can use webpages as interface for blockchain projects
- Opening and closing tags used as a indicator that defines how the enclosed contents are displayed
- Open tag <> contents </> closing tag
- Attributes are extra information in tag that extends the tags.
- Basically, follows the descriptions of previous questions. HTML are very flexible. Most of the formats are optional.