HTML Reading Assignment

  1. Hypertext Markup Language
  2. It is used to structure the web page and its content.
  3. So we could create our own websites.
  4. A tag is used not create an element.
  5. Opening tag, closing tag, content and element
  6. Extra info about the element that you don’t want to appear in the actual content.
<!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
  1. HTML is a markup language that defines the structure of your content.
  2. HTML is used for adding content to your page.
  3. We learn HTML so that we understand where to put specific language so that the user may understand it.
  4. An HTML tag is what defines the protocol within the element.
  5. The structure of a tag has a beginning “<>” and an ending “</>”
  6. An attribute is extra information you give that doesn’t appear in the actual content that may or may not add value.
  7. The anatomy of an HTML document consist of:
  • Doctype
    -html
    -head
    -meta charset
    -title
    -body
1 Like
  1. HTML stands for Hyper Text Mark-up Language.
  2. HTML is used to manage the appearance of text used on web pages.
  3. The purpose of learning HTML is to manage the presentation of the text front end users visiting our website will encounter as they interact with our program running behind the scenes.
  4. An HTML tag is a marker that tells the browser how to display text used.
  5. The HTML tag structure has 4 parts: Opening tag, Closing tag, Content and Element.
  6. Attributes contain extra information about an element that you do not want to appear in the content. It’s almost like a slang adverb you take out of a sentence you write for your teacher vs. a text message you send to your friend.
    Message to friend: “He runs hella fast!”
    Message to teacher: He runs very fast!"
    The word “hella” stays in the background of our head (attribute) and only the word “very” appears (content).
  7. The anatomy of HTML is as follows:
<!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
  1. What is HTML?

hyper text markup language

  1. What is HTML used for?

formatting websites

  1. Why are we learning HTML?

to gain an understanding of simple programming structure

  1. What is an HTML tag?

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

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

  4. What is the structure of an HTML tag?

< p > element < /p > no spaces

  1. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content.
An attribute should always have the following:

a) A space between it and the element name (or the previous attribute, if the element already has one or more attributes).

b) The attribute name followed by an equal sign.

c) The attribute value wrapped by opening and closing quotation marks.

  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
  1. HTML is a basic language to create a static web
  2. HTML is used to create a structure behind the screen of a websites
  3. for increase our basic knowledge of how to interact with command system behind every websites
  4. HTML Tag is a list of simplified command used as a key to get exactly what we wanted to appears in users interface
  5. The structure of HTML Tag contains opening Tag, Content, closing Tag and an Element underneath it all
  6. An Attribute is content information but not appear in content interface
<!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>blablabla</title>
    </head>
    <body>
    <img src="" alt="">
    </body>
  </html>

with all front bracket, i erase it because the text gone when i used the front bracket

1 Like

I just now seen what actually posted. That wasn’t what was supposed to post, I had the whole anatomy typed in i thought lol. :rofl: :joy:. Thanks for the info.

1 Like
  1. hypertext markup language
  2. It has structure for your web to be displayed on website.
  3. To make some basic level website so that it can interact with our backend Smart contracts code etc.
  4. It helps define content type.
  5. Opening tags & closing tags(including element name) & content colllectively called as element
  6. It is property assigned to an element & contains extra info about the element that is not to be displayed in the content itself.
  7. Includes HTML elements, Head element(container), body element(which is the actual content displayed)
1 Like
  1. What is HTML?

HTML (Hypertext Markup Language) is a programming code.

  1. What is HTML used for?

It’s used to structure and develope web pages and their content. For example, structuring the content into paragraphs, images or hyperlinks. Basically building the foundation of a website.

  1. Why are we learning HTML?

Because Ivan said so. And because it is the basics of web development that will give us a foundation for future programming, be it in the traditional space or on web 3.0.

  1. What is an HTML tag?

A tag encapsulates the content (text, images, etc…) a developer wishes to display on his/her web page. There is an opening and a closing tag that show where the content starts and ends.

  1. What is the structure of an HTML tag?

at the beginning
at the end

Note, that the word tag is not necessarily part of the structure. Here it merely represents the name of the element it is “wrapping around” (encapsulating). The name can be anything, depending on what the programmer wants to achieve.

  1. What is an attribute?

An attribute is used to add/enhance information of an element that will not be displayed for viewers to see. It operates and works “behind-the-scene” and is inserted in the tag.

  1. What is the anatomy of an HTML document?

It has the “document type” at the top of the page, followed by the “html element” which is pretty much everything on the page - all other elements, heads, attributes etc… The “html” element is also referred to as the “root element”.

Then we get to the “head”, which is similar to an attribute in that it stores information that is used in the page, but not visible in the content. Information such as keywords, character set declaration or CSS. I imagine that things such as font size are decided here. The “head” also includes the title. So everything that is used to create the page that isn’t part of the actual visual content (text, images etc…) is found here.

And finally we get to the “body” of the page, which is what you want to have displayed for all to see.

