HTML Reading Assignment

  1. HTML H yper t ext M arkup L anguage. it is a markup language that defines the structure of your content. HTML consists of a series of which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

  2. The HTML language is used as the basic structure of a web page and its content.

  3. We are starting with HTML as the beginning foundation for building websites, so that we can create applications (" the front end") to interact with our ā€œsmart contractsā€ on the blockchain (ā€œthe back endā€). From here will be adding JS to add interactivity to our websites, and finally leading to Solidity - the language of the ā€œblockchain.ā€

  4. An HTML tag is an HTML code that defines every structure on an HTML page, including the placement of text and images and hypertext links. HTML tags begin with the less-than (<) character and end with greater-than (>). These symbols are also called ā€œangle brackets.ā€

  5. Structure of an HTML tag
    a) The opening tag: 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.
    b) The closing tag: This is the same as the opening tag, except that it includ* The lang **Attres 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.

  6. HTML attributes provide additional information about HTML elements.

  • The <a> tag defines a hyperlink. The href attribute specifies the URL of the page the link goes to:

The src Attribute

The <img> tag is used to embed an image in an HTML page. The src attribute specifies the path to the image to be displayed:

The width and height Attributes

The <img> tag should also contain the width and height attributes, which specifies the width and height of the image (in pixels):

The alt Attribute

The required alt attribute for the <img> tag specifies an alternate text for an image, if the image for some reason cannot be displayed. This can be due to slow connection, or an error in the src attribute, or if the user uses a screen reader.

The style Attribute

The style attribute is used to add styles to an element, such as color, font, size, and more.

The lang Attribute

You should always include the lang attribute inside the <html> tag, to declare the language of the Web page. This is meant to assist search engines and browsers.

The title Attribute

The title attribute defines some extra information about an element.
The value of the title attribute will be displayed as a tooltip when you mouse over the element:

  1. The anatomy of an HTML doc.
My test page My test image * `` — the doctype. 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. * `` — the [ `` ] element. This element wraps all the content on the entire page and is sometimes known as the root element. * `` — the [ `` ] 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. 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. * `` — 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. * `` — the [ `` ] 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/favourite it. * `` — the [ `` ] 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.
2 Likes
  1. What is HTML?
    A: Hypertext Markup Language HTML is type of code.
  2. What is HTML used for?
    A: It is used to define the structure and layout of web page content.
  3. Why are we learning HTML?
    A: So in the future, we are able to physically display Dapps or Smart contracts we create in a user friendly manner.
  4. What is an HTML tag?
    A: They are hidden keywords with a web page that define how you web browser must format and display the content such as text and images.
  5. What is the structure of an HTML tag?
    A: Paired HTML tags have both and opening (<>) and closing (</>) tags, while singular tag does not need to be closed.
  6. What is an attribute?
    A: An attribute contains additional information about the element that yo don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document?
    A:
    DOCTYPE
    html
    head
    meta charset
    title
    body
    img src="_____"
    html
2 Likes
  1. HTML (HyberText Markup Language) is a markup language that defines the structure of your content.

  2. HTML is used for coding websites

  3. We are learning HTML so we can create a Front end website that interacts with the blockchain.

  4. A tag tells the browser how to read the enclosed content.

  5. <opening tag>Content</closing tag>

  6. An attribute defines extra details about the content. It could be style or functionality related.

<html>

<head><title>TITLE</title></head>

<body>
Content, blah blah blah
</body>


</html>
2 Likes

Hi @BearsToBulls good answers! just on number 7, it is not a completed html anatomy. could you take a look again? And please use the coding format, when you post a code.

1 Like
  1. HTML, the abbreviation for Hypertext Markup Language, is the code used to structure a web page and its content and define the structure of the content. It is NOT a programming language, like Javascript–which we are about to learn in this course.

  2. HTML is used for enclosing, or wrapping, different parts of a web page’s content to make it appear or act a certain way.

  3. We are learning HTML so that we can better understand how to create our own websites and later how to program using Javascript.

  4. An HTML tag is a part of an HTML element that both opens and closes the element.

  5. I took this screenshot from the article to demonstrate the structure of an HTML tag:
    Capture

  6. An attribute is a part of an element that contains extra information about the element that you do not want to appear in the actual content.

  7. The anatomy of an HTML document is the following: doctype, html element, head element, character-setting element, title element, and body element.

Thanks!

1 Like

1.) 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.) Example: To simplify a smart contract in a web-site/page.

4.) 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.)

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

