HTML Reading Assignment

  1. a programming language that is used to structure a web page and its content
  2. it is used to structure the content of your website so that it will be displayed as they are intended to look
  3. because by learning the basics it will be easier later on understand the advanced programming languages
  4. tag opens and closes an element and classifies the type of element
  5. it always has an opening and a closing tag
  6. attribute can give you more information about an element and it won’t be shown in the actual content
  7. anatomy of HTML is set of various elements that build the structure (doctype, html element, head element, title element, body element)
1 Like

1- Hyper text Markup Language
2-It is used to structure a web pge and its content.
So the browser can show things ( text and images) as the builder intended.
3- Once we learn how to use HTML we can start to learn to build and understand web pages and coding.
4- A tool which enables to show the start and end of parts in the web page .
It denotes the things written like paragraphs, when they start and end, where images and headlines go and where ect.
5- the content iside of < to open >
to end use /
6-, Attributes are to provide information you do not want to appear, qualities, ,
7- <!DOCTYPEhtml>



My test page


<img src="images/firefox-icon.png alt=“mytestpage”>

Was wondering in the first line !DOCTYPE are caps always necessary?
.And why is Mytest page and the img element appearing and not the elements that I entered?

1 Like
  1. HTML stands for Hyper Text Markup Language. Basically, it let you see content in the browser.

  2. HTML is used to stucture the content of the webpage

  3. We learn HTML to have some basics that is very useful when working on other projects such as websites or smart contracts

  4. HTML tag is a “symbol” that notifies browser of how to treat the content of HTML element.

  5. HTML is structured with Opening tag and Closing tag

  6. Attributes contain extra information about the element that you don’t want to appear in the actual content. It allows you to give the element a non-unique identifier that can be used to target it.

  7. HTML document contains of:

  • <!DOCTYPE html>. It is required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes 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. That’s all you need to know for now.
  • <html></html> — This element wraps all the content on the entire page and is sometimes known as the root element.
  • <head></head> — 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. 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.
  • <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. 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.
  • <title></title> — 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/favourite it.
  • <body></body> 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.

Example:

<!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
  • What is HTML? Hypertext Markup Language
  • What is HTML used for? Creating web pages, documents.
  • Why are we learning HTML? It is the basic structure of a website.
  • What is an HTML tag? A tag such defines a specific element of the document and its function or the content within it.
  • What is the structure of an HTML tag? an opening tag and a closing tag.
  • What is an attribute? And attribute is further pieces of instruction inside the tag and can be used to point to that part of the document in order to style it or add other functionality such as animation.
  • What is the anatomy of an HTML document? Essentially it is made up of the <!DOCTYPE> letting the computer know this is a document, elements, opening and closing tags, nested tags if applicable, attributes and their respective values which allow us to insert images, navigation, links, or other instructions to ensure the document displays what we want.
1 Like
  • What is HTML?
    HTML ( H yper t ext M arkup L anguage) is the 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.
  • What is HTML used for?
    We use HTML in different parts of the content to make it appear a certain way, or act a certain way.
  • Why are we learning HTML?
    To prepare us to learn programming.
  • What is an HTML tag?
    This states where the element begins or starts to take effect and ends.
  • What is the structure of an HTML tag?
    <It consists of the name of the element wrapped in opening and closing angle brackets i.e. opening tag

    and closing tag

  • What is an attribute?
    Attribute contain extra information about the element that you don’t want to appear in the actual content e.g.

    class=“editor-note”>

  • What is the anatomy of an HTML document?
    <!DOCTYPE html> — the doctype.
    <html></html> — the element
    <head></head> — the element.
    <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 element.
    <body></body> — the element.
1 Like

HTML is the language used to create documents and websites. It is a code used to structure websites. It has specific parameters which computers understand to build what you see on a website.

Html is used to create web pages as explained above.

We are learning html because cryptos link to websites that enable people to interact with them. We need to understand how to link the two.

Tags show where html elements begin and end.

HTML tags look like this xyz>a/>

An attribute contains information that you want search engines to see but now the viewing public.

this is the anatomy of html document.

  1. Doctype
  2. html element
  3. head
  4. meta charset
  5. title
  6. body
    7.close
  7. html close
  8. images
