HTML Reading Assignment

  1. HTML stands for Hypertext Markup Language and is the code that is used to structure a webpage and its content. HTML is not a programming language.

  2. HTML consists of a series of elements, which you use to enclose, or wrap, different parts of the content to make it appear or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicise words, can make the font bigger or smaller, and so on

  3. HTML is the foundational core to web development. It also fully supports Javascript (web 2.0) which enables us to edit or portray our content to our desire. A lot of the Javascript language can also be used for blockchain development, mainly Solidity for Ethereum

  4. HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.

  5. HTML tag is what wraps around our content to form an element. The opening tag consists of the name of the element, wrapped in open & closing angle brackets. This states where the element begins or starts to take effect. The closing tag is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends

  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.

  7. Different individual elements are combined to form an entire HTML page:

<!DOCTYPE html> — doctype
<html></html> — the HTML element
<head></head> — the head element
‘<meta charset="utf-8”>’
<title></title> — the title element
<body></body> — the body element

1 Like
  1. What is HTML?
    It is a markup language
  2. What is HTML used for?
    To build web pages that can be viewed with a browser
  3. Why are we learning HTML?
    Because we need to interact with Blockchain apps (smart contracts)
  4. What is an HTML tag?
    a marker that
  5. What is the structure of an HTML tag?
    It has a opening tag and a closing tag
  6. What is an attribute?
    It is used to describe look an behaviour of certain elements within the HTML document
  7. What is the anatomy of an HTML document?
    It provides a standardized structure which defines the HTML page
1 Like
  1. Hypertext Markup Language

  2. It’s used to define the structure of the web content.

  3. HTML is the basic structure of the front end web that everyone sees. It’s important to know how HTML works and how to write it if you want to create something on the web yourself.

  4. Tags <> are used to create elements.

  5. <pelement> ABCD

  6. Attributes contain extra information about the element.

1 Like

1- HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables. As the title suggests, this article will give you a basic understanding of HTML and its functions.
2- HTML is a markup language used to define the structure of your content. A webpage and its 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. That can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
3- Why are we learning HTML, so we can use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. as a markup language that defines the web structure and content. "smart contracts: scripting languages we will be interacting with the browser and not directly with the OS.
4- HTML tag: The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
5- HTML Structure donates the opening tag and the closing tag ( < p > and < /p >)
6- Attributes contain extra information about elements, additional info that will not display on screen (additional info about the content)
7- Individual elements combined to create an entire HTML page
WITHOUT THE SPACE AFTER EACH <
< !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< title>My test page
< /head>
< body>
< img src=“images/firefox-icon.png” alt=“My test image” >
< /body >
< /html>

1 Like

Example

unordered list

  • Coffee
  • Tea
  • Milk

ordered list

  1. Coffee
  2. Tea
  3. Milk
Coffee
- black hot drink
Milk
- white cold drink
1 Like

i did write this with the code

  • coffee
  • tea
  • milk
1 Like

HTML stands for Hyper Text Markup Language

HTML code is used to structure web pages and the contents of the web pages.

Smart contracts interact with websites and it is important to under some basics of how web pages, their content and the language of that universe is formed.

HTML tags give instructions to words or image, a ta can hyperlink to somewhere else, make fonts bold, underline, bigger or smaller, etc.

The structure of an HTML tag is called the element which consists of: The opening tag <>, the closing tag </>, and the content between the tags.

Attributes are extra information about the element. Attribute information is included with the angle brackets and are not seen on the web page.

The anatomy of a web document consists of;

  • ‘!DOCTYPE html’ - a required introduction
  • ‘html’- this element holds the contents of the entire page (sometimes called the root element)
  • ‘head’ - the head element, is unseen on the webpage but used for search engines, style and other unseen content.
  • meta charset=“utf-8”— This element handles text from any natural language as well as, non-spoken languages e.g. music math, etc.
    • ‘title’ - the title element
    • ‘body’ - the body element
