HTML Reading Assignment

What is HTML?

Hypertext Markup Language.

HTML is the code that is used to structure web pages
and their contents. The content can be structured as
titles or paragraphs, for example.

What is HTML used for?

HTML is used for structuring things like titles,
paragraphs and images on a web page and giving
names to certain elements to reference in CSS.

Why are we learning HTML?

To learn to use the text editors and learn basic
programming. To be able to build a frontend for dApps.

What is an HTML tag?

A HTML tag is a prefix and suffix that is added to
a piece of content to define what it is.

What is the structure of an HTML tag?

< opening-tag class=“class-name” > content < /closing-tag >

What is an attribute?

An attribute is a class, usually added to divs (but
can be added to other tags) to be able to reference
that certain element later in CSS for styling.

What is the anatomy of an HTML document?

Must include !DOCTYPE and html tags, head
tags and body tags. See below.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>
1 Like
  1. (Hypertext Markup Language) is code that is used to write the structure of a web page and it’s content.

  2. Using a series of elements and tags you can create a base for a website. Enclosed tags with a hyperlink can travel the user to a new page.

  3. HTML is ground zero for web development. Once you learn how a website works it can make it easier grasping how blockchain is integrated into HTML and JavaScript. We could make a basic website and with practice move on to bigger projects.

  4. Tags is part of HTML syntax to separate the code into sections. This is how you can change the structure and content of a website.

  5. you will have an opening tag <> and a closing tag </>.

  6. Attributes are extra information about elements that will not appear in the content. This allows you to modify or add additional information on particular parts of your code to change or modify the same content, for one example.

  7. Remove spaces inbetween < > for correct syntax.
    <! DOCTYPE html > – with out the spaces, is required at the start of your code to ensure .HTML file.
    < html > – follows after DOCTYPE as this wraps all content in the webpage and root for the syntax.
    < meta charset = “utf-8” > – This allows the page to use the majority of languages in the world.
    < title > – sets the title of a page, which also can be called the browser tab.
    < body > – contains all the content the user will see on the webpage.

<!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

HTML is Hypertext Markup Language

HTML is the code used to create a web page and structure its contents

HTML is important to learn along with any other language, because it is the basic language that generates contents on a web page, and the skill is useful to coordinate any kind of language programming with web content

An HTML tag is the opening and closing part of a code element which defines its action

The HTML tag consists of an opening tag and closing tag; the opening tag can include an addition attribute

An attribute is an additional detail added in the opening tag that provides additional information about the content of the element without changing the visual presentation of that element at all

An HTML document starts with the “!DOCTYPE html” label to define it as an HTML document, then contains the “html” element, or “root element”, because it wraps the content of the entire page; it also includes the “head” element, which defines aspects of the page that aren’t viewable as content (like keywords for SEO), the “UTF-8” element (makes almost all written languages readable as content), the title element (the part that gets added to the browser tab when searching or appears to describe page when being bookmarked), and the body (the actual visible content of the page)

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content.
  2. What is HTML used for?
    HTML ( Hypertext Markup Language) is the code that is used to structure a web page and its content.
  3. Why are we learning HTML?
    To know how to program websites.
  4. What is an HTML tag?
    A tag is what makes the browser know what type of content it has to show and how it is supposed to be shown.
  5. What is the structure of an HTML tag?
    a tag has an opening and closing and then inside the tag, it has the content this all together is called an element.
  6. What is an attribute?
    An attribute in HTML/XML is used to denote special features/charateristics of an element or tag
  7. What 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. What is HTML?
    HTML stands for Hypertext Markup Language and defines the structure of our content.

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

  3. Why are we learning HTML?
    To learn how to code the structure of a web page and its content.

  4. What is an HTML tag?
    A tag is used for creating an element.

  5. What is the structure of an HTML tag?
    A opening and a closing tag to start and end the element.

  6. What is an attribute?
    Attributes are used to contain extra information about the element
    that we don’t want to appear in the in the visible content.

  7. What is the anatomy of an HTML document?
    1 Declaration !DOCTYPE html
    2 html element
    3 head elements
    4 body elements

1 Like
  1. What is HTML?: Hyper Text Markup Language
  2. What is HTML used for? : It is used to structure a webpage and its content
  3. Why are we learning HTML? : because this is the most basic computer language.
  4. What is an HTML tag? : This is like an order language. If you want certain functions to be seen, you need to put the order and that is the HTML tag.
  5. What is the structure of an HTML tag? : ‘<’,’>’,’/’, order code
  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, the html element, the head eleement, the meta charset element, the title element, the body element.
