HTML Reading Assignment

  1. HTML is the code that is used to structure a webpage and its content. It defines the structure of the content.
  2. HTML is used to enclosure different parts of the content of a website to make it look or act a certain way.
  3. We are learning HTML so we can start making things using code and have a basic understanding of the structure of a code and how it works on a practical level.
  4. An HTML tag is the way we have to give attributes to text, images or hyperlinks.
  5. The structure of an HTML tag is:
  • The opening tag: This consists of the name of the element wrapped in opening and closing angle brackets.
  • The closing tag: This is where the element ends. It’s the same as the opening tag except that it includes a forward slash before the element name.
  • The content: This is the content of the element.
  1. An attribute is extra information about an element that you don’t want to appear in the actual content.
  2. The anatomy of an HTML document is:
  • < DOCTYPE html> - the doctype. Nowadays is just an historical artifact that needs to be included for everything to work right.
  • < html> - the html element. This element wraps all the content on the entire page.
  • < head> - the element. This element acts as a container for all the stuff we want to include on the HTML page that isn’t the content shown on the page. e.g.: keywords, page description, CSS style, etc.
  • < body> - the element. THis contains all the content that is shown on the website.
  • < meta charset=“utf-8”> - this element sets the character set the document should use to UTF-8, which includes most characters from the vast majority of humen written languages.
  • < title> - the element. This element sets the title of the page, which is the title that appears in the browser tab the page is loaded in.
1 Like
  1. Hypertext Markup Language
    2)Structuing and displaying text/content for websites
    3)Intro to programming - will be used to communicate to a blockchain through a website we create using html
    4)an element used to structure/define code within the element
    5)starts with opening tag, content, then closing tag
  2. an attribute adds information that can be referenced by CSS, JS, etc.
    7)< !DOCTYPE html> , < html>, < head>, < body>, < meta charset=“utf-8”>, < title>, and the corresponding closing tags.
1 Like

HyperText Markup Language

HTML is not a language in itself but rather the code for structuring or marking the outline or appearance of a web page’s content. It uses a series of basic elements to wrap different parts of the content. HTML tags are placed before and after elements to signal instructions for paragraphs, images, hyperlinks and more. Tags need to be placed in duo, with a beginning and an end designator. Similar to a tag, is an attribute. An attribute is “an element within and element”. Attributes need beginning and ending designators, too.

The anatomy of an HTML web page or document is as follows. It includes 5 parts:

1. Doctype
2. Head
3. Body
4.  Meta "Utf-8"
5.  Title
1 Like
  1. What is HTML? HTML is code that is used to structure a web page and its content. It is not a programming language; it is a markup language that defines the structure of your content

  2. What is HTML used for? It is a tool that is used to build a basic website

  3. Why are we learning HTML? Learning HTML is needed to build a front end on the web to interact with the back end smart contract.

  4. What is an HTML tag? A tag can make a word or image hyperlink to somewhere else, or change font size or style.

  5. What is the structure of an HTML tag? There are four main attributes are (1) The opening tag, (2) the closing tag (3) the content, and (4) the element

  6. What is an attribute? An attribute is extra info that does not appear in the actual content.Allows to give an element an identifier that can be later used to target the element with style info and other thinks.

  7. What is the anatomy of an HTML document? The anatomy of an HTML document contains individual elements that when combined form an entire HTML page. The basic elements are
    1) - historical artifact that needs to be included
    2) - wraps all content on the entire page, also known as the root element
    3) - acts as container for all stuff on page that isn’t the content shown to
    viewers.
    4) contains all content shown to web users
    5) - sets the character set your document should use to UTF-8,
    which includes most characters needed
    6. - sets the title of the page, which is what appears in the browsers tab the
    page is loaded in. Also used to describe the page when it is bookmarked/favorited.

1 Like

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.HTML means hypertext makeup language.
2. HTML is used to structure a web page and its contents.
3. At fundamental level, learning HTML will enable us to create website and design website. It is a highly useful skill to own. When it comes to small contract, we can use HTML to create easy communications among all stakeholders.
4. A HTML Tag is used for creating an element. It is a HTML code that defines every structure on a HTML page.
5. HTML tags begin with the less-than (<) character and end with greater-than (>). These symbols are also called “angle brackets.” For Example, for a paragraph element, it can be shown as

