HTML Reading Assignment

  1. It is a markup language that helps to structure a webpage.
  2. To structure a webpage.
  3. So that we can create websites.
  4. Different HTML tags give different formatting to elements.
  5. Opening tag: wrapped in < >
    Closing tag: wrapped in </ >
  6. It gives additional properties regarding the content in the tag.
  7. docutype html element
    html element
    head element
    meta charset element
    title element
    body element
1 Like
  1. What is HTML?
    HTML is the code used to structure a website. It stands for HyperText Markup Language.

  2. What is HTML used for?
    It is primarily used for building websites.

  3. Why are we learning HTML?
    HTML is an important piece in creating websites that are static or dynamic and interactive. Websites are the front facing element in the online experience.

  4. What is an HTML tag?
    A tag is used to edit and manipulate content within a website.

  5. What is the structure of an HTML tag?
    An opening tag, the content, and then the closing tag. The structure as a whole is called an element.

  6. What is an attribute?
    Attributes give further properties to an element.

  7. What is the anatomy of an HTML document?
    The anatomy includes the following elements:

-the !doctype
-the html /html
-the head /head
-the meta charset=ā€œutf-8ā€
-the title /title
-the body /body

2 Likes
  1. What is HTML?

Hypertext Markup Language

  1. What is HTML used for?

It is a code comprising of elements used to wrap text and make it appear or behave in a certain way.

  1. Why are we learning HTML?

It is the original code of the internet and still a fundamental building block upon which everything else is built.

  1. What is an HTML tag?

The tag is a statement of when the element begins and ends.

  1. What is the structure of an HTML tag?

A tag consists of open and closed brackets, with the name of the element inside.

  1. What is an attribute?

An attribute is an extra value that can be assigned into the element, usually punctuated by a space, and equals sign and quotation marks.

  1. What is the anatomy of an HTML document?

: a legacy component of html which governs the behavior of the document.

: The HTML element is also known as the root element, wraps the whole statement. : This element contains rules and information which affects the page but is not visible to the every day user. : A setting which makes the document compatible to most languages and written characters. : Sets page title, also becomes the name on any bookmarks created for this website : Contains all the content visible to users.
1 Like

1: Hyper Text Markup Language.
2: It is used to display the content of a web page in the wanted order/structure.
3: to be able to create a website to interact with our smart contracts.
4: It defines what an element is/wil do on the web page.
5: At the start of the element an opening and closing bracket with the tag in between/at the end of the element opening and closing bracket with a slash and then the tag in between.
6: Defines the element but not the content.
7: first the !DOCTYPE html tag. Then the html tag with in it the head,body and often footer tags. content is added inside these last 3.

1 Like