1 Like
  1. Hyper text markup language.

  2. HTML is the underlying structure of a webpage, used to form the basic structure paragraphs and highlighting of basic text in a webpage.

  3. HTML is the 1st step in learning Java Script. Once we’ve learned JS we can move on to Solidity and Dapp development.

  4. A tag is an opening bracket in a piece of code that defines the element to be implemented.

  5. < element />

  6. An attribute is an element embedded in the tag that will not show up in the actual text and is meant as a way to leave a note for anyone auditing the code.

  7. A bunch of code :slight_smile:

1 Like

Reading Assignment: HTML

  1. What is HTML?
    HTML is a markup language that defines the structure of you content for your web page.
  2. What is HTML used for?
    It is used to build websites. To give structure to your webpage and the content that you want to display on your webpage.
  3. Why are we learning HTML?
    HTML is the base language when learning to develop.
    We need to understand the basis as it will form the fundamentals before you can continue to learn other languages used to develop as it will make it easier to understand them.
    By learning HTML, you will be able to build the front-end of a web page
  4. What is an HTML tag?
    An HTML tag are the key words which defines how the web browser will format and display content
    An HTML tag is a piece of markup language that is used to indicate the beginning and end of an HTML element in an HTML document.
  5. What is the structure of an HTML tag?
    < ElementName > Content </ ElementName >
    or
    < OpeningTag > Content </ ClosingTag >
    (just without the spaces)
  6. What is an attribute?
    HTML attributes are the words inside the opening tag to control the element’s behaviour. An attribute either modifies the default functionality of the element or provides functionality to certain element types unable to function correctly without them.
  7. What is the anatomy of an HTML document?
    < !DOCTYPE html > (doctype-ensures document behaves correctly)
    < html > (root element)
    < head > (this element acts as a container for items not showing to
    viewers)
    < meta charset=“utf-8” > (this element sets the character set your document should
    use)
    < title >My test page (sets the title of your page)
    </ head >
    < body > (contains all the content want to show to web users)
    < img src="images/firefox-icon.png” alt=”My test image” >
    </ body >
    </ html >
1 Like
  1. Hypertext markup language.
  2. Code used to structure a webpage and its content
  3. To create webpages to interact with smart contracts.
  4. Angled brackets that encloses elements that encloses the content, attribute, or nesting element.
    5.

    My head really hurts.

  5. Information about an element that does not appear on the actual content.
  6. Html, head and Body.
1 Like
  1. HTML stands for Hypertext Markup Language.
  2. HTML is a markup language used to program webpages.
    3.We are learning HTML to better understand the foundations of coding.
  3. An HTML tag is command that is placed on the content.
  4. Opening tag, content, closing tag is the order of an element.
  5. An attribute contains extra information about an element that isn’t displayed to the user.
  6. Tags in order of; HTML, Head, Body, Closing HTML
1 Like
  1. Hyper Text Markup Language
  2. Used for coding and creating a graphical user interface (front-end).
  3. To know how to code the front-end to connect to the smart contract for blockchain engineering.
  4. instructs the content that will be visually displayed on the front end
  5. a pair of angular brackets open and close.
  6. info on an html element that is not visible on the front end
  7. HTML head, body
1 Like

1, Html is the markup language you use to structure the content of your page. The code is executed within your browser.
2. It creates the skeleton of the web page, in essence. The basic text, images, links of a page.
3. At the fundamental level, learning HTML will enable us to create a website and design websites. It is a highly useful skill to own. When it comes to small contracts, we can use HTML to create easy communications among all stakeholders.
4. Tags specify what type of element it is. The tags can make words bold, smaller, hyperlinks, etc.
5. A HTML element usually has 2 tags unless it is an “empty element”. This is an opening tag and a closing tag.
6. An attribute basically adds value and quality to a tag. For example, My girlfriend is small.
7.Begins with <!doctype html>
next is the root element.
next is the element which is a place to store all information that is not part of the content.
next is which allows the handling of text content from most languages
next is the element which is the name displayed in the browser of the webpage, also name stored when storing in bookmarks.
next is the element which contains all the web content you want to display.

1 Like

1 - HTML is a Hypertext Markup Language. Hypertext is a text that is used to reference other pieces of text, while Markup Language is a series of markings that tells web servers the style and structure of the document.
2 - HTML is a computer language that makes up most webpages and online app.
3 - because its important to understand how web works to understand the blockchain.
4 - A tag tells the web browser where an element begins and ends, whereas an attribute describes the characteristics of an element.
5 - The tag is wrapped with opening and closing angle brackets.
6 - The attribute gives further specifications to the text.
7 - Anatomy of a HTML document is the structurer of the content. The structure have to be composed by a line containing HTML version, a declarative header section and a body that contains the document’s content.

