HTML Reading Assignment

  1. HTML stands for “HyperText Markup Language”. It is a markup language that defines the structure of your content.

2.This format or language is what gives structure to web pages as we know them today. Prior, they were just static screens with text.
3. We are learning HTML to get us familiar with the concepts of programming so when we move to more complex forms like blockchain, we won’t be totally alien to it.

4.Tags define where an element begins and ends.
5. The structure of an HTML tag consists of "Opening tag, closing tag, the content, and the element.

6.Attributes contain extra information about the element that you don’t want to appear in the actual content. (I don’t fully understand attributes if somebody can clarify.)

  1. Doctype, html, head, metacharset, title, body.
1 Like
  1. HTML stands for hypertext markup language
  2. HTML is a code use for structure the content of a web page in a static way
  3. We are learning HTML because when coding smart contract in the back-end, we will need a front-end that could be a web page (written in HTML and Javascript)
  4. A tag sets the structure for an element in the web page, e.g. a paragraph with a simple phrase
  5. A opening tag consists of the name of the element between an opening and closing angle brackets. A closing tag is the same as the opening tag but with a forward slash before the element name
  6. An attribute is an extra information about the element that is not displayed on the web page
  7. The anatomy of HTML document is the basic elements of a HTML code:
  • html
  • head
  • meta
  • title
  • body
1 Like
  1. What is HTML?
    It’s the code that is used to structure a web page and its contents.

  2. What is HTML used for?
    Since it defines the structure of the web page content, it’s used to enclose, or wrap different parts of the content to make it appear, and or, act a certain way.

  3. Why are we learning HTML?
    To have full autonomy in the creation of a website, from base code to structure and appearance.

  4. What is an HTML tag?
    It’s used for creating elements that contain data, text, images or anything else.

  5. What is the structure of an HTML tag?
    It consists on three parts that make an element:

    • The opening tag: States where the element begins, or starts to take effect.
    • The closing tag: States where the element ends.
    • The content: information between the tags.
  6. What is an attribute?
    It contains extra information about the element that doesn’t appear in the actual content.
    Also consists on a name and a value, where the name allows for the element to be identified by style information and other things.

  7. What is the anatomy of an HTML document?

    • Doctype
    • HTML
    • Head
    • Title
    • Body

    Optional: Meta charset = “utf-8” (the character set baseline)

1 Like
  1. What is HTML ?

HTML stands for Hypertext markup language and is used to structure websites in such a way that web browsers will display said pages in a reliable manner.

  1. What is HTML used for ?

HTML is used to create websites

  1. Why are we learning HTML ?

So that when we learn how to code javascript to made Dapps and whatnot we will also have the knowledge to build a website that allows people to interact with our smart contracts / Dapps

  1. What is an HTML tag ?

an HTML tag is used at the beginning and end of a section of text or code that you want to effect in some way.

  1. What is the structure of an HTML tag?

a line of text

  1. What is an attribute ?

Attributes define additional characteristics or properties of the element

  1. What is the anatomy of an HTML document ?
Page title goes here

This text sits within a paragraph element.

Other elements are used to write text in bold or italics.

1 Like
  1. HTML is a markup language that gives websites structure.
  2. HTML is used to create a foundation of a website. It can be used to create links, insert images, manipulate text, etc.
  3. We are learning HTML to create websites to allow users to interact with our programs.
  4. A tag is the basic command that tells the browser what you want it to do.
  5. The structure for most tags is Content</closing tag>. Most HTML tags are written in pairs, with the ending tag having a forward slash before the text. There are some tags that are not used in pairs, such as
  6. An attribute contains additional information about an element that is not displayed by the browser.
  7. The basic structure of a HTML document is as follows:
