HTML Reading Assignment

1.What is HTML?
HTML is Hyper Text Markup Language which is the code that is used to structure a web page and its content.

  1. What is HTML used for?
    • It defines the structure of your content
    • It allows communication with a browser to display a content the way you want it.
  2. Why are we learning HTML?
    In regards to learning Smart contract programming, we need to learn the basics of web programming first.
  3. What is an HTML tag?
    HTML tag is a set of characters that defines how your web browser must format and display your content.
  4. What is the structure of an HTML tag?
    There are 2 main parts are the head (contains title and meta data ) and the body (contains the information that you want to display on a web page).
  5. What is an attribute?
    An attribute has 2 parts – attribute name and attribute value. Together they allow you to add extra instruction to your tag.
  6. What is the anatomy of an HTML document?
    An HTML document consists of text, which defines the content of the document, and tags, which define the structure and appearance of the document. The structure of an HTML document is simple, too, consisting of an outer tag enclosing the document header and body.
1 Like
  1. HTML is Hypertext Markup Language.

  2. HTML is used to structure a web page and its content.

  3. We are learning HTML to build a simple website that interacts with a dapp.

  4. An HTML tag is the opening and closing of content.

  5. The structure of an HTML tag is an angle bracket, the element name, and a closing angle bracket. A closing HTML tag has a forward slash before the element name.

  6. An attribute is extra information about the element that doesn’t appear in the content.

  7. The anatomy of an HTML document is: the doctype, the html element, the head element, the body element, the meta charset=“utf-8”, and the title element.

HTM L Assignment

  1. What is HTML?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag? <Tag consist opening and closing tags,

    and

    .>
  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?

<

My test page My test image >

Trial Text submitted.

What is HTML?

HTML is a web browser language, known as a markup language.

What is HTML used for?

HTML is used to structure a website.

Why are we learning HTML?

HTML will be useful when we want to create an user interface to our smart contracts.

What is an HTML tag?

An HTML tag specifies what the following section will do, how it displays, and the type of information.

What is the structure of an HTML tag?

the HTML tag begins with an “<” followed by the name of the tag (head, p, body, html, img, etc.), and ends with a “>”. When closing the tag, the same structure is used, however, a “/” is put before the name of the tag.

What is an attribute?

An attribute is a modifier of the tag. It is placed after the name of the tag.

What is the anatomy of an HTML document?

The doctype artefact is placed at the very beginning. Then, all content is placed in the html tag. After that, all content belonging to the page that is not intended for the user to see is placed in the head tag. Inversely, all content that the user is to see, is placed in the body tag. Also, the meta charset tag is to be put in the head section.

1 Like

Assignment Questions

  1. What is HTML?
    Answer:
    HyperText Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.

  2. What is HTML used for
    Answer:
    It is NOT a programming language, it is called a “mark-up” language, it structures a webpage’s content using HTML elements to “enclose” different parts of content to design web-pages.

  3. Why are we learning HTML?
    Answer:
    It is a “knawledge” lol, relatibvely easy to learn, that gives results that can be shown as a demonstration of knowledge; we will learn how to build an application that will interact with smart contracts. This can be understood as two parts, the back ground heavy lifting is the smart contract; the front, the pretty face(Ivan) is the website interacting with the customer.

  4. What is an HTML tag?
    Answer:
    these are hidden keywords in the webpage that provide design instrcutions regarding format and display of content.

  5. What is the Structure of an HMTL tag?
    Answer:
    These are also known as “element names” , they have angled brackets like this <??> with ?? representing the element name. These tags consist of an opening and closing tag, example : < html> and </ html >

  6. What is an Attribute?
    Answer
    It is hidden extra information About an Element.

Element name = < foo >
Attribute name = id
Attribute value = “Foo Fighters” this is your hidden note

So the “Element” is the main man, or the sun, and planets
rotate around it, you know, among a galaxy with other suns in their own space.

Right! “Attributes” are the people drawn towards a charismatic person, or the planets that spin around the sun.

The “Attribute name” is the main man’s/sun’s definition about those people / planets around it ; example:this person “looks confident, looks intelligent, has humour” ;
distinctions about planets " big, small, gasy, rocky, far, close"