HTML Homework:

  1. HTML is a code initiated in the creation of a web page to assist with design, structure and content.
  2. HTML is used to build the structure of a web page.
  3. It is essential in web design and block chain development.
  4. Tags are the opening and closing signals indicating where the element begins and ends.
  5. Element, content, opening tag, closing tag and attributes.
    6.Attribute contains additional information about the element that is not visible in the content.
  6. The anatomy is how elements are combined to form a web page.
    rules for`the page, wraps the contents, includes information that is not visible to the viewers. sets the character set of your document.
sets the title of the page contains the content you wish to show. body
2 Likes
  1. What is HTML?
    HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
  2. What is HTML used for?
    it is a markup language that defines the structure of your content.
  3. Why are we learning HTML?
    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, can make the font bigger or smaller, and so on.
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
    It is a command that specifies what is going to be done with the text
  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?
    Individual elements that are combined to form an entire HTML page.
2 Likes

1.What is HTML?

It is a structure of Hyper Markup language which allows you to manipulate different parts of content to act in a certain way.


2.What is HTML used for?

To manipulate the structure content.


  1. Why are we learning HTML?

To be able to develop the front end in order to interact with our smart contracts.


  1. What is an HTML tag?

It is a statement where the elements begins and ends.


  1. HTML = Hypertext Markup Language.
  2. What’s HTML used for? To ā€˜structure’ a webpage and its content.
  3. Why HTML? As we’re learning to build smart contracts in symbiosis with simple websites coded via HTML.
  4. What are HTML tags Opening and closing tags enclose the written content to make it appear a certain way after compilation of the html code.
  5. What is the structure of an HTML tag? HTML attriibute element = CONTENT
  6. What is an HTML attribute ? Extra info on the html element that won’t be visible in the actual content.
  7. What is the anatomy of an HTML document? filetype info, html elements that enclose all the content, head elements (everything isn’t content), character set info, title, body (all the content)
1 Like

1.- Hypertext Markup Language.
2.- It’s a Markup language that is used to determine the structure of a website’s content.
3.- We are learning HTML so we can build useful things. i.e. a website that later on can interact with the smart contracts we develop.
4.- Tags are the capsules of content. The content in a website is showed by elements, and the function of the tags is to separate our content on different elements. Each element has the following format. Opening Tag -> Content -> Closing Tag
5.-


6.-Attributes are containers of extra information that we don’t want to be shown in the actual content. For example the format of our Text. We want our text to have actual format, instead of displaying how it should look like.

7.-

<!DOCTYPE html>
 <html>
<head>
<meta charset="utf-8">
<title>
<body>
1 Like

Thank you for the answer @gobo ! Very delighted to have you on board! If you get stuck anywhere or have questions, please feel free to reach out. We are always here for you.

Happy Learning! :smiley:

2 Likes
  1. It is a markup language that defines the structure of your content.
  2. HTML used to structure a web page and its content.
  3. Knowing HTML makes it easier for you to learn other coding languages, too.
  4. A tag is a command in a web page that tells the browser to do something.
  5. Tag consists of the name of the element , wrapped in opening and closing angle brackets.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. An HTML document has two main parts: the head and the body. But firstly every HTML document should start by declaring that it is an HTML document.
1 Like
  1. What is HTML? HTML is a markup language that defines the structure of web 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.
  2. What is HTML used for? To create content for the web according to predetermined rules
  3. Why are we learning HTML? To gain exposure to programming basics
  4. What is an HTML tag? ā€œTagsā€ are used to add characteristics to content like making a word or image hyperlink, to italicize words, to make a font bigger or smaller, etc.
  5. What is the structure of an HTML tag? A ā€œtagā€ is structured with the name of the tag enclosed by angled brackets (<>) which shows where the tag begins and the name of the tag with a slash (/) preceding the name of the tag enclosed by angled brackets (<>).
  6. What is an attribute? An attribute contains extra information about a content element that one does not want to appear in the actual web content.
  7. What is the anatomy of an HTML document? An HTL document contains a doctype , the html element, a head element, a character set element, a title element and the body element.
1 Like

Answers:

  1. HTML is a markup language that defines the content in a website.

  2. We can use html to portray the exact appearance to our text, size, positioning of an image, set a link to a word which can bring the viewer to another page, list down items in bullet form so on and so forth.

  3. So that we can acquire the knowledge of building a website before we progress to incorporate javascript, blockchain smart contract into it. It really serves as a foundation before we add in the dynamics.

  4. A HTML tag is a code to modify the content, a sentence, a paragraph, or anything which can be displayed on a website.

  5. A structure of an HTML tag consists of opening tag and a closing tab

  6. An attribute contains extra information about the element that I don’t want to appear in the actual content.

  7. The anatomy of an HTML document spells out the rules of HTML, includes various html tags which lays out the sequence of a website correctly reflecting the title of the page, the contents, plus any other modification which distinguish the header, the content text, images, hyperlink etc.

1 Like

HTML

What is HTML?

  • HTML is not a programming language

  • It is a markup language

  • It defines the structure of your content

  • Consists of a series of elements

  • 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, can make the font bigger or smaller.

What is HTML used for?

  • HTML is used to add structure with elements to your content

Why are we learning HTML?

  • To better understand how the web is built from the beginning and to prepare us for programming fundamentals like JavaScript.

What is an HTML tag?

  • Are properties that enclose/wrap our content that consists of a series of elements to make our content appear and act a certain way.

What is the structure of an HTML tag?

  • The opening tag: Consists of the name of the element (e.g p(for paragraph)), wrapped in open and closing angle brackets (

    ). This states where the element begins or starts to take effect — in this case where the paragraph begins.

  • The closing tag: This is the same as the opening tag, except that it includes a forward slash (

    ) before the element name. This states where the element ends — in this case where the paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
  • The content: This is the content of the element, in this case just test.

  • The element: The opening tag, the closing tag and the content together comprise the element.[image]

What is an attribute?

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

  • e.g class it the attribute name and editor-note is the attribute value.

  • The class attribute allows you to give the element an identifier that can be used later to target the element with style information & other things.

  • It should always have a space between it and the element name or the previous attribute if there is one.

  • The attribute name followed by an equal sign.

  • The attribute value wrapped by opening and closing quotation marks.[image]

What is the anatomy of an HTML document?

  • — the !DOCTYPE. It is required preamble. In the mists of time, when HTML was young (around 1991/92), doctype were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However these days, they don’t do much, and are basically just needed to make sure your document behaves correctly.
  • — the HTML element. This wraps all the content on the entire page and is sometimes known as the root element.
  • — the HEAD element. This 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. This includes things like keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations and more.
  • — The META CHARSET sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written language. Essentially, it can now handle any textual content you might put on it. There is no reason not to set this and it can help avoid some problems later on.
  • — 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.
  • — 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?
    Hypertext Markup Language

  2. What is HTML used for?
    It’s used for writing code.

  3. Why are we learning HTML?
    To Help us learn and understand Code And programming so we can move onto understanding blockchain more.

  4. What is an HTML tag?
    Tags identify the Purpose of the code To be written.

  5. What is the structure of an HTML tag?
    Tags are enclosed within angle brackets < & > . The closing tag also has a forward slash to signify the closing.

  6. What is an attribute?
    This is information relating to the content that is not actually In the content.

  7. What is the anatomy of an HTML document?

Different elements make up a HTML document.

1 Like
  1. HTML is a markup language defining the structure of a web pages content.
  2. To define the website structure.
  3. To be able to build a base to connect our Dapps to and build a complete product.
  4. A code to define what type of content we are showing on the website.
  5. This is a single paragraph

  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
My test page
1 Like
  1. HTML is a HyperText Markup Language
  2. You use it to build a website structure.
  3. As a foundation for web development.
  4. Something to define what type of content we’re building on a website.
  5. Opening tag - Content - Closing tag.
  6. Attributes are features.
  7. Every HTML document consists of at list two elements - head and body.
2 Likes

Excellent answer sir ! Welcome aboard ! Hope to see you around. If you have any doubts or questions please feel free to reach out to us.

Happy Learning :slight_smile:

1 Like
  1. HTML (Hypertext Markup Language) is a Markup language that defines the structure of your content.

  2. It is used to structure a webpage and its content. Content could be structured within a set of paragraphs/lists of bullet points/images and/or tables.

  3. Learning HTML is the first step towards knowing how to build your webpage. However, in my mind, it is a way to begin to learn programming. Why I am learning to program is because we are in the information age and I don’t want to be behind the curve. Also, learning here gives me an opportunity to build.

  4. Tags are either opening or closing part of the element. Opening tag states where the element begins and the Closing tag declares the end of that element.

  5. Element structure = <.Opening tag> Thanks for the course </Closing tag>
    Eg.
    What I am writing here can be said as a structure of an HTML tag

  6. Attribute is information about the element which is hidden from the content.

  7. It consists of 3 elements
    a. root element
    b. Head element
    c. Body element

<html>
<head> .... <title> --- </title> .... </head>
<body> ............. </body>
</html>
1 Like
  1. HTML (Hypertext Markup Language) is used to structure your content or ex, web page on a computer.
  2. Its used to enclose, or group different parts of content to make it appear a certain way.
  3. So that we can communicate with a computer to have it complete commands.
  4. A prompt to indicate content or end of such as opening and closing tag.
  5. Opening tag, content, closing tag makes the element.
  6. Attribute is the editor note. It always have the following space between it and the element name.
  7. Doc type, html, head, meta charset,title and body.
1 Like