Some Website Some additional tags here for images, links, etc
1 Like
  1. What is HTML?
    HTML - HyperText Markup Language- is the code that is used to structure a web page and its content. It could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

  2. What is HTML used for?
    use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. Such as make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, etc.

  3. Why are we learning HTML?
    To be able to edit the page structure by ourselves without needing to call someone who knows how to use it and pay for that. It works as a good fundation for web development.

  4. What is an HTML tag?
    This consists of the name of the element, wrapped in opening and closing angle brackets. This states where the element begins or starts to take effect. Eg. “< p >My text < /p >”

  5. What is the structure of an HTML tag?
    Opening tag + closing tag + the content = 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?
    < !DOCTYPE html > — doctype. It is a required preamble.
    the [ <html> ] element. This element wraps all the content on the entire page and is sometimes known as the root element.
    — 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
    < 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.
    — 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.
    — the [ <body> ] element. This contains all the content that you want to show to web

1 Like
  • What is HTML?
    Hypertext Markup Language.
  • What is HTML used for?
    It is the code that is used to structure a web page.
  • Why are we learning HTML?
    So we can learn the basics of how web pages are built so we can integrate them with java.
  • What is an HTML tag?
    it creates an element where you can put links or text in.
  • What is the structure of an HTML tag?
    contents</closing tag> and the whole thing is an element.
  • What is an attribute?
    Its an extra value you want in your element that wont be shown in the actual text but it will give it a value. its like a variable.
  • What is the anatomy of an HTML document?
    DOCTYPE
    html
    head
    meta
    title
    body
1 Like

What is HTML?
Hypertext Mark Up Language

What is HTML used for?
It is the code used to develop and structure a webpage and its contents

Why are we learning HTML?
It is the core basics of computer programming in terms of the internet (Web 1.0)

What is a HTML tag?
A Tag begins or ends an element in source code in other words, its used for creating an element

What is the structure of a HTML tag?
It starts by opening with < > and a closing </ > preceded with a forward slash - the ‘tag’ always contains the name of the element

What is an attribute?
Attributes extends an element, changing its behaviour or providing metadata

What is the anatomy of a HTML document?

  • The doctype declaration tells the browser what version of HTML your page is written in - this is done first

  • The HTML element is used to wrap all of your page content also known as the root element - it has both an opening and closing tag

  • The head element is used as a container for all information you need on your page for it to run

  • The body element is used to show your viewers all the content thats within your HTML document (text, video, images etc)

  • The title element is used to set the title on your webpage (shown in web browser tab)

Cheers :woman_cartwheeling:

1 Like

Hyper text markup language is code used to structure a web page and the contents of that page.

HTML is used to create and structure content on a web page to appear/act a certain way visually

HTML allows for its creators/users to customize their own webpages

HTML tags are what structures the webpages. HTML tags consist of the tag names in brackets that come in pairs that has an opening and closing parts surrounding the element.

The beginning tag has the name that identifies what sort of element will be on the webpage. The ending tag usually has a slash within the name to close up the command. Within those tags is the content which makes up the main visual words that will be seen.

An attribute is extra information of an element that the creator does not want to be visually seen. These attributes are specified at the start and come in pairs like class=“value”

HTML documents have a head and body element. The head provides the page title and general format of the webpage, while the body is where the main HTML content texts are in.

1 Like
  1. HTML is a markup language that defines the structure of your context.
  2. HTML is used to program websites with a fixed context
  3. We are learning HTML to get a good grip on the foundation of web development and blockchain development.
  4. A tag is what makes the browser recognize what type of content it has to show and in what way.
  5. The structure of an HTML tag is having an opening and closing tags that state the beginning of the element that looks like

    and

    p meaning paragraph
  6. An Attribute contains information that is in the element that you don’t want to appear in the actual text
  7. This is the anatomy of an HTML document * <!DOCTYPE html> — doctype. It is a 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/favorite 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. A coding markup language that is used to place various elements on a web page.
  2. Placing elements and structuring a web page
  3. It’s the basis of building things on the web.
  4. Root of HTML doc
  5. < html> … </ html>
  6. A classification of an element that lets us target it later using other languages such as CSS
  7. Doctype, HTML, head, title, body —> ending elements to close the document.