1 Like
  1. What is HTML?

A markup language that is used for organizing the outline of the website.

  1. What is HTML used for?

To display formatted content on a page.

  1. Why are we learning HTML?

To enable us to build a front-end for our smart contracts that we will develop

  1. What is an HTML tag?

A tag is what makes the browser recognize what type of content it has to show and in what way.

  1. What is the structure of an HTML tag?

The beginning tag consists of the name whereas the ending tag consists of the same name preceded by a forward slash ("/"). For example, the HTML tag “

” begins a paragraph, whereas “

” ends that paragraph. This is a syntax in HTML.

  1. What is an attribute?

It sets an tag on a part of your document that will allow you to change the style of the specific element

  1. What is the anatomy of an HTML document?

doctype> - sets rules for the HTML page to follow
html> - wraps the contents on the page
head> - contains page info that is not content. (keywords, page description, css, character set, etc…)
body> - contains the contents of the page ( text, images, video, etc…)
meta charset=“utf-8”> - character set of the document, to handle textual content
title> - sets the title of the page, which appears in the browser tab

1 Like
  1. HTML is not a programming language; it is a markup language that defines the structure of your content.
  2. 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.
  3. To learn how to make a website with basic text, hyperlinks, images etc.
  4. An HTML tag is commonly defined as a set of characters constituting a formatted command for a Web page. At the core of HTML, tags provide the directions or recipes for the visual content that one sees on the Web
  5. This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets . This states where the element begins or starts to take effect — in this case where the paragraph begins.
    6.Attributes contain extra information about the element that you don’t want to appear in the actual content.
1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? to structure a web-page and it’s content
  3. Why are we learning HTML? to learn basics of building a web-page before getting into JavaScript and other programming languages.
  4. What is an HTML tag? a tag in the form of <> and </> which says what we want the tag to do for our content.
  5. What is the structure of an HTML tag? <> </>
  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?
    begins with doctype, html element, heading, title and body.
1 Like

1. What is HTML? Hyper Text Markup Language - Markup languange that defines the structure of your content.

2. What is HTML used for? Used to design the structure of your webpage content.

3. Why are we learning HTML? HTML is important in application building for frontends of your decentralized applications. In addition, Java Script basics will assist with getting to understand C++ and Solidity.

4. What is an HTML tag? HTML tags consist of both the name and opening of an element and the closing of an element. Necessary is structure of a webpage and can define paragraphs, images, links and more.

5. What is the structure of an HTML tag? Open Tag <> Close Tag </>

6. What is an attribute? An attribute is extra information about an element that is not actual content visible to the reader.

7. What is the anatomy of an HTML document?
a) -!DOCTYPE- required preamble
b) -html- HTML element or root element
c) -head- Acts like a container for all the stuff included in the html page that isnt visible to the webpage viewer. Ex. keywords or css styles
d) -meta charset- Sets the character of your document
e) -title- Sets the title of the page, visible at the top of the browser
f) -body- Contains all the content you want to show users

1 Like

Hi @Lukas1 and @Kendrick ,
A very warm welcome to you for being part of the academy forum. Looking forward to more responses and answers from your side. Remember, if you have any questions or queries, please feel free to post it here on the forum. We are here to help. :slight_smile:

Hi @monymike,

Yes, it is necessary for any HTML to render in the browser

for code to be visible in your post answer, you need to paste it in the given format. Look at the below screenshots for reference.

prefromatted_text-animated

1 Like
<html>
<head>
</head>
<body>


<p>welcome to Rachi Academy</p>
</body>
</html>
1 Like

1)HTML is standard language for displaying text, pictures, videos, and other media orginizing the outline of the website
2 )HTML is used to build a website
3) HTML we need to build a frontend web interface for the Communication to the outside world to the backend blockchain Dapps/smartcontracts
4)HTML Tag denotes the start and end of a section in HTML,It’s like instructions we give to the website.Tags are used to isolate content within any element you create.
5) HTML structure is an openings

and closing

feature with content inbetween.
6) An ATTRIBUTE is additional info that will not display on screen (additional info about the content) additional content in elements that are not intended for the user to see. They are used to hold information available to the developer only.
7)All HTML documents begin with !DOCTYPE html tag, then follow with the html tag, and a head and body, at the very least. My test page <img src=“images/firefox-icon.png” alt=“My test image” >