The Universe is amazing


6. An attribute extends a tag, changing its behaviour or providing metadata. An attribute contains extra information about the element which you don’t want to show in the actual content.
7.
the doctype
html element-all the contents on the entire page, also called root element
head element-A container for all the contents which you don’t want viewers to see
body element-all the information which you want the website viewers to see
meta charset=“utf-8”-Trigger the usage of UTF-8 which almost enable all the textual message you need to put on the site
title-title of your age
1 Like
  1. What is HTML?
    HTML stands for hypertext markup language. Not actually a coding language, but what appears to be an accepted formatting structure for creating and editing webpage based content

  2. What is HTML used for?
    Formatting the backend content used in webpage design and programming

  3. Why are we learning HTML?
    To become well rounded programmers we want to have base knowledge of how to either build our own projects, including maintaining websites and applications, from the ground up or to contribute to a project we may collaborate on in the future.

  4. What is an HTML tag?
    A way to order HTML content from beginning to end. By using tags we can delineate certain elements of our webpage script.

  5. What is the structure of an HTML tag?
    opening tag which signals the start of an element. example

    is the opening tag of a paragraph. closing tag signals the end of an element. example

    is the closing tag of a paragraph.

  6. What is an attribute?
    This is information about the element seen on the backend but not on the frontend for the audience visiting your page. Could be metadata or something else related to description.

  7. What is the anatomy of an HTML doc?
    Structure of an HTML doc contains a DOCTYPE html at the beginning of the page, opening and closing tags of your HTML come next and complete wrap your content from start to finish. In between we have opening and closing header tags that wrap non-viewable content such as metadata and things related to search. Lastly, we have opening and closing body tags which surround the readable content/guts of the page that we want our audience to view.

1 Like

What is HTML? HTML is the standard markup language
What is HTML used for? It is used for for creating Web pages.
Why are we learning HTML? Because it is a good beginning foundation to the web side of the smart contracts we will be creating.
What is an HTML tag? It is the HTML code that defines every structure on an HTML page, including the placement of text and images and hypertext links.
What is the structure of an HTML tag? HTML tags begin with the less-than (<) character and end with greater-than (>). These symbols are also called “angle brackets.”
What is an attribute? Attributes are extra information about the element that we don’t want to appear in the content.
What is the anatomy of an HTML document?

My test page My test image
1 Like
  1. is a structure and { skeleton } :slight_smile:
  2. to structure its content
  3. to communicate with the user…
  4. difine how wed browser must format
My test page My test image 6) it difine a property for an element 7) tell the browser that is an HTML document and is the container for all HTML elements except for the
1 Like
  1. What is HTML?
    It stands for Hyper-text mark-up language, it is a way to mark up text allowing
    For formatting its appearance in a web browser and to enable text to link it to other content.

  2. What is HTML used for?
    It is the basic language used for structuring websites.

  3. Why are we learning HTML?
    So we can build an application that can interact with our Smart contract that we will be learning in this course. Front end development includes simple websites etc… back end will be the smart contracts…

  4. What is an HTML tag?
    It tells the browser that this is an HTML document, it represents the root of an HTML document, and is the container for all other HTML elements.

  5. What is the structure of an HTML tag?
    The structure consists of:
    -Angle brackets greater than and less than symbols < > which tells the browser “this is an html tag.”
    -Names: the name of the tag that is usually abbreviated or a phrase which says what it does.
    -Attributes: which are specific to tags and add additional information, depending on the context of a certain tag.
    -Attribute values: very specific information for a tag attribute.
    -Default values: What the tag will do if no attributes with values are specified.

  6. What is an attribute?

