HTML Reading Assignment

  1. HTML is a code language meaning hyper text markup language.
  2. It is used to arrange the structure of a web page.
  3. Html is a fundamental part of coding.
  4. Html tag is a way to call an element.
  5. Opening <p> closing </p>
  6. Attribute allow for extra info about an element
    7. <html> <head> <title> <body> </html>
1 Like

1. What is HTML?
HTML means Hyptertext Markup Language and is the code that is used to structure a web page and its content.

2. What is HTML used for?
It defines the structure of the web page content. It consists of a series of elements, which are used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.

  1. Why are we learning HTML?
    To know the basics for creating the front end for our smart contracts.

  2. What is an HTML tag?
    This states where the element begins or starts to take effect.

  3. What is the structure of an HTML tag?
    Opening tag: name of the element wrapped in opening and closing angle brackets
    Closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name

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

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

Please follow the forum link attached to the slide in your JS curse. It will redirect you to the JS forum thread where you can post your answers or concerns.

Thanks. :slight_smile:

1 Like
  1. What is HTML? programming language to begin building an web site.
  2. What is HTML used for? allows you to build skeleton of website.
  3. Why are we learning HTML? to be able to make the website.
  4. What is an HTML tag? HTML tags creating element
  5. What is the structure of an HTML tag? opening tag and a closing tag with content in between
  6. What is an attribute? Extra information about the element that you won’t see in the content
  7. What is the anatomy of an HTML document?
    Doctype
    Html
    Head
    Meta
    Title
    Body
    Html
1 Like
  1. Hypertext Markup Language

  2. Websites use this protocol to display information from the Internet on your monitor.

  3. HTML is the language used on the web, and we must know this language to navigate this environment in the context of crypto.

  4. HTML tags are the core elements of webpage formatting. It consists of the tag name in angular brackets, with a beginning and ending tag.

  5. An HTML tag starts with the opening element , and the closing element features a slash

  6. HTML attributes give more information about an element. They are specified in the opening tag, and come in name/value format, such as name=“value”.

  7. HTML code features two core elements : Head and Body elements
    Head elements provide the formatting instructions.
    Body provies the actual content in HTML text.

1 Like
  1. Hypertext Markup Language is a markup language that consists of elements that define the structure of ones content.

  2. HTML is a language and protocol used in websites to display content.

  3. To progress into programming languages, such as JavaScript.

  4. HTML tags consist of two types (opening & closing), used to state where an element starts and ends.

  5. Opening tag consists of the name of the element, wrapped in opening and closing angle brackets. Closing tag is the same as the opening tag, except that it includes a forward slash before the element name.

  6. Attributes contain additional information about an element that does not appear directly in the content of the element.

1 Like
  • What is HTML & what used for?
    its a code base hypertext language that is used to organize content and structure element in a webpage
  • Why are we learning HTML?
    Is acts as a base for learning Web 1 language of static website and helps us transition to web 2 and web 3 as it follows similar bases
  • What is an HTML tag?
    they are used to wrap content to fulfill certertain function or present in a certain way!
  • What is the structure of an HTML tag?
    they need to have opening tag , closing tag and function of what the tag has to perform in the document or content
  • What is an attribute?
    they are values or function to particular content
  • What is the anatomy of an HTML document?
    it need to contain open and closing tags, the content and the elemet
    [/quote]
1 Like

HTML is hypertext markup Language
Its use to structure the web page and its content
we are learning HTML to enable us build the front end of Dapp which will interact with the backend of Dapp the smart contract
HTML tag is part of an HTML element
The structure of an HTML tag consist of opening tag and closing tag
Attribute defines the characteristic of an HTML element
Anatomy of an HTML document refers to the combination of different elements that make up a web page