1 Like

1)HTML is a markup language that defines the structure of your content

  1. HTML is used to structure a webpage

  2. HTML is the fundamental of a website and learning it will help on the road to web development

  3. Tags indicate the start and end of elements in HTML

  4. opening < >
    closing </ >

6)Attributes are the words inside an opening tag that determine elements behavior

  1. doctype
    HTML element
    Head element
    Character set element
    Title element
    Body element
1 Like
  1. What is HTML?
    A: HTML stands for “Hypertext Markup Language”. It is not a programming language.

  2. What is HTML used for?
    A: It is code that is used to structure a Web Page.

  3. Why are we learning HTML?
    It is an important tool for Web page development (and we will be creating Web pages as part of this course).

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

  5. What is the structure of an HTML tag?
    A: The beginning tag consists of the name and the ending tag consists of the same name preceded by a forward slash ("/").

  6. What is an attribute?
    A: 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?
    A: The anatomy of an HTML document is basically how individual elements are combined to form an entire HTML page.

1 Like

Thanks bro, so if i understood well it’s the html code from start to finish

  1. HTML(HyperTextMarkupLanguage) is a markup language that contains elements that you can use to change how parts of the content look. It’s not a programming language.
    2&3. HTML is used to create webpages. A webpage can be used to interact with the blockchain network. It is the front end of an application.
    4&5. an HTML tag defines an HTML element. The tag itself contains an opening and closing angle bracket with element name inside. The closing tag has an extra forward slash before the element name. You need a closing tag to make sure the element works as it should.
  2. An attribute is an extra bit of information used to define an HTML element. An attribute is inside an opening HTML tag. It has an attribute name and an attribute value.
  3. A HTML document consists of a number of elements;
is required for all HTML documents. It specifies document type so a browser can load the page correctly. contain all other HTML elements. contain metadata. title for browser page tab and bookmark. All content. Headings, paragraphs, everything include links.
1 Like
  1. An attribute is an extra bit of information used to define an HTML element. An attribute is inside an opening HTML tag. It has an attribute name and an attribute value.
  2. A HTML document consists of a number of elements;
is required for all HTML documents. It specifies document type so a browser can load the page correctly. contain all other HTML elements. contain metadata. title for browser page tab and bookmark. All content. Headings, paragraphs, everything include links.
1 Like
  1. Hypertext Markup Language.
  2. It’s used to structure the content of web pages.
  3. Useful to learn HTML as a foundation for web development, as well as blockchain development.
  4. Tags are used to create the elements in HTML.
  5. The structure of an HTML tag: name is enclosed by angle brackets, for instance

    for paragraph element, for opening tag and

    for closing tag for the same element.
  6. Attribute can be added to the element and it contains additional information about this element. It extends a tag and alters its behaviour.
  7. Anatomy of HTML document:
  • - a required preamble
  • element - wraps the whole content
  • element - contains all other info needed for the page, but not the content, such as page descriptions and keywords
  • Character set element - determines the character set the document should use
  • title> element - page title

  • element - content shown to user.
1 Like
  1. What is HTML?

Hyper Text Mark up Language

  1. What is HTML used for?

HTML is used to create web pages it provides a basic structure to work to and proper formatting to allow the internet to read and understand what is wanting to be displayed.

  1. Why are we learning HTML?

Because it is the building block required to understand how web pages are created and to also enable us to create them rather than relying on others to undertake the work for us or pay web site builders a fee.

  1. What is an HTML tag?

a HTML tag can be one of many differing structures for example this is how a paragraph is denoted in HTML the beginning of a tag

and the closing of a tag

this will allow a paragraph or text to be created.
  1. What is the structure of an HTML tag?

As highlighted above the structure of a tag is as follows

text

this can be called an element and you can also provide further other attributes to the element.
  1. What is an attribute?

An attribute is how you define an element further for example if you can have a class attribute that would enable all elements with the class to be amended by CSS and Styling in the Header of the HTML Element an attribute is specific to the element for example

paragraph

.
  1. What is the anatomy of an HTML document?
<!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