- Hyper Text Markup Language
- Formatting your content on the web
- To know how to build pages that can interact with blockchain technology
- Tags are used to define elements in html
- attributes are some random shit you can use to further define your element without showing it in the content
What is HTML? Its Hypertext markup language.
What is HTML used for? Its not programming language but its used to structure the content of the webpage.
Why are we learning HTML? We are learning it in order to create the front end of our webpage.
What is an HTML tag? The tag specifies how exactly will look and the structure of the text we are going to write.
What is the structure of an HTML tag? It consists of the name of the element in the angle brackets as per the opening tag. The closing tag has the forward slash more.
What is an attribute? The attribute defines more characteristics or extra information about the element that we do not want to appear in the actual content.
What is the anatomy of an HTML document? The anatomy is basically the whole structure of individual elements corresponding and forming the entire webpage.
- HyperTextMarkupLanguage is a markup language that determines how the website will look.
- It is used for the structuring of the website you are creating. Your content can be customized to act or appear how you want.
- We need to build a website that is going to be the front end of our dapp and how we will interact with our dapp.
- Tags specify what type of element it is. The tags can make words bold, smaller, hyperlink, etc.
- Elements must have both opening and closing tags so the compiler knows where it ends.
- This is extra info about the element that we dont want to appear in the actual content.
- It consists of head, title, body.
- HTML stands for Hypertext Makeup Language.
- Its a makeup language that allows you to structure your content on a web page.
- To enable us to structure UI.
- Its the method used to label specific content so it can be manipulated.
- Opening tag content Closing tag - As an example
Test content
- It a feature that allows you extend the information used in an element.
- DOCTYPE - Root element - Head element - Body element - Meta element - Title Element
Continuing the discussion from HTML Reading Assignment:
- Hypertext Mark-up Language
- Creating web pages to display the pictures and text and other elements from a pre-described format onto an computer/tablet/smartphone screen using a browser. The web pages can originate on a local machine, local network, private network, or from anywhere on the public internet.
3.So that we can create web pages that will interact with smart contract and dApps we create that in turn interact with a blockchain or other decentralized ledger technology. - An HTML tag designates the type of element being used.
- The structure of an HTML tag is: open with and close with The tags have different names and syntax for a particular element that will replace the word ātagā in this example. In between the element open/close tags, the element and its attributes will be listed according to their appropriate syntax. Elements can be nested (opened and closed) inside of another element.
- an āattributeā is extra information about an element that wonāt be displayed in the web page.
when I typed the anatomy it created the line created by the example. I cannot figure out how to type an example of HTML here and have it displayed as an example without this website reply box turning the example code into the actual display described by the example HTML. It is also not displaying my other answers properly.
Any help to do this properly here? At least i know my code works LOL
one more timeā¦
- Hypertext Mark-up Language
- Creating web pages to display the pictures and text and other elements from a pre-described format onto an computer/tablet/smartphone screen using a browser. The web pages can originate on a local machine, local network, private network, or from anywhere on the public internet.
- So that we can create web pages that will interact with smart contract and dApps we create that in turn interact with a blockchain or other decentralized ledger technology.
- An HTML tag designates the type of element being used.
- The structure of an HTML tag is: open with and close with The tags have different names and syntax for a particular element that will replace the word ātagā in this example. In between the element open/close tags, the element and its attributes will be listed according to their appropriate syntax. Elements can be nested (opened and closed) inside of another element.
- an āattributeā is extra information about an element that wonāt be displayed in the web page.
- What is HTML? Hypertext Markup Language. Not a programming language
- What is HTML used for? Is used to structure web pages and content.
- Why are we learning HTML? We are learning HTML to understand the basics of web development in order to build a website/page for people to interact with a smart contract//other code
- What is an HTML tag? Marker used to set the start, end, and nature of an element
- What is the structure of an HTML tag? HTML tags consist of open and closed angle brackets followed by the name of the element then any additional attributes. Every element has an opening and closing tag. Closing tags start with a forward slash (after the angel brackets. Ex: ā
content
ā Empty elements do not have closing tags - What is an attribute? extra information within a tag that applies to the element but is not visible in the final content
- What is the anatomy of an HTML document? The doctype. doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML
The element. This element wraps all the content on the entire page, and is sometimes known as the root element.
the element. This elect provides metadata that describes the content but isnāt actually IN the content.
the element. This elect contains all of the actual content you want viewed on your page.
this element sets the character set your document should use to UTF-8, which includes most characters from the vast majority of human written languages
the element. This element sets the title that appears in browser tabs and bookmark folders
- What is HTML? Hypertext Markup Language
- What is HTML used for? To create content on a webpage
- Why are we learning HTML? Introduction to programming language and web interface
- What is an HTML tag? is used in an element to create an image, link, lists, and other things to make content look or act a certain way.
- What is the structure of an HTML tag? open tag, content, closing tag
- What is an attribute? it contains extra information in an element
- What is the anatomy of an HTML document? doctype, html element, head element, body element with content elements withing the head elements to create text, images, links, lists, etc.
What is HTML?
HTML stands for Hypertext Markup Language and is a markup language that defines the structure of the content of your website.
What is HTML used for?
HTML is used for defining the structure of content within a webpage
Why are we learning HTML?
HTML is required to build webpages and is a base level for which other, more complex logic, can be added upon using programming languages.
What is an HTML tag?
An HTML tag defines the beginning and end of a piece of content.
What is the structure of an HTML tag?
An HTML tag will have an opening tag which states where an element begins and a closing tag which states where an element ends.
What is an attribute?
An attribute can be placed within an opening HTML tag and can provide additional information about an element that wonāt be displayed in the actual content. Attributes should have a name and a value associated with it.
What is the anatomy of an HTML document?
A basic HTML document is comprised of several elements:
I. What is HTML?
HTML stand for Hypertext Markup Language. It is the code that is used to structure a webpage and its content to enclose or wrap a set of paragraphs, a list of bulleted points, or using images and data tables. HTML is not a programming language.
II. What is HTML used for?
HTML is used to place text, videos, images and other contents on a webpage.
III. Why are we learning HTML?
We are learning HTML because it is the basic language to create website. We will be able a static website to may be display text then add logic and interactivity using JavaScript.
IV. What is an HTML tag?
HTML tags enclose the elements or sections of the webpage intended to be affected. An html tag is an element wrapped in opening and closing angle brackets. That is, opening tag (< >) which encloses HTML codes and forward slash ( / ) which is used to ācloseā HTML expressions.
V. What is the structure of an HTML tag?
The main anatomy of an html tag includes:
- The opening tag which state the name of the element wrapped in opening and closing angle brackets (< >).
- The closing tag which is similar to the opening tag except that has a forward slash before the element name.
- The content: This refer to the content of the element, that is, the text.
- The element: This comprise the opening, the closing, and the content tags respectively.
VI. What is an Attribute?
Attributes contain extra information about the element that you do not want to appear in the actual content. For example, in <p class=āeditor-noteā>My horse is very strong</p>. In this example, class is the attribute name, and editor-note is the attribute value.
VII. What is the Anatomy of an HTML Document?
The following is an example of a classic āHello world programā, which is a common test employed for comparing languages, scripting languages and markup languages. As follows:
<!DOCTYPE html > </html >
< head>
<title>This is a title</title>
</head>
<body>
<p>Hello world</p>
</body>
</html>
The above document type declaration is for HTML5. If the <!DOCTYPE html> declaration is not included, some browsers may revert to āquirks modeā or compatible mode presentation. So, the text between <html> and </html> describes the webpage, and the text between <body> and </body> is the visible page content. However, the markup text ā<title>This is a title</title>ā defines the browser page title.
- HTML is Hyper Text Markup Language
- HTML used for structuring the content on web pages
- To study the basics of how actually the web pages are designed
- HTML tag used for structure the part of content, every tag has a different meaning. For
examplestands for paragraph tag,
stands for image tag
5> tag:
opening curly bracket, symbol , closing curly bracket
6> attribute gives extra information about the elementI am a paragraph
here paragraph having style attribute
7> HTML document is a series of elements
ā¦
ā¦
<!DOCTYPE html> : specify the document type
<html></html> : root element contains the entire document
<head> </head> : not contain the content for showing on web page. It contain keywords , CSS style, character set declaration etc .
< body> </ body> : contain the content to show on web page
- HTML is Hypertext Markup Language.
- HTML is used for write a text or an image on a web page and it contains different paragraphs like content, element, opening and closing tagā¦
- Because we will need later for blockchain platforms. Is necessary for coding and developing website which is connected with blockchain.
- HTML tag is tag which allows us to complete the element and we cant write anything without HTML tags.
- HTML tag contains opening tag and closing tag. Opening tag have opening and closing angle brackets. with a letter
, and closing tag is the same as opening oly he contains forward slash before the element name <\p>.
- Attribute is extra information that give the element the value and other informations.
- Anatomy of HTML document is and it wraps all the content on the entire page, is the container for all the stuff you want to be in HTML page and appear in search results, and include all the stuff you want to show to people are using your page (images, text, videosā¦)
-
What is HTML? Stands for Hypertext Markup Language
-
What is HTML used for? It is used to define the structure of a web page and its content
-
Why are we learning HTML? So we can build an interface to interact with a blockchain
-
What is an HTML tag? A tag normally comes in two parts and they define where an element of a page begins and ends
-
What is the structure of an HTML tag? A tag begins with a ā<ā followed by the element name and attribute(s) before closing with ā>ā
-
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? A typical HTML document will consist of:
- The <!DOCTYPE html> that tells the browser which version of HTML the page is written in
- The <html> element that wraps all the contents on the page.
- The <head> element that contains information that isnāt part of the main contents of the page such as the title and character set.
- The <body> element that contains the main contents of the page.
- Hypertext markup language, a markup language used to define the structure of the content created.
- Is used to create documents on the world wide web, it definenes the structure and the layout of a web document.
- To be able to create frontend to interact with a blockchain ( smart contracts).
- A set of characters constituting a formatted command for a Web page. example
to open a paragraph
to close it. - An attribute contain extra information about the element that you donāt want to appear in the actual content.
- Combination of individual HTML elements, form an entire HTML page. The anatomy of it is the structure of it all broken into smaler pieces
- It stands for Hyper Text Markup Language
- It is used for structuring, and manipulating the qualities, of content included in a web page.
- Because we will be using webpages as the front-end of things we will do later in the course and HTML is the first basic structure of a webpage.
- They are the various types of beginnings and ends we use to enclose an element we want to be effected by the tags properties.
- blabla
- an attribute is an additional addition to / within a tag which allows info to be present without showing up in the content displayed on the webpage.
- it begins with at the top and is followed by in which is nested all of the other subsections, & always being present. each subsection is āclosedā of by the corresponding tag and the closes the whole document.
- 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 structure a web page and itās content. - Why are we learning HTML?
We are learning HTML to be able to build front end applications in order to apply to back end and smart contract structures that we will learn further on in the course. - What is an HTML tag?
Is the name of the element wrapped in an open and closed angle brackets. - What is the structure of an HTML tag?
Opening Tag with the name of the element wrapped in an open and closed angle bracket. Subsequently the content of the element and then the closing tag which is the same as opening tag but with a slash before the element name. - What is an attribute?
Attributes contains extra information about the element that you donāt want to appear in the actual content. - What is the anatomy of an HTML document?
Is the individual elements combined to form an entire HTML page.
- What is HTML? Markup language for the structure of a website.
- What is HTML used for? Creating blocks of content on a website.
- Why are we learning HTML? So that we can create simple frontend interfaces for our contract code.
- What is an HTML tag? The item that defines what type of block content will follow.
- What is the structure of an HTML tag? the name of the tag within two angle brackets (opening tasg); then same with a slash before the name(closing). [Did you mean what are the parts of an element???]
- What is an attribute? The item that gives extra info about the content element.
- What is the anatomy of an HTML document? 1. DOCTYPE; 2. (defines the lnaguage used); (gives information like alt tags, etc., not shown in content; (gives title of site for browser window; (gives all content to be seen on the page(s)); gives the character set the site will use (I have never heard of this until today
What is HTML?
HTML stands for Hypertextmarker language
What is HTML used for?
HTML is used for the creation of the text Content from a web page
Why are we learning HTML?
to understand the Basic fundamentals of of structuring a web page
What is an HTML tag?
a tag is a element which lets you modify, Images, zoom words for example or Hyperlink content.
What is the structure of an HTML tag?
The structure is an opening and an closing element and it varies with alphabetic letters depending on its funcitions
What is an attribute?
Attributes are additional Information added to an tag which are not visible in the published Content. They serve the developer as information source
What is the anatomy of an HTML document?
The anatomy contains an opening tag and closing tag, additional Information which can be Attributes, last but not least the Content which is only text
- HTML is instructions on how the website is displayed
- HTML is used to build websites
- We are learning HTML for understanding of web applications
- Tags will organise when something begins and ends
- Tags will have an opening and closing tag
- attributes add extra information with a tag
- anatomy of HTML is very primitive and simple