1 Like
  1. What is HTML?

HTML means Hypertext Markup Language. It is like a construction manual to tell a website what to do and how to look like, and you can implement Elements to change the look of the Website, add text, music, links etc.

  1. What is HTML used for?

HTML is the building sheet of a website, imagine the floor plan of an architect, which is realized right away after just reloading

  1. Why are we learning HTML?

You can Imagine that HTML is the foundation stone of all coding

  1. What is an HTML tag?

I think almost all elements have to have an opening tag and an closing tag an opening tag is used to tell where the element takes place. Example:

.

A closing tag has to have a backslash. Example:

. It signals where the element ends.
  1. What is the structure of an HTML tag?

A tag can also have an attribute. Example : <p class=’‘editor-note’’> - opening tag.

  1. What is an attribute?

Attributes contain extra information about the element which you don’t want to appear in the actutual content. ( I know it’s copy paste but I don’t know how to discribe it differently)

  1. What is the anatomy of an HTML document?

Contains in right order (I think):

* > <!DOCTYPE html>
* > <html>
* > <head>
* > <meta charset="utf-8">
* > <title>Page Title</title>
* >  </head>
* > <body>
* > (this is where you would put images which would look like this): 
* >     <img src="images/firefox-icon.png" alt="My test image">
* > </body>
* > </html>
Preformatted text

Note: please tell me if any of what I said is wrong. I am very new at this. Have a good day!
1 Like
  1. What is HTML?
    Hypertext Markup Language
  2. What is HTML used for?
    Used to structure a web page and its content
  3. Why are we learning HTML?
    To know more about Javascript
  4. What is an HTML tag?
    < html > tag represents the root of an HTML document
  5. What is the structure of an HTML tag?
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?
  1. 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.
  2. 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.
  3. The content: This is the content of the element, which in this case, is just text.
  4. The element: The opening tag, the closing tag, and the content together comprise the element.
1 Like
  1. HTML stands for hypertext markup language, It’s basically a text that covers another text to be visualized
  2. To structure the page of web site and many other features
  3. In order to be able to program web pages
  4. Are coding words used for the beginning and the end of the elements
  5. There’s an opening tag and a closing tag that defines that element that cointains the content inside as well
  6. Attribute is an additional part of the tags
  7. Doctipe: needed to make sure the documents behaves properly
    html: to wrap all the contect in its entire page
    head : for including extra contents, such as keywords on the page
    meta charset : allows to put any kind of textual content avoind many potential problems
    body : contains any kind of content you want to show to the users
1 Like

1: HTML stands for HyperText Markup Language.

2: It the standard language used to display visual and auditory media for websites.

3: The purpose of learning HTML in this course so that I can create simple web pages that will augment blockchain related technology.

4: An HTML tag consists of angled bracelets that enclose and element name.

5: The structure is as follows: <> or </>.

6: An attribute will add or modify information related to an element.

  1. The anatomy of HTML documents begin with the element, then add a meta language element, a body element (with detailed nuance), and finally wrap the entire sequence.
1 Like
  1. What is HTML?
    stands for Hyper Text Mark-up Language. - define structure of content.

  2. What is HTML used for?
    It is used to wrap or enclose parts of content to give it a specific appearance.

  3. Why are we learning HTML?
    HTML is a useful tool for structuring webpages & basic knowledge of how to use it will only help.

  4. What is an HTML tag?
    an HTML tag is syntax used to empower an element within your code & specify when effects should end.

  5. What is the structure of an HTML tag?
    <e,g,> </e.g.>

  6. What is an attribute?
    contains extra information about an element which you don’t want to appear in the content. e.g.

  7. What is the anatomy of an HTML document?
    How individual elements are combined in a webpage.
    Starts with specifying document type, root element & page structure afterwards.

1 Like
  1. HTML is the standard programming language for websites.

  2. HTML is used for the specification of documents primarily intended for the Internet.

  3. We are learning HTML because we want to interact through the website with the blockchain, smart contracts. We want to let everbody see what we are going to learn about programming on the internet!

  4. A HTML tag is a command and provides the direction or recipes for the visual content.

  5. The structure of HTML tag: <…> </…>

  6. An attribute contains extra information about the content that you don’t want to appear in the actual content.

  7. The anatomy of an HTML document is how this document is build with the types of elements in it. So it begins with the Doctype then HTML, Header, Meta charset, title, body element.

1 Like

<img src=’‘https://it.wikipedia.org/wiki/Bruce_Lee#/media/File:Bruce_Lee_1973.jpg’’>

Hi guys! I wrote this code to upload an image but it doesn’t shows up, don’t know what’s wrong.