-Attributes: are specific to tags and add additional information, depending on the context of a certain tag.

  1. What is the anatomy of an HTML document?
    The anatomy of an HTML element consists of
    The opening tag (name of the element)
    The closing tag (same as opening except it contains a forward slash The content (Sometimes it consists of text but it can be anything)
    The element (The opening, closing, and content together comprise the element).

What is HTML?
HTML stands for Hypertext Markup Language. It is a markup language that defines the structure of your content. It is not a programming language.

What is HTML used for?
HTML is used for structuring the content of your webpage.

Why are we learning HTML?
We are learning HTML because we need to create website to interact with the user. Smart contracts are the backend and websites and HTML are the front end that is user-friendly.

What is an HTML tag?
HTML tag is used to create an element. It can be used to define paragraphs, make hyperlink or make words bigger and smaller, just to name a few.

What is the structure of an HTML tag?
HTML tag consists of the name of the element which needs to be wrapped in angle brackets. HTML tag needs to have opening tag and closing tag. The closing tag differ from the opening tag in that it needs to have a slash before the element name.

What is an attribute?
Attribute is extra information about the element that will not be displayed in the actual content. Attribute needs to have attribute name and attribute value.

What is the anatomy of an HTML document?
!DOCTYPE html
html
head
body
meta charset=“utf-8”
title

1 Like
  1. What is HTML?
    It is a Markup language used to give structure to webpages. HyperText Markup Language
  2. What is HTML used for?
    HTML is used to give structure to a webpage.
  3. Why are we learning HTML?
    HTML is useful to provide a Front end to users using smart contracts.
  4. What is an HTML tag?
    An HTML tag is a part of an element that gives an instruction of how to display the element in a webpage.
  5. What is the structure of an HTML tag?
    Opening tag: Less than sign followed by the tag type (Ex. p for paragraph), followed by attributes, followed by a greater than sign)
    Closing Tag: Less than sign followed by ‘/’ followed by the same tag type as the opening bracket, followed by a greater than sign
  6. What is an attribute?
    Attributes are a set of instructions or options given to a tag, that will not be displayed but will modify how the content in a tag is displayed in the webpage
  7. What is the anatomy of an HTML document?
    Doc Type, html tag, head tag, meta tag, title tag, body tag
1 Like
  1. What is HTML?
    HTML Hypertext Markup Language is not a programming language but a code that is used to structure a web page and it’s contents.

  2. What is HTML used for?
    HTML is used to structure different parts of content in a web page to appear or act in a certain manner.

  3. Why are we learning HTML?
    To create webpages that can interact with blockchain and smart contracts.

  4. What is an HTML tag?
    States or wraps the start and end of content (text or image) or hyperlink within an element allowing to display the format on a webpage.

  5. What is the structure of an HTML tag?
    The structure of an opening HTML tag consists of the name of the element enclosed by opening < bracket and closed > bracket. The structure of a closing HTML tag is the same as an opening bracket but has a forward slash prior to the name of the element which states where it ends.

  6. What is an attribute?
    An attribute is extra information about the element you don’t want to appear in the actual content.

  7. What is the anatomy of an HTML document?
    The anatomy is the entire code of an HTML document which wraps up the individual elements to form a webpage. The individual elements consist of:
    “html” - The element that wraps all the content on the entire page
    “head” - The element contains information, which should not be part of the content
    “body”- The element contains all the content that should be shown to the visitor
    “meta charset”- The element sets the character type and avoids some problems
    “title”- sets the title on the web page and what is shown on the browser tab

1 Like
  1. Hypertext Markup Language
  2. It is used to structure a web page and its content.
  3. We learn HTML so we can create web pages and make them interesting.
  4. An HTML tag is an HTML code that defines every structure on an HTML page, including the placement of text and images and hypertext links.
  5. An HTML tag is composed of an element name, contents of the element within opening and closing tags which are enclosed by angled brackets.
  6. An attribute contains extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy of an HTML document looks like this:
My test page My test image
1 Like
  1. Hypertext Markup Language
  2. HTML is the code used to structure the web.
  3. We are learning HTML to create websites that interact with blockchains.
  4. Tags are used to change the elements enclosed in various ways.
  5. Wrapped opening and closing angle brackets followed by the element and then the closing tags which consists of wrapped opening and closing angle brackets including a forward slash to state the end of the element.
  6. Attributes contain extra information regarding the element.
  7. An HTML document contains the following. The doctype, html element, head element, body element, character set and title element.