1 Like
  1. HTML is hyper text mark-up language and is the standard language for web pages. Elements (represented by <>) make up the building blocks.
  2. HTML is used for designing web pages on a web browser.
  3. We should learn HTML because it is helpful to web developers and understanding it even on a basic level will let us have an understanding of what goes into building them which is good for all businesses.
  4. A tag is used for creating an element and appears between <>. And end tag also includes a slash (</>)
  5. A tag is the name of an element (like p for paragraph) inside <>, so it would appear as

    . The end tag would also have the slash so would appear as

    . In between the tag and the end tag is the content you want in the paragraph.

  6. An attribute is special information about the element (like bold print, or larger type) so it is special instructions about how the element should appear. The attribute’s text does not appear in the final document, however.
  7. The anatomy is as follows:
(a reference to early guidelines for developing) (begins the website) (The header of the webpage) (specifying what character set to use) whatever the title is (ends the header section) (the content) <img (this is where the image would go) (specifies the end of the content) (specifies the end of the page)
1 Like
  1. Hyper Text Markup Language
  2. It is used to structure Web content
  3. To built content on a website so that we have an interface to the blockchain
  4. tag identifies the beginning and end of an html statement

  5. here is a paragraph structure for example

  6. Extra info about an element that you do not want to appear in the content
  7. Format of a standard html document may look like the below:
<!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>
1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? It’s used to structure a webpage and its content.
  3. Why are we learning HTML? By learning HTML we’ll understand the basics which will help in learning JavaScript.
  4. What is an HTML tag? The beginning and ending of an element. HTML tags help define how webpages will be displayed and the rules that they will abide by.
  5. What is the structure of an HTML tag? Consists of the name of the element used, which is then enclosed by angle brackets. On the closing tag, a forward slash is inserted before the name of the element.
  6. What is an attribute? Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document? Doctype, html, head, meta charset, title, and body
1 Like
  1. HTML is a markup language
  2. It is used for programming web page
  3. It is the based for our front-end’s web site where we can connect our SC
  4. They are tools for creating and sorting the web page
  5. opening tag and closing tag
  6. an attribute is an extra information about the element
  7. preamble, head, title, body
1 Like
  1. What is HTML?
    Stands for Hyper Text Markup Language
  2. What is HTML used for?
    defines the structure of the content of a Website
  3. Why are we learning HTML?
    Because it’s going to be the first part of any proyect we will build on the Ethereum platform. From here to create a dapp will be a lot easier, as well as learning Java.
  4. What is an HTML tag?
    Are the ones that indicate where does an element begins and ends.
  5. What is the structure of an HTML tag?
    opening tag:
    closing tag:
  6. What is an attribute?
    Attributes are extra information about the element. It doesn’t appear to the public view of the site.
  7. What is the anatomy of an HTML document?
    it’s the way a HTML should be created.
1 Like

I tried to include code symbols but they did not show…

  1. What is HTML?
    HTML stands for Hyper Text Markup Language. HTML 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 the code that is used to structure a web page and its content. For example, content can be structured with paragraphs, lists or can include images- all of which are coded for in slightly different ways.

  3. Why are we learning HTML? We are learning HTML because it is a fundamental building block in learning how to program (Javasript in this case). If we have the long term goal of learning how Blockchain development then It is like learning the alphabet compared to writing an eloquent poem/novel. Learning HTML is crucial to learning Javascript which is the next stepping stone ahead.

  4. What is an HTML tag? An HTML tag can be opening or closing tags that ‘wrap’ the content. Eg.

    My cat

    , where

    is the opening tag and

    is the closing tag.
  5. What is the structure of an HTML tag? 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.
    E.g.

My cat is very grumpy

All of that together is an ELEMENT.

and

are the opening and closing tags respectively. The CONTENT is: My cat is very grumpy. The tags make the CONTENT appear in a certain way. E.g. If you use the tags

and

(for headings) the content will appear as a large heading.
  1. What is an attribute? An attribute contains extra information about the element, that you don’t want to appear in the actual content.
    E.g.

    My cat is very grumpy


    ‘Class’ is the attribute name and ‘name’ is the attribute value.
    E.g. getmonero
    This turns ‘getmonero’ into a link that redirects to the site getmonero.org
  2. What is the anatomy of an HTML document?
    -ALWAYS start HTML document with
    -The wraps all the content on the page
    -The is a container for all the stuff you want to include on the HTML page that is not the content you are showing to your page’s viewers. E.g. Information about the page that is relevant to search engines , such as keywords, page description- basically info that does not show to the person viewing the page, but tells search engines about your site etc.
    - This element sets the character set your document should use to UTF-8 which includes most characters.

  • My test page This sets the TITLE of your page that appears IN THE BROWSER TAB the page is loaded in.