7.) - !DOCTYPE html — the doctype. 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> — 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. 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> — 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/favourite 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?
    Its the code that structures a webpage

  2. What is HTML used for?
    Building a webpage

  3. Why are we learning HTML?
    Its used for the internet part of the dapp we will make.

  4. What is an HTML tag?
    The tag is the beginning and end of a element. The signal in the html code to make the formatting.

  5. What is the structure of an HTML tag?
    The start tag is an element name wrapped into angle brackets. The end tag is the same but with a backslash before the element name.

  6. What is an attribute?
    Its extra information about the element inside the tag.

  7. What is the anatomy of an HTML document?
    <!doctype html>

everything not shown headline of web page everything shown
1 Like
  1. What is HTML?
  • HyperText Markup Language
  1. What is HTML used for?
  • HTML is used to structure web pages and its content
  1. Why are we learning HTML?
  • Learning to understand basics of how websites and content/data are built
  1. What is an HTML tag?
  • A HTML tag is the name of the element that defines how content is formatted and displayed on a website
  1. What is the structure of an HTML tag?
  • A HTML Tag has an opening and closing tag ex.-
  1. What is an attribute?
  • An attribute contains extra info about the element that you don’t want to appear in the content
  1. What is the anatomy of an HTML document?
  • <! Doctype html> doctype
root element, wraps all content on page non content items like keywords and page descriptions character set title of page all content to be seen
2 Likes

What is HTML?
HTML is a hypertext markup language. It’s the code that is used to structure a web page and its content.

What is HTML used for?
It’s used to create and structure websites and it’s content

Why are we learning HTML?
We’ll need a website to connect to our Dapp. It’ll be my front-end

What is an HTML tag?
An HTML tag is used to open and close elements.This is done by using angle brackets.

What is the structure of an HTML tag?
opening tag, closing tag, the content, the element

What is an attribute?
Attributes contain extra information about the element that you don’t want to appear in the actual content.
Example- The class attribute allows you to give the element an identifier that can be used later to target the element with style information and other things.

What is the anatomy of an HTML document?
It’s the structure of the language.
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>
2 Likes
  1. What is HTML?
    It is a markup language that defines the structure of your content, it consist in different elements, which you enclosed to make your content appear in certain way.
    The anatomy of HTML is the following: opening tag, closing tag, the content, and the element.

  2. What is HTML used for?
    Now a days is used to make sure a document behaves correctly, before back in (1991/1992), 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.

  3. Why are we learning HTML?
    to me this would be some programming basics, plus you get to create your own websites.

  4. What is an HTML tag?

— the element. This element wraps all the content on the entire page and is sometimes known as the root element.
  1. What is the structure of an HTML tag?
    That is how your document should start and end, it wraps all content.

  2. What is an attribute?
    An attribute is extra content that you do not want to be appearing on your site.

  3. What is the anatomy of an HTML document?
    That wraps up the basics of individual HTML elements, but they aren’t handy on their own. (, , , ,)

1 Like

A very warm welcome to you @lafunk . Thank you for your first post on the forum. Looking forward to many more to come. We are here to help so please feel free to reach out for any doubts or questions.

Happy Learning ! :slight_smile:

1 Like
  1. it“s the code that is used to structure a web page

  2. it“s used to structure a web page and its content

  3. to get an insight in coding

  4. a tag is used for creating an element

  5. They contain extra information about the element that you don“t want to appear in the actual content

  6. Individual elements combined = entire HTML page

1 Like
  • What is HTML?
    Hypertext Markup Language is Code
  • What is HTML used for?
    Building and designing web pages and their data management.
  • Why are we learning HTML?
    So we can "structure a web page " and create links if needed
  • What is an HTML tag?
    Tags can make a word or image hyperlink to somewhere else, or italicize words, or can make the font bigger or smaller.
  • What is the structure of an HTML tag?
    The Opening Tag consists a Greater Than, Less Than symbol enclosing the name of the Element. The Closing Tag is like the Opening Tag, but the name of the element is preceded by a forward slash.
  • What is an attribute?
    Attributes contain more information about the Element that you don’t want to appear in the Web Page
  • What is the anatomy of an HTML document?
    Doc Type,
    Root,
    Head,
    Meta Charset,
    Title,
    Body,

I believe that covers most of what constitutes the Elements of an HTML Document.

1 Like
  1. HTML is an abbrevation for Hyper Text Markup Language, and is a markup language used to structure a web page and its content. The language works by structuring content inside different tags.
  2. HTML is used to structure a web page and its content.
  3. The reason we are learning HTML is because it is so fundamental to how web applications work, and we have to be familiar with this because the smart contracts (back end) have to integrate with the front end for a dApp to work. If we only learned the back end programming we would not get a full understanding on how dApps work.
  4. A HTML tag is a piece of characters which we can use to enclose our content to give the web site a specific structure or give the content properties.
  5. The structure of an HTML tag is in the opening tag ā€œā€, and in the closing tag ā€œ<tag</>ā€.
  6. An attribute specifies additional information to an HTML element. It can be used to give elements classes and IDs (which again can be used to link the element to CSS and JS), to place media on the web site and much more.
  7. A HTML document starts with a tag specifying the Doctype. Then we have a head tag, where you can put information and attributes that will not be directly shown as content, and a body tag, where you put information that will be shown as content. You can further structure your web site.