1 Like
  1. What is HTML?
    • HTML is the abbreviation for Hypertext Markup Language.
  2. What is HTML used for?
    • HTML is the code used to structure web pages and the content they contain
  3. Why are we learning HTML?
    • We are learning HTML is this course so that we can learn the basics of web dev and app design.
  4. What is an HTML tag?
    • In HTML a tag is used for creating an element
  5. What is the structure of an HTML tag?
    • The structure of an HTML tag is the name of the element contained in angle brackets. Ie.
    • information

      - In this example the p tag is used for identifying paragraphs within HTML code
  6. What is an attribute?
    • Attributes contain additional information about elements that will not be displayed (directly) in the actual content
  7. What is the anatomy of an HTML document?
    • All HTML document will contain the following:
      • - A doctype
      • - html Elements that will contain all code and content
      • - head element that contains page setup and non-content information
      • - the meta element sets the character set that the document will use
      • - the body element contains all of the content
1 Like
  1. 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.

  2. What is HTML used for? 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. Why are we learning HTML? it is the foundation of a website it contains the information that tells the browser what is on the page in terms of text, links, where to find images.

  4. What is an HTML tag? An HTML code that defines every structure on an HTML page, including the placement of text and images and hypertext links.

  5. What is the structure of an HTML tag? Within a web page, some HTML tags are required for the page to be displayed correctly. These tags are , , and . The tags must begin and end the document and the tags must appear before the tags. Also, the tags must be within the tags.

  6. What is an attribute? HTML attributes are special words used inside the opening tag to control the element’s behaviour . HTML attributes are a modifier of an HTML element type. … For example, the attribute name is used by several element types, but has slightly different functions in each.

  7. What is the anatomy of an HTML document? The diagram to the right displays an HTML paragraph element. As we can see, the paragraph element is made up of:

  • An opening tag (

    )

  • The content (“Hello World!” text)
  • A closing tag ()
1 Like

I am impressed with this work! Going the extra 3 miles! Font changes, hyper links. #7 is a great answer. One of the best Homework assignments I have seen. Keep this work ethic up. It’s great to see!

  1. What is HTML?
  • HTML stands for HyperTest Markup Language and is a code that is used to structure a web page and its contents
  1. What is HTML used for?
  • Used to structure a web page and its content
  1. Why are we learning HTML?
  • To build a frontend or user interface so that it can communicate with the backend or smart contract
  1. What is an HTML tag?
  • a tag is used to create an element
  1. What is the structure of an HTML tag?
  • Starting with angle bracket with the desired element in it and ends with angle brackets with a “/” before the element
  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?
  • Contains:
  1. doctype
  2. the <html> element
  3. the <head> element
  4. the element set <meta charset="utf-8">
  5. the <title> element
  6. the <body> element
1 Like
  1. What is HTML?

Also known as Hypertext Markup Language, HTML is the code that structures a web page and its content. For example, putting content into a bullet-point list and using images on a web page are two examples of using HTML.

  1. What is HTML used for?

See above

  1. Why are we learning HTML?

See above

  1. What is an HTML tag?

An HTML tag lets you create elements, which you then use to modify content in a certain way. For instance, you could put text in tags to make it bold.

  1. What is the structure of an HTML tag?

Opening tag - where the element begins
Content of the element
Closing tag - where the element ends
(All three of the above make up the entire element)

  1. What is an attribute?

Attributes let you add extra information to an element that doesn’t appear in the web page’s actual content.

For example you can give a paragraph

, with class being the attribute and the class-name in quotes being the attribute’s value.

  1. What is the anatomy of an HTML document?