- contains ALL THE CONTENT YOU WANT TO SHOW TO WEB USERS WHEN THEY VISIT YOUR PAGE.

  • My test image this embeds an image into our page. does not have a closing tab, only one tab. This element has 2 ATTRIBUTES. the fist states the source of the image and the second states what text to show in case the actual image cannot be uploaded on to the site, which in this case is ‘My text image’.
My test page My test image
1 Like
  1. What is HTML?
    Hypertext Markup Language. 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 used to structure a web page and its content.

  3. Why are we learning HTML?
    To be able to create a web page.

  4. What is an HTML tag?
    A tag is used for creating an element.

  5. What is the structure of an HTML tag?
    Got an opening tag which consists of the name of the element wrapped in opening and closing angle brackets and a closing tag which is the same as the opening tag, except that it includes a forward slash before the element name.

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

  7. What is the anatomy of an HTML document?

— doctype. — the element. — the element. — the character set. — the element. — the element.
1 Like

#7 Correction

  • doctype.
  • html element.
  • the head element.
  • meta charset — the character set.
  • the title element.
  • the body element.
1 Like
  1. Hyper Text Markup Language
  2. It is used to structure a web page and it’s content
  3. So we could create a web page
  4. A tag is used to start and end of an element
  5. Opening <> and closing tags </>
  6. Attribute contains extra information that you don’t want to appear in the actual content
  7. Doctype, HTML element, Head Element, Character Set, Title Element, Body Element
1 Like
  1. HTML it is a markup language that defines the structure of your content.
  2. HTML is use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way in brower.
  3. We need to know how build a simple website to interact with the blockchain.
  4. HTML tags are the part of element, hidden keywords within a web page that define how web browser must format and display the content.
  5. Opening tag: <tag> closing tag: </tag>
  6. Attributes contain extra information about the element.
  7. It cointains:
    <!DOCTYPE html> — doctype
    <html></html> — the [ <html> ] element
    <head></head> — the [ <head> ] element
    <meta charset="utf-8"> — This element sets the character set your document should use to UTF-8
    <title></title> — the [ <title> ] element
    <body></body> — the [ <body> ] element
1 Like
  1. HTML( Hypertext Markup Language) is the markup language that defines the structure of your content. It takes code you write to create your site and structures is using certain functions.

  2. It is used to display content on a page and give it structure.

3.HTML is a good base to have to be knowledgeable of website development.

4.HTML tags are the “opening and closing border” of an HTML element. They make sure that an HTML element only encloses the desired content.

  1. You have the opening tag

    (this one is for a paragraph) at the start of your elementand the closing tag

    at the end of you element.
  2. Attributes are written into the code, that contain extra information that you don’t want tp appear in the actual content.

  3. The anatomy looks as follows:

  • <!DOCTYPE html> — doctype. It is a required preamble.

  • <html></html> — the [ <html> ]element. This element wraps all the content on the entire page and is sometimes known as the root element.

  • <head></head> — the <head>element. 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"> — This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages.

  • <title></title> — the <title>element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.

    • <body></body> — the <body> element. This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks, or whatever else.
1 Like
  1. What is HTML? HTML is not programming language. It is a markup language that define structure of content.
  2. What is HTML used for ? HTML is code used for structure web page and its content.
  3. Why we are learning HTML ? Because we want to interact basic web with blockchain programing.
  4. What is an HTML tag ? HTML tags tell browser this is HTML document. Tags define what kind of text we using for example bold, arial, bodoni etc.
  5. What is the structure of an HTML tag ? HTML tags are at the center of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.
  6. What is an attribute ? An attribute secifies some additional properties regarding the content included inside a tag.
  7. What is the anatomy of an HTML document ? Anatomy of HTML doument contain wrapped HTML, Head, Body, Title, Body, HTML finish
1 Like
  1. It is a markup language.
  2. It enables developers to tell a user’s browser what to display, and where.
  3. To build static web pages that we can implement Javascript on top of.
  4. HTML tags separate content such that the contents of each tag be treated differently by the browsers reading them.
  5. content
  6. Attributes of a tag contain extra content that can be used by browsers and not usually seen by end-users.

html
head
/ head
body
/ body
/ html

1 Like