1 Like
  1. HTML or Hypertext Markup Language is a ā€˜markup’ (not a programming) language that defines webpage content’s structure.

  2. HTML is the code (as format) used to structure and build a webpage and its content (text, images, videos, links, etc.). It consists of a series of elements used to enclose different parts of the content to make it appear or act a certain way.

  3. Learning HTML is fundamental in web and blockchain development. It enables us to create the perfect web page we want w/o having to pay someone exorbitant fees for it. Also, having a head start in programming allows us to later build Dapps that can interact with a blockchain or smart contracts.

  4. HTML tags are hidden codes that enclose or wrap, and appear right before (=opening tag) and after (=closing tag) text content of the element (paragraph, nesting, image, heading, list, link) that define how content is formatted, displayed, and seen on the web. The enclosing tags can: make a word or image hyperlink to somewhere else; italicize words; make font bigger or smaller, etc.

  5. The structure of an HTML tag consists of an opening tag before and closing tag after content. Format-wise, the opening tag consists of the name (< name >) while closing tag consists of the same name preceded by a forward slash (< /name >).

  6. Attributes contain extra info about an element not intended to appear in actual content: 1) a space between it and element name; 2) attribute name followed by equal sign; and 3) attribute value wrapped by opening & closing quotation marks.

  7. The anatomy of an HTML document looks like this:

    < html >
         < head > … < /head >
         < body > … < /body >
    < /html >
    

    where the: 1) Head 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: keywords & page description you want to appear in search results, CSS to style content, character set declarations, and more; and 2) Body element contains all the content you want to show to web users when they visit your page: text, images, videos, games, playable audio tracks or whatever else.

1 Like
  1. What is HTML?
    It is a markup language that defines the structure of your content

  2. What is HTML used for?
    The code that is used to structure a web page and its content.

  3. Why are we learning HTML?
    Because it is one of the most used languages in the programming environment.

  4. What is an HTML tag?
    Tag can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller etc

  5. What is the structure of an HTML tag?
    It consists out of an opening and closing tag with content in the middle that creates an 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?
    It wraps up the basics of individual HTML elements

2 Likes

It is not a programming language but a markup language mostly used for websites

  1. mostly used for website (text, links, images)

  2. Because HTML is pretty much the basics of everything that is shown on screen when you visit a website. So whatever you program, you will always need a way to show it in orderly fashion to the end user. Markup language is important for that.

  3. It is part of the HTML code which always begins with <> and ends with </>. It can contain different kinds of elements.

  4. <> until </>

  5. Its a part that can contain additional information regarding what is inside the tag. for example within a tag of text

1 Like
  • What is HTML?
    Code that is used to structure a website (Markup Language)
  • What is HTML used for?
    Mainly for building (static) websites
  • Why are we learning HTML?
    It’s easy to learn.
  • What is an HTML tag?
    The name of an element
  • What is the structure of an HTML tag?
    It consists of an opening and closing tag
  • What is an attribute?
    An attribute contains extra information about the element
  • What is the anatomy of an HTML document?
    A set of rules in which we wrap the code, and which makes it possible to display the code in a browser in a uniform way
1 Like
What is HTML?
What is HTML used for?
Why are we learning HTML?
What is an HTML tag?
What is the structure of an HTML tag?
What is an attribute?
What is the anatomy of an HTML document?

HTML - 'HyperText Markup Language' a language that defines the structure of the content
and how its viewed on the browser

what is HTML used for - displaying the content of the page in a user friendly way.

why are we learning HTML - To understand how the barebones of programming work, while being able to easily
check how our every input changes the layout of the page

An HTML tag - A tag required to open and close when implementing content

What is the structure of an HTML tag - A combination of the name of the element you're implimenting
and outer angle brackets that surrounds it.

an Attribute - extra information about the element that the programmer doesn't want to appear with the
actual content.

The anatomy of an HTML document - the layout of the page viewed as plain text - resembles a spine made up of
multiple basic elements.
1 Like

1.HTML stands for Hypertext Markup Language, is the code language
2. HTML is use to structure a website and its content.
3. Understanding the language behind a basic website before learning other complex language in smart contracts.
4. It is a part of the HTML anatomy, there is an open tag and a closing tag. It is used to put the elements in the middle.
5. Two elements, first the opening tag, used at the start to wrap the text in the middle. Ending with second element the closing tag.
6. Attribute contain extra information, it is an identifier.
7. The opening tag, the closing tag, the content (just the text) and the element (all three mentioned before together named as element.

1 Like