1 Like
  1. It is a markup language that defines content structure.
  2. It allows programmers to display content and let it act in certain ways.
  3. Content needs to be presented to users somehow. HTML is a good start and provides us with good basics of programming.
  4. An HTML tag is used to define where an element begins or ends and should be place before and after content.
  5. Tags contain the name of an element wrapped in angle brackets. Closing tags also have a forward slash before the element name.
  6. An attribute includes extra information that doesn’t need to be displayed in actual content.
  7. An HTML document includes the doctype, an html element, a head element, a body element, a character set and also a title element.
  1. HTML stands for Hypertext Markup Language
  2. It is used to talk to server/blockchain and to structure a wab page.
  3. Every developer should know HTML because it’s one of the easiest and yet widely used languages (Interet boom), so it is also important for blockchain devs to learn it, so they can link their dapps to the Internet and market them well.
  4. HTML contains tags, those are commands that we surround the content with to make it different, place it somewhere else on the page, do something with it later,…etc.
  5. This is done by first opening the tag (), and closing it properly after the content you wanna surround (). There are also socalled empty tags that don’t have the closing tag, because they surround no content.
  6. An attribute is added to the opening tag to include some extra information about it, for example giving it unique name, so you can interact with only that tag later.
  7. All HTML documents startwith !DOCTYPE html tag, then the is opened, then there is where you place information that you don’t want to appear on the webpage itself (for example CSS), after head is closed, the is opened and there you place all your webpage content. After that both body and html is closed. It is very important to close all tags properly, it is best to close them right away when you open them and to write inside.
    Hope this is good. Peace!
  1. HTML = Hypertext Markup Language
  2. Infrastructure of a Web Page/Contents - like the Frame of a Vehicle pre customization
  3. HTML not programming - it’s markup so good place to enforce FUNDAMENTALS
  4. Tags (open and close) - alpha and omega of ELEMENT - need it for START and STOP of instruction.
  5. HTML structure - content </closing tag> … BOOM!!
  6. Attribute: consists of: name=“value” format

Attributes contain extra info about OVERALL Element - like an accessory you can use BUT IT DOESN’T show up in the ACTUAL Content - “My cat is very grumpy”

It’s an extension to tag which helps define meaning of the content - this case the “my cat is very grumpy”

  1. Anatomy of HTML :

1- *first you need this ancient/dated requirement
2- *ROOT ELEMENT - wraps the content (first layer of onion)
3 - Container for html that ISN’T Content!
4- ELEMENT THAT SETS "character set = charset = “utf-8” = common form
for all human languages.
5- My test title - title of page - what appears in browser tab /bookmark/favorite
6 - Close that tag up from up top - looks like they want it to be mirror image - symmetrical
7- Element - text,images, cat remarks, videos, games
8- "my

src= SOURCE attribute - embeds image into page
alt = ALTERNATIVE attribute - would redirect to “my text image” = which is inefficient when CANNOT SEE IMAGE so recommendation like:

alt=“Fox of fire in the sky emblem”> … thats if you screw up the src attribute*don’t do that

9- - CLOSE THAT BODY Tab up!
10- CLOSE THAT html ROOT Element up!!!

Let’s get it!

  1. Hypertext Markup Language (HTML) is the code that is used to structure a web page and its content
  2. HTML code is used to structure a web page and its content.
  3. We learn HTML to present the results of our for example smart contract in a good and structured fashion
  4. A tag indicates where an element begins or ends.
  5. The structure of tag is the element name, tag type example paragraph

    , the attribute.
  6. An attributes contains extra information about the element that you don’t want to appear in the actual content
  7. The anatomy of an HTML document are the basics HTML elements that make up an HTML page.

Awesome to see all hustle going down here. Well done everyone!

1 Like

What is HTML? Hypertext Markup Language

What is HTML used for? A language used to process, define and present text on web pages

Why are we learning HTML? To create and edit websites which can connect apps on a blockchain

What is an HTML tag? Tags are used to create elements. Elements are parts of a web page

What is the structure of an HTML tag? <p </>

What is an attribute? Attributes are instructions that contain information which shouldn’t be visible in the text

What is the anatomy of an HTML document?