"Attribute value" are personal notes, the main man says about the peple round him: " confident but shirt not ironed, intelligent but coffe stains on her skirt, humourous but too loud"

Examples:

Attributes with values:
< foo id=“Foo Fighters” >

Ps. This actually took me a few tries getting, then explaining lol. A stone droped. I thing I learned how
to learn!

7. What is the anatomy of an HTML document?
Answer:
< !DOCTYPE html > Doctype element
it is a very old version of spell /code checker? It checks for basic HTML instruction errors and needs be included

< html > and </ html > html element
this element begins and ends the entire page.

< head > and </ head > head element
it follows after and within the html element, and contains functions that won’t be visible to the viewer : descriptionin search results, CSS to style content and the likes

< body > and </ body > body element
this is content the page viewer will see, videos,games

< meta charset=“utf-8” >
sets the characters in you page to UTF-8 which allows the computer to interpret human language to its own esier.

< title> and </ title> title element
the title displayed in your browser tab like www.safari.com and carries over in bookmarks.

  1. HTML is hypertext markup langauge for the structuring content on the web-site.
  2. HTML is used for creating visual performance of information wich is shows to user of web-site or service or application.
  3. I need to learn and understand HTML because it is a basic knowledge of how information structured on web-page and it will help me to build web-apps.
  4. Tag is like instruction for content with individual role and function for perception.
  5. The opening tag: This consists of the name of the element, wrapped in opening and closing angle brackets. The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. 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

What is HTML?
HTML is markup language.

What is HTML used for?
HTML markup language is used for displaying content/images/links on Web Browser.

Why are we learning HTML?
To display an front end (Web Site / Page) for users to interact with the back end (smart contract).

What is an HTML tag?
HTML tags are used to contain the element you wish to display.

What is the structure of an HTML tag?
The structure of an HTML tag is element which contains opening tag / content / closing tag.

What is an attribute?
You can additional information about the element, had will not appear on the content, such as class.

What is the anatomy of an HTML document?
Basically the web page (html) containing the elements.
The basic elements to make a web page of the web browser to decode.

1 Like

1 is the code that is used to structure a web page and its content
2.It is used to define the structure of your content
3.to learn a bit about web development
4.HTML tag is an element that wraps all the content on the entire page, and is sometimes known as the root element.
5.HTML tag is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body, which contains the document’s actual content.6.Attributes contain extra information about the element that you don’t want to appear in the actual content
7. The anatomy wraps up the basics of individual HTML elements

1 Like

1- HTML stands for Hypertext Markup Language.
2- HTMLis used to structure a web page and its content.
3- We learn HTML to be able to create e web page that can interact with the smart contract…
4- In HTML a tag is used for creating an element. Tags indicate where the element starts and end.
5- Opening tag consist the name of the element wrapped in opening and closing angle brackets. The closing tag is the same as the opening tag, except that it includes a forward slash before the element name.
6- Attributes contain extra information about the element that you don’t want to appear in the actual content.
7- HTML wraps up the basics of individual HTML elements.

My test page ”My

Thanks for pointing that out. I am new to all of this.

  1. HTML is the language used to make webpages that interact with users with paragrapher, images ,videos ,links etc…
  2. Front-end or user-interface for websites
  3. To connect the user of a DAPP or smart contract with the EVM or the software that executes the code that is located in blockchain.
  4. The tag specifies the structure of the content wrapped in it.
  5. An opening for the tag its type

    , and a closing tag

    in this case it’s a paragraph.
  6. Attributes are used for inserting extra information in element without being revealed to the user such as notes written by the programmer or identifiers that call links for example.
  7. HTML,Title, Header, body.
  1. Hypertext Markup Language is the code/markup language that defines the structure of your content. It 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. With tags that can change how text appears or had hyperlinks.
    2.Code that is used to structure a web page and its content.
  2. Basic code that shares language with other codes and is, therefore, a good place for beginners to start. Ultimately we will use it to create a website to interface with smart contracts.
  3. A HTML tag consists of opening tag <> and the closing tag </> which denotes the start and end of an element. They are used to tell a browser how to display the content.
  4. Opening tag and closing tag </tag name>
  5. Contain extra info about the element you don’t want to appear in the content. It can be used later to target the element and amend with style and other information.
  6. A HTML document is made up of the following elements: doctype, HTML, head, body, character set, and title elements.