1 Like
  1. HTML is a programming language, also called markup language, it defines the structure of the content you are creating.
  2. It is used to enclose/wrap all the parts of your content so that it appears in a certain way or behave in a certain way defined by the content you input.
  3. We learn HTML so that we can write and read smart contracts, build basic web pages that can interact with smart contracts and perform the required actions appropriate to those smart contracts.
  4. A tag consists of the name of an element.
  5. An opening paragraph tag would for example be

    and a closing paragraph tag would be

    for when the paragraph ends. e.g.

    Programming is fun so far

  6. An attribute contains more information about the element which you do not want to appear in the content. The class attribute can give the element an identifier that will be used to target the style information and/or other attributes.
  7. I notice that the (doctype) element when typed in here does not appear in my answer, is this because it was read by the browser and acted as it should and was not shown?
is required to ensure that a document behaves in the correct way.

html> Wraps the content of the page and is also known as the root element.

head> Acts as a container for all the things you plan to include. Keywords, page description and other things that will appear in the search engine results. CSS to style the content and character set declarations and all of the other aspects.

<meta charset="utf-8> This sets your character set for your document in this case utf-8 covers most written languages. <title></title> Sets the title of your page plus the title that appears in the browser window. <body></body> contains the content you plan to show and is what a visitor to your page will see.
1 Like

What is HTML?

Known as a Hyper Text Markup Language, it is a markup language that defines the structure of online content.

What is HTML used for?

Defining the structure of online content.

Why are we learning HTML?

We are learning HTML to understand and create the structure of a webpage.

What is an HTML tag?

An HTML tag is the name of the element wrapped in opening and closing angle brackets.

What is the structure of an HTML tag?

With opening and closing angle brackets, the structure of the tag states where the element begins or starts to take effect, as well as where it ends.

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?

Header, Navigator Bar, Main Content, Sidebar, Footer.

  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    HTML is used for text and simple graphics on the web.

  3. Why are we learning HTML?
    Precursor to Javascript. Start at the beginning.

  4. What is an HTML tag?
    A notation in the HTML that denotes a type of command. It sets parameters for a certain command.

  5. What is the structure of an HTML tag?
    < > and </ > to close.

  6. What is an attribute?
    An attribute contains extra information about the HTML element that is for backend users only. Not meant to show up on screen.

  7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
  </body>
</html>

What is HTML?
HTML (Hypertext Markup Language) is not a programming language, but a markup language to give structure to what you are creating

What is HTML used for?
HTML is used to give stucture to your content in a way that is not visible for the one reading your content.

Why are we learning HTML?
This lets you learn how to build a website, so the front end before we start to write about the back end.
This way you can also make the front end to a smart contract for instance and learn how to write the language.

What is an HTML tag?
A tag has the name of the element inside of it, like

, that stands for paragraph.

What is the structure of an HTML tag?
A tag always starts and ends with the element. between the tag is the content and all together it is called an element.

What is an attribute?
An attribute contains extra information about the element that you do not want to show in the content.
To impliment it there should be a space between the element and the attribute
Must be followed up by an = sign
and must be closed with " " on either sides of the attribute value

What is the anatomy of an HTML document?
The anatomy starts with the doctype, which in this case is html (no longer needed?)
Then you need to open and close with “html”, this is the root element and it wraps around all the content on the page.

A head “Head” is used to wrap up all the stuff you want to enclude in the html page but you dont want it in the content, like keywords and search result stuff.

Then you want to add utf-8. this is used for all your text and is better if you include it because it can be helpful down the road.

in “Title” you can add a title to your content on your html pages browsertab.

lastly it is “Body” this is where you add all your content like text or images or whatever you like.

1: HTML stands for Hypertext Markup Language. It is not a programing language but rather a markup language.

2: HTML is used to create websites. It defines the content structure of a webpage. It allows one to format text, add media and to link text and media to other sections of the website or to external websites.

3: HTML is really the foundation of the internet. While there have been minor changes and updates to accepted markup practices, over the years, HTML is still the fundamental building block of websites. Your website is your virtual presence, regardless of your industry. Whether we’re launching a major blockchain project, or a simple daap, our website is what we use to get it to market.

4: Tags define where elements begin and end.

5: Within tags, elements are wrapped in opening and closing angle brackets. The opening and closing tags are the same, except that the closing tag has a forward slash before the element name. Tags surround content, eg. text, media insertions and hyperlinks.

6: Attributes contain additional information about the element which will not appear in the content displayed on the website.

7: The anatomy of an HTML document is as follows:

