HTML Reading Assignment

  1. HyperText Markup Language.

  2. Is the code that is used to structure a web page and its content. It’s not a programming language, it is a markup language that defines the structure of your content.

  3. Because we need to build an user interface to communicate with the blockchain (backend).

  4. Tags are the instructions directly embedded in the text of an HTML document.

  5. Opening tag
    Content
    Closing tag

    These all form an element.

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

  7. <!DOCTYPE html> — the doctype.
    <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.

2 Likes

1 - HTML is a markup language - Hypertext Markup language
2 - HTML is used to define all contents of the website and wrap everything to make it look or appear the way you want it to appear
3 - To build websites (GUI)
4 - A tag/element is a rule that will apply to it’s content (if any)
5 - Opening tag, content, closing tag
6 - An attribute is used to indicate what should be applied to it’s content (style etc…)
7 -

1 Like
  1. HTML=Hypertext Markup Language, it is a markup language that you use to structure the content of your web page.
  2. Making webpages.
  3. To make webpages and to learn about coding.
  4. It is the name of the element that you put in the beginning of every element.
  5. and when you want to end the element </whatever here>.
  6. Additional information you can store in the element that won’t be visible to a visitor to your website.
  7. Doctype

html - The root element, you wrap the entire page in it.

head - Wraps all the content you don’t want viewers to see, for example a description of the web page tailored to search engines.

meta charset=“utf-8” - What character set your document will use.

title - Title of the page that is visible when it’s on a tab.

body - All the content you want viewers to see be that audio, images, text or whatever else.

1 Like
  1. HTML is a markup language that defines the structure of content.

  2. HTML is used to structure web pages.

  3. It is good to learn HTML so that you know how to program your own simple web page and develop a “builder” mindset.

  4. An HTML tag is a command to format text like italicizing, font size, etc.

  5. The structure of an HTML tag is using angular brackets < > and closing with a forward slash /.

  6. An attribute is extra info about the element that you don’t want to appear in the actual content.

  7. The anatomy of an HTML document is as follows:
    -DOCTYPE *required preamble
    -HTML opening tag
    -Header element
    -Body element
    -HTML closing tag

1 Like

1 HTML….Hyper Text Markup Language
2 It is language for making webpage
3 Necessary in making smart contracts
4 Opening and closing of element wrapping in the content
5

…………….


6 Attribute is non appearing info. about the element
7 is required in the start so document behaves correctly
the root element
element for storing all non-appearing but necessary things like keywords etc.
This element sets the character set your document should use to some UTF-8 ???whatever that is The TITEL and bookmark/favourite The whole body I want to present to the world

5

…………….

7. What is the anatomy of an HTML document?

@kgpost

You can check this example so you can have a better picture on the HTML anatomy: HTML Anatomy example.

Hope this gives you a clear view of the subject, keep learning! :slight_smile:

Carlos Z.

2 Likes

Greetings @Hash,

Very excited to have you on board in the forum. Please feel free to ask questions or doubts whenever you feel like you get stuck. We are here to support you.

Also please remember to post your exercise code answers in preformatted text format. Look at the below screenshots for reference.

prefromatted_text-animated

Happy Learning! :slight_smile:

1 Like
  1. Hypertext Markup Language
  2. Describing websites so they can be rendered by a browser
  3. To have a base to connect our dapps with the website.
  4. Determines the type of content being displayed.
  5. For beggining is the name of the element wrapped in opening and closing angle brackets and for the ending same as begining but with forward slash before the element.
  6. A characteristic of a particular element to provide greater information.
  7. HTML tags enfolding a header then a body which are both their own enfolding tags.
1 Like

1.HTML is a hypertext markup language
2.for web page development with fix content
3. We have two option either hire someone for website development or do it your self , I would opt for 2nd option.
4. Tags are used to hyperlink a word or image at any given point of time.
5. opening Tag <> containing the element within it. and Closing Tag </ > has forward slash before the element used in opening tag.
6. Attributes are the property of the or hidden information which is there for programmer but hidden from web user. Attributes are information regarding the element mentioned within opening tag.
7.Anatomy is basically the structure of web page containing the main information like web page Header/Body.

1 Like
  1. What is HTML? HTML is a mark up language that is use to format your text and images with elements to make them appear as you want them to appear on the internet.
  2. What is HTML used for? HTML the mark up language that is used to program websites.
  3. Why are we learning HTML? HTML is the basic foundation of the internet and webpages.
  4. What is an HTML tag? A tag is the name of a specific element in the HTML code.
  5. What is the structure of an HTML tag? The Structure of the HTML tag is made up of an opening tag, content, closing tag. These all combined are called an element.
  6. What is an attribute? An attribute is extra information about the element that you don’t want to be included in the content.
  7. What is the anatomy of an HTML document? The Anatomy of an HTML document consists of the DOC type, html code, header, title, and body.