1 Like
  1. What is HTML?
  • Hyper Text Markup Language
  1. What is HTML used for?
  • Web development
  1. Why are we learning HTML?
  • To understand the fundamentals in building the structure of a website and use it later in communicate with the blockchain technology.
  1. What is an HTML tag?
  • It tells the compiler that we are starting a functions or it tells the browser that we are using an HTLM document.
  1. What is the structure of an HTML tag?
  • < tag > this is the opening of a function / < / tag > here we close the function.
  1. What is an attribute?
  • It specifies additional properties regarding the content that is included in the
  1. What is the anatomy of an HTML document?
    1. < html > defines an html document /
    1. < head > the title of the website /
    1. < body > the content of the website /
      Example:
      < html >
      < head >… < /head >
      < body >…< /body >
      < /html >
1 Like

Hypertext mark-up language

  1. **What is HTML? HyperText Markup Language
  2. **What is HTML used for? Structure a web pagge and it’s content
  3. **Why are we learning HTML? In order to provide a front end to our back end blockchain app
  4. **What is an HTML tag? The opening
  5. **What is the structure of an HTML tag? Opening Tag + Content + Closing Tag
  6. **What is an attribute? Extra information in content that you don’t to appear in the visual content
  7. **What is the anatomy of an HTML document? Doctype, html, head (s), metacharset (utf-8), title(s), body(s), img(s), list(s) and more!
1 Like
  1. What is HTML?
    Hyper Text Markup Language - the programming language that most websites are created with

  2. What is HTML used for?
    Creating websites.

  3. Why are we learning HTML?
    To get a basis for programming and so in the future we can create websites that can interact with our blockchain data.

  4. What is an HTML tag?
    Tags enclose sections of code and can be called opening and closing tags. The tags can modify whatever content that they enclose. For example, changing the font size or position, or making a word or image hyperlink to somewhere else.

  5. What is the structure of an HTML tag?
    <open_tag> some kind of data </close_tag>

  6. What is an attribute?
    It contains extra information about an element.

  7. 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. What is HTML?

It is a markup languauge that defines the structure of your cotnent

  1. What is HTML used for?

HTML is used for creating static websites

  1. Why are we learning HTML?

We are learning HTML to be able to build our own simple websites. It is important to understand the basics of front end development even though you mainly work on back end development. It is a very beginner friendly coding language andn makes it easier to ad don complexity later.

  1. What is an HTML tag?

An HTML tag is used to wrap in elements which are important to build a website

  1. What is the structure of an HTML tag?

An HTML tag begins with an opening tag: < > then has a element inside it i.e

the you have the content and in the end a closijng tag so the structure would look like:

I love cross country skiing

  1. What is an attribute?

Attribute contain extra information about the element that you dont wan to appear in the actual content

  1. What is the anatomy of an HTML document?
1 Like
  1. What is HTML? hyper text markup language
  2. What is HTML used for? structuring web pages
  3. Why are we learning HTML? to provide a front end for daps
  4. What is an HTML tag? a set of instructions to a webpage on how and where to display info
  5. What is the structure of an HTML tag? bla bla
  6. What is an attribute? extra information you dont want users to see
  7. What is the anatomy of an HTML document?
    <!doctype>
alksdjflkdjs alkdalksdjf
1 Like
  1. What is HTML?

It’s a markup language to display content on a web page.

  1. What is HTML used for?

It is used for structuring web pages.

  1. Why are we learning HTML?

To facilitate interaction with a backend of an application, we require an interface. HTML aids in creating that interface.

  1. What is an HTML tag?

HTML tag defines how the browser will format and display content.

  1. What is the structure of an HTML tag?

Opening tag: <>
Content
Closing tag: </>

  1. What is an attribute?

An attribute specifies some extra information about an element that we don’t want to include in the content.

  1. What is the anatomy of an HTML document?

Main elements that we use for an HTML document:

!Doctype Ensures the correct behavior of a document.
HTML: It’s a root element that wraps the content on an entire page.
Head: Contains information of an Html page but this we don’t want viewers to see.
Body: Contains all the content that we want viewers to see.

1 Like

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

What is HTML used for?
HTML is the code used to structure the layout of a web page and its content.