// just a necessary start to an HTML document due to HTML conventions from the 90s that still exist // this element wraps all content on the entire page. Also known as the root element. // element for containing things you want to include but not show to your page's viewers. For example, you might put keywords and a page description (both meant for search engines), in the element. // opposite to the element, the element includes everything you want to show your page viewers when they visit your page. Sets your document's character set to UTF-8, which covers most characters from most written languages. In other words, this element lets your web page handle any textual content you put on it. This element sets the title of your page. The title appears as the title for the browser tab that your page loads in. The title element also describes the page when you favorite or bookmark it.
1 Like

Hi so here’s may answers to the questions regarding HTML. My aim as a beginner when using examples to answer the following questions was simply just to give some context.

  1. What is HTML? (Hyper Text Markup Language) is a computer language which contains standard words in an electronic document.

  2. What is HTML used for? HTML is used to structure webpages and content using tags to layout how things will appear.

  3. Why are we learning HTML? By learning HTML it will give us a good foundation in building webpages and web applications as projects. One example would be to ‘borrow’ cool bits from other sources if an editor doesn’t allow it and implement these in some way.

  4. What is a HTML tag? A HTML tag is defined as a set of characters constituting a formatted command for a webpage.

  5. What is the structure of a HTML tag? The structure of a HTML tag is an opening and closing tag. The brackets ‘< >’ contains the tag.

   <p>Text is not in centre.</p>

Text in center.

  1. What is an attribute? Examples of an attribute are

    This is a heading.

    This begins a paragraph.

    This ends a paragraph. For the sake of brevity I’ve kept the examples to a minimum but a we will continue in the course there’s plenty more!
  2. What is the anatomy of a HTML document?

Title of Document The content of Document

I hope this clarifies correctly the discussion for the 1st assignment.

1 Like
  1. HTML - The Hyper Text Markup Language
  2. its used to structure a web page and its contents.
  3. So that I can make a simple website as a front end for my smart contract.
  4. Its is used to create an element.
  5. An HTML tag has the
  6. Attributes is a piece of code that you don’t want to appear in the actual website content.
  7. It has the following elements
    doctype
    html - wraps all the elements on the page
    head - contains content not to be shown on the page but links to the page like keywords, description, etc
    meta charset=utf-8 - this one set the characters which will be used. characters from most languages appear here
    title - web page title
    body - this is all the content shown on the page
1 Like
  1. HTML is a Hypertext Markup language that creates and structures your content.

  2. An HTML is used to make a website with various elements that will make yoru webpage act or look a certain way.

  3. We are learning HTML becuase it is the basics of making a front end for the smart contracts. It is a good foundation to know the basics to avoid errors later.

  4. An HTML tag is an element that changes or makes the content look different to the vistor.

  5. The Structure of an html tag is as follows;

    I am cool

    . These tags made the text “I am cool” into a paragraph.
  6. An attribute, is an element that has extra information about the element. This information can be either visible or non-visible to the visitor.

  7. The anatomy of a HTML doc is;

i am cool

im happy

1 Like
  1. What is HTML? - Hypertext Markup Language
  2. What is HTML used for? - It’s used to define the structure of content in a webpage.
  3. Why are we learning HTML? - It’s a good foundation for web development and coding basics.
  4. What is an HTML tag? - A tag is the opening and closing marker for an element. and respectively.
  5. What is the structure of an HTML tag? A tag is structured as and . In between the opening and closing tags you find the content and possibly an attribute. All together these are known as an element.
  6. What is an attribute? - An attribute is extra information assigned to an element that is not shown in the content. It allows you to identify classes or affect style changes.
  7. What is the anatomy of an HTML document? - An anatomy of an HTML document begins with a ‘required preamble’ such as <!document html>. The next element is providing the root element. Then , which is used for SEO keywords, page descriptions, CSS styling, and others. This is not seen by the viewers of the page. Followed by to set the name of the web page. And finally which provides the bulk of content you wish to share with your viewers. Note that all the opening tags would need to have their corresponding closing tags added in reverse order to their opening.
1 Like