1 Like
  1. What is HTML?
    It uses tag to structure the content and interrelations between the pages using Hyperlinks
  2. What is HTML used for?
    HTML ensures the proper formatting of text and images so browser may display them as
    they are intended to look. Using the standard tag, the output is the same independently the browser. the 3WC gives guidelines for that
  3. Why are we learning HTML?
    If you code a webapp, the frontend uses HTML fabric. If you dont learn HTML, you have to either be content with what the editor gives you or find someone who knows HTML and pay them for their HTML coding services. The best thing to do is to learn HTML, so that you can create the perfect web page for yourself, without having to pay others for it.
  4. What is an HTML tag?content the keyword tells the nature for the content
  5. What is the structure of an HTML tag?content
  6. **What is an attribute?**All HTML elements can have attributes, provide additional information about an element. Attributes are always specified in the start tag and usually come in name/value pairs like: name=“value”.
  7. What is the anatomy of an HTML document? With HTML5 2 sections are HEAD and BODY where head point the dependencies and the body shows the content. In the body, 3 sections are header (navbar and logo) , content and footer (generic information).
1 Like
  1. HTML is a mark up language that helps shape the way a page looks and its data
  2. HTML is used for creating structure on a page for viewers but people can look further and uncover notes that the front end cant see because they either aren’t important or you dont want them to be seen in the front page.
  3. we are learning HTML because its a basic step into the world of Programming just like +, and - are the basics of math but important and set you up for more complex or more in depth knowledge
  4. A HTML Tag is an element
  5. The structure of An HTML tag starts with an opening tag that includes an angel bracket and the element name which is the opening tag then followed with content which is what the front page will see, which is closed by a closing tag that includes angel brackets and a / before the element name all together it makes a element which is the HTML Tag
  6. An attribute are extra info about the element that you dont want to appear in the actual content
  7. The Anatomy of an HTML document are elements combined to form a Whole Page
1 Like
  1. Hypertext Markup language.
  2. HTML is used for website structure, format, and layout.
  3. As an essential part of our computer knowledge foundation.
  4. A code written to translate to the desired format
  5. A tag is the exact code.
  6. An attribute is used to be even more specific about an element.
  7. HTML, Head, and body minumum.
1 Like
  1. What is HTML?

HTML stands for Hypertext Markup Language, which means that it is not a programming language but the code that is used to structure content, but not to design it.

  1. What is HTML used for?

HTML is used for marking up the text

  1. Why are we learning HTML?

To know how to create a basic static website, how to show others our ideas.

  1. What is an HTML tag?

Tag is 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 users see on the Web.

  1. What is the structure of an HTML tag?

There are opening tags and closing tags. Opening tags are inside brackets , but closing tags inside

  1. What is an attribute?

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

  1. What is the anatomy of an HTML document?

HTML document includes doctype HTML, HTML, head, title and body tags.

1 Like

1.- HTML is a markup language that defines the structure of your content.
2.- Enclose or wrap different parts of the content to make it appear a certain way or act a certain way.
3.- HTML is the foundation to build a web page and we need to know this to eventually to build our own homepage and communicate with the blockchain, for instance.
4.- It´s a part of a HTML element that it does possible for the content to appear a certain or act certain way.
5.- Starts with before the content, then .
6.- Attribute is a extra information about the element that you don´t wan to appear in the actual content.
7.- The anatomy of an HTML document is:
Document
Html
Head / title / content
Body / content

1 Like
  • What is HTML?

Hypertext Markup Language is a code used to structure a webpage and its content.

  • What is HTML used for?

To create and program websites

  • Why are we learning HTML?

HTML is fundamental to web and blockchain development

  • What is an HTML tag?

Used for a form for user input

  • What is the structure of an HTML tag?

Open tag, Content, Close tag

  • What is an attribute?

Specific words used inside an opening tag to control the elements behavior

  • What is the anatomy of an HTML document?

Open HTML tag, Head, Body, Close HTML tag

1 Like
  • What is HTML?
    HTML ( H yper t ext M arkup L anguage) a markup language that defines the structure of your content.

  • What is HTML used for?
    HTML is the code that is used to structure a web page and its content

  • Why are we learning HTML?
    So we can build an interface that can operate whit a smart contract.

  • What is an HTML tag?
    a tag is an opening and closing angle bracket that consist of the name of an element.

  • What is the structure of an HTML tag?
    a tag is an opening and closing angle bracket that consist of the name of an element and an Attribute.

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

  • 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>
2 Likes
  1. What is HTML?
    a markup language
  2. What is HTML used for?
    code needed to structure the content of a website.
  3. Why are we learning HTML?
    to display content in a certain way.
  4. What is an HTML tag?
    the opening and closing of an element
  5. What is the structure of an HTML tag?
    consists of an opening tag and a closing tag <> </>
  6. What is an attribute?
    it contains extra information that should not appear in the actual content.
  7. What is the anatomy of an HTML document?
    the combination of individual elements to form an entire page
1 Like
  1. HTML is a markup language that defines the structure of your content.
  2. HTML is used for the content of a website.
  3. the knowledge of HTML will become handy when we start building smart contract.
  4. An HTML tag is a hidden keyword within a web page that define how your web browser must format and display the content.
  5. The HTML tag structure consists with an opening and closing angle bracket.
  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 refers to the content of the entire page including head, body, title, etc.
1 Like