Why are we learning HTML?
HTML is the most basic skill to learn when creating any website or application that resides online, it is the foundation for web development

What is an HTML tag?
An HTML tag is an element that is used to enclose or wrap different parts of your content to make it appear or act a certain way.

What is the structure of an HTML tag?
The structure of an HTML tag is the opening tag, closing tag, and the content between the opening and closing tag. The opening tag, closing tag, and content make up the entire element. In the example below <p> is the opening tag, </p> is the closing tag, and “Hello World” is the content.

<p>Hello World</p>

What is an attribute?
Attributes contain extra information that are passed to the tag. In the example below, there is an inline CSS “style” attribute that makes the colour of the text inside the paragraph tags red.

<p style=“color: #FF0000;”>Hello World</p>

What is the anatomy of an HTML document?
An HTML document contains the following:

<!DOCTYPE html>
<html>
<head>
<meta charset=“utf-8”>
<title>Hello World</title>
</head>
<body>
<p style=“color: #FF0000;”>Hello World</p>
</body>
</html>

<!DOCTYPE html> - The doctype is tag that was mostly used in the past to make sure the HTML document followed a set of rules based, however, today it doesn’t do much.

<html></html> - The html element wraps the content of the entire page and is the root element.

<head></head> - the head element is a container for various stuff you want to include inside the hTML page that you do not want to show up in the content. This can include things like meta tags, the tile, links to stylesheets, and more.

<meta charset=“utf-8”> - This element sets the character set the HTML document will be using.

<title></title> - this is the title of your page and will appear in the browser’s tab.

<body></body> - the content of the page (images, text, links, etc) is placed within the opening and closing body tags.

1 Like
    1. What is HTML?
      Hypertext Markup Language
    1. What is HTML used for?
      HTML is used to structure a web page and its content
    1. Why are we learning HTML?
      Because HTML is the foundation of web development
    1. What is an HTML tag?
      HTML enclosing tags can make a word or image hyperlink to somewhere else.
    1. What is the structure of an HTML tag?

My cat is fat

1. What is an attribute? An Attribute contains extra information about the element that you don't want to appear in the actual content. 7) 1. What is the anatomy of an HTML document? opening tag closing tag | |

My cat is so fat he can't sit down

| |________Content________________| | |____________Element_____________________|
1 Like
  1. What is HTML?
    Hypertext markup language.

  2. What is HTML used for?
    HTML is used for creating webpages.

  3. Why are we learning HTML?
    It is a basic building block for the web and thte web is where we interact with crypto.

  4. What is an HTML tag?
    A tag is like a container opening and closing for attributes of an element within it.

  5. What is the structure of an HTML tag?
    opening tag, attribute, element, closing tag

  6. What is an attribute?
    Information about the element that you do not want to display on the page.

  7. What is the anatomy of an HTML document?
    Doc type, header, content

1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? To structure a webpage and its contents
  3. Why are we learning HTML? Learning the basics promotes a more inclusive understanding of coding, ultimately removing the need to rust and rely on others when constructing a webpage.
  4. What is an HTML tag? A tag donates to beginning and end of certain type of content
  5. What is the structure of an HTML tag? The opening tag, and the closing tag
  6. What is an attribute? Content you do NOT want to appear to the site user
  7. What is the anatomy of an HTML document? ```
My test page My test image ```
1 Like
  1. What is HTML?
    HyperText Markup Language – the code that is used to structure a web page and its content.

  2. What is HTML used for?
    *Defines the structure of your content.
    For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

HTML consists of elements – used to enclose (wrap) different parts of the content to make it appear or act a certain way.

  1. Why are we learning HTML?
    So that we can understand how code impacts websites and how they look so that we can better understand how we might integrate with blockchain.

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

  3. What is the structure of an HTML tag?
    The element wrapped in opening and closing angle brackets. ex.

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

  5. What is the anatomy of an HTML document?
    How individual elements are combined to form an entire HTML page.

    In our example:

— 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. — 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/favorite 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.
1 Like