What is HTML?
Hypertext Markup Language

What is HTML used for?
It is the code that is used to structure a web page and its content. It is the standard markup language that is used for creating web pages and applications.

Why are we learning HTML?
We are learning HTML so that we can can create websites that interact with our smart contracts on the blockchain.

What is an HTML tag?
HTML tags define the layout of a web page. Most tags require an opening tag < html > and a closing tag < /html >. Browsers do not display the HTML tags, but use them to interpret the content of the page.

What is the structure of an HTML tag?
Opening tag - Content - Closing tag

What is an attribute?
Attributes provide additional information about an element.

What is the anatomy of an HTML document?
< !DOCTYPE html >
< html >
< head >
< /head >
< body >
< /body >
< /html >

What is HTML?
-A markup language
What is HTML used for?
-to organize the content of a web page
Why are we learning HTML?
-to have frontend knowledge for Blockchain coding
What is an HTML tag?
-the designator that says what a html element is, or will do
What is the structure of an HTML tag?
-opening bracket “name of element” closing bracket
What is an attribute?
-a sub feature of an element
What is the anatomy of an HTML document?
-head, tittle, body

  1. Is a series of instructions that will give the instructions of how the contents of a page must be structured.

  2. Mainly to give order and format to web pages.

  3. Probably because the structure it presents is similar to several programming languages and because it gives a sense of how to structure the orders that the program must execute.

  4. It begins with <”something”> and ends with </”something”>. The beginning element can contain attributes

  5. Is additional information and content about the content that won’t show explicitly.

  6. The main components of an HTML document according to the article are:

• The doctype, which tells what set of rules to use.
• The root element, which wraps the content
• The body element, that contains all content
• The element set, which tells what characters to display
• The tittle element, which displays title that appears in the browser tab the page is loaded in.

1 Like
  1. Hypertext markup language defines the structure of your content.
  2. HTML is used to wrap parts of the content and make it act and appear a certian way.
  3. Because you have to learn how to walk before you can run.
  4. Used to create an element.
  5. Opening tag, content, closing tag.
  6. Extra information about the element that you dont want to apear in the content.
  7. Everything you need to make the website.

What is HTML? A markup language
What is HTML used for? Creating basic web pages that include text
Why are we learning HTML? It’s a building block
What is an HTML tag? The tags indicate what the element is.
What is the structure of an HTML tag? Opening tag, content, closing tag.
What is an attribute? Information within the element that you don’t want displayed on the webpage
What is the anatomy of an HTML document? Specify that you are using HTML with DOCTYPE! html, use at the beginning and at the end to wrap the whole document in html, then to specify that you want to have a wide range of characters from the human language. Create title element Title . Whatever you do not want shown on the webpage should be wrapped in . content

What is HTML? A markup language
What is HTML used for? To structure the content of a webpage
Why are we learning HTML? To understand the basics
What is an HTML tag? The abbreviation of the element inside of opening and closing brackets.
What is the structure of an HTML tag? Opening tag, content, closing tag.
What is an attribute? Comments that won’t appear in the content.
What is the anatomy of an HTML document?

Title of the Webpage Goes Here Descriptive text for image
  1. HTML stands for Hypertext Markup Language, which is not a programming language but used for structuring the web page and it’s contents
  2. HTML is used for structuring the contents of a web page
  3. Because it is important to learn a technology that will enable development of applications which are accessible to end user through a web browser (which are almost all the applications we use today) and HTML is fundamental in developing websites
  4. A tag is a standard set of instructions that manipulates the content inside it
  5. It has two part, one which defines start of that instruction and one which defines end. Ex. Example
  6. Attributes are used within tags to perform a specific operation, which is not visible as content on the website. Ex.

    example 1

Test 1

this is the anatomy of an HTML document