<!DOCTYPE html> - Still used but not highly relevant anymore.
<html></html>`- Wraps all content on the entire webpage, whether visible 
or hidden.
<head></head> - Hidden information used by browsers and search engine spiders.  
Contains title, meta information, scripting, etc.
<meta charset="utf-8"> - Sets the character set for your page.
<title></title> - Page title.  Used mostly for SEO and how your search 
result displays on search engines.
<body></body> - Displays all of the content which visitors will see 
when visiting your website.

1 - Hyper Text Markup Language - a set of tools for basic web page construction.
2. - HTML is used to format a basic web page and allows for formatting text, creation of lists and links.
3 - HTML is the basic layer which web pages are created on and web pages will be the ‘front-end’ of our applications.
4 - An HTML tag is an instruction enclosed in pointy brackets opening: closing which give instructions to be applied to the content between the brackets. The tag can make the content into a paragraph, bold, italics, part of a list, a header etc.
5 - Tags are enclosed in pointy brackets . Tags which are not ‘empty tags’ (like img tags) need to be closed with . Tags can be nested.
6 -Tags can have an attribute which can add extra information about the tag which is not part of the content.
7 - The HTML document starts with a DOCTYPE statement, then nested tags: within which is the and

  1. HyperText Markup Language
  2. Used for coding the proper display of contents on the internet
  3. Because it’s the basis from which we can learn further and we’re often going to encounter HTML in this environment
  4. HTML tags alter contents such turning switching between bold and italics or indicating headings, paragraph etc.
  5. Variable according to their function but they must surround the component we want to alter, e.g. < p >My neighbor is very grumpy < / p > (no spaces)
  6. An attribute is meta information inside an element that can provide extra information or mark the contents but it’s not on display.
  7. As follows: an opening tag - contents - closing tag which altogether form an element
  1. HyperText Markup Language is a programming language used in the web 1.0, html let’s us see contents in browsers.
  2. HTML is used for loading web pages
  3. We are learning HTML so that we can show our blockchains on the web since it is on the back end, the front end needs to be on the internet so we gotta make a simple page at least.
  4. HTML tag is a command used for displaying a type of content (

    , …)

  5. Eg. for opening a link, and closing the space for a link.
  6. Attributes contain information about the element we don’t want to appear in the actual content.
  7. < !DOCTYPE html>
    < html> < head> < /head>, < body> < /body> < /html>

Will be doing this basic JS course for kicks and giggles. I’m a developer and have I’ve used JS and html before, just not in the last couple months so a refresher isn’t a horrible thing- I’ve used typescript more than pure javascript. Also curious to see what the course teaches so I can be confident in recommending it.

1. What is HTML?

Hyper Text Markup Language.

2. What is HTML used for?

It is used to define the structure and appearance of content- mostly for web sites, but it can also used in other contexts by users like formatting a forum or blog post.

3. Why are we learning HTML?

HTML is used to create the front end experience of an app or dApp (what the user sees and interacts with). This is used together with the back end that interacts with a database or blockchain.

4+5. What is an HTML tag? What is the structure of an HTML tag?

A name enclosed like this <tag>. Tags usually come in pairs of an opening <tag> and a closing tag prefixed with a slash </tag>. Between the tags is content (text or other tags). Together these form an element. Some elements don’t have content (like <img> for images) so don’t need a closing tag as all it gets everything it needs from attributes.

6. What is an attribute?

An attribute is meta data about the element. They are name value pairs of the form <tag attribute-name="value">.

7. What is the anatomy of an HTML document?
  • <!DOCTYPE html>: identifies the document as html
    • <html>: root element, wraps the content of the whole page
      • <head>: contains elements not part of the visual content
        • <meta charset="utf-8">: sets the character set
        • <title>: text that appears on the browser tab
      • <body>: contains the visible content of the page
1 Like

1. What is HTML?

It is a markup language, code that is used to structure a web page and its content.

2.What is HTML used for?

Structures a web page and its content, and its appearance.

3. Why are we learning HTML?

Its relatively easy to understand for someone who is new to the coding.
C++ and Solditiy programming knowlege is built on that understanding.

4. What is an HTML tag?

In HTML, a tag is used for creating an element. e.g. < p > tag is for paragraph beginning, < /p > tag means paragraph end.

5. What is the structure of an HTML tag?

-The element started by the opening tag, followed by the content itself, concluded by the closing tag.
-Attributes, contain extra information about the appearance of the content
-Nesting elements is used e.g bold or italic appearance of the content
-Empty elements: Element without any content.

6. What is an attribute?

Attributes, contain extra information about the appearance of the content

7. What is the anatomy of an HTML document?

< !DOCTYPE html > - just a preambulum
< html >< /html > - root
< head >< /head > - container for all the stuff, keywords, CSS
< meta charset=“utf-8” > - character set
< title >< /title > - Title
< body >< /body > - content itself

In the body main tags are
< h1 > to < h6 > is the Headings, it has 6 levels
< p > < /p > Paragraphs
< ul > unordered and < ol > ordered lists,
< li > is for the list items
< a > for Links or “anchors”

HTML5 logo

1 Like
  1. Hypertext markup language is a code that is used to develop web pages and their content .
    2 it is used to define the structure of the content of a web page .
  2. to understand some basics in programming language.
    4 a tag can make content hyperlink somewhere else, italicize words or change the fount.
  3. content of a web page.
    6 it provides additional information about an html element.
  4. the opening tag, the closing tag, the content, the element.
1 Like
  1. Hypertext markup language
  2. Defines the structure of content on webpage.
  3. to enable myself to build frontend to interact with the smart contract.
    4 A tag is what makes browser recognize what type of content to show in certain way.
    5.opening and closing tags
  4. Attribute specifies Additional information about element that you dont want to appear in content.
    7.All elements combined to form an entire HTML page
1 Like