HTML Reading Assignment

  1. Hyper Text Markup Language
  2. It defines the structure of a website’s content
  3. HTML allows us to create a basic website. Anyone interested in allowing someone to connect to the blockchain, needs to at least have a website where they can connect.
  4. A tag is what you place around the content you wish to apply an element to.
  5. A tag structure is open and closed brackets around an element that wraps content. The closing tag, applied after the content has a forward slash.
  6. An attribute contains extra information about the element that you dont want to appear in the actual content.
  7. doctype - html - head - title - body
1 Like

1- 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.
2- HTML is a code used to structure a webpage and its content.
3- It is a good base to start with Java Script later on.
4- A tag is used to wrap the content and are used to specify attributes and other features related to the content.
5- It has always an opening tag and a closing tag. The content must be correctly wrapped by both type of tags.
6- An attribute specifies something about the content.
7- The anatomy shows the structure of the html code that builds a webpage with all the tags, elements attributes and content.

1 Like
  1. What is HTML?
    Code for structuring content on a webpage.
  2. What is HTML used for?
    You can use it f.e. to build your own website full of content.
  3. Why are we learning HTML?
    Because it’s essential to know the fundamentals of Web2 in order to move on to Web3.
  4. What is an HTML tag?
    An HTML tag can be an opening or closing tag and it’s used to wrap up the content inside the element.
  5. What is the structure of an HTML tag?
    You always have the opening and closing tag to wrap the content.
  6. What is an attribute?
    Atttributes generally contain futher information about the element, that shouldn’t appear in the actual content.
  7. What is the anatomy of an HTML document?
    The anatomy of an HTML document consists of the different elements combined in order to form a proper page.
1 Like
  1. What is HTML? Hyper Text Markup Language ( html is a computer language)

  2. What is HTML used for? Creating simple websites

  3. Why are we learning HTML? To be able to connect on the other end of smart contracts

  4. What is an HTML tag? Tag describes the content of the webpage

  5. **What is the structure of an HTML tag?**Opening tag —> Content —> Closing tag

  6. What is an attribute? Attribute holds information about the element that you dont want seen in the content

  7. What is the anatomy of an HTML document?

    Doctype
    HTML open tag
    head open tag
    head closing tag
    body open tag
    body close tag
    HTML Closing Tag

1 Like

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

HTML is used to structure a web page and its content.

Because it’s a basic knowledge used for web pages.

In HTML, a tag is used for creating an element.

The name of an HTML element is the name used in angle brackets such as <p> for paragraph. The end tag’s name is preceded by a slash character, </p> , and that in empty elements, the end tag is neither required nor allowed.

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

  • <!DOCTYPE html> - doctype
  • <html></html> - the <html> element
  • <head></head> - the <head> element
  • <meta charset="utf-8"> - element that sets the character set of the document
  • <title></title> - the <title> element
  • <body></body> - the <body> element
1 Like
  1. What is HTML?
    HTML stands for HyperText Markup Language.
  2. What is HTML used for?
    It is used to define the structure of content on web-page
  3. Why are we learning HTML?
    To be able to create websites.
  4. What is an HTML tag?
    It is used to create an element.
  5. What is the structure of an HTML tag?

text

6. **What is an attribute?**

Attribute is a part of element, that contains information that you do not want to appear in actual content.
7. What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <title></title>
 </head>
 <body>
  </body>
</html>
1 Like
  1. HTML stands for HyperText Markup Language. It defines the structures of the web page content.

  2. HTML used for structuring the web page and its content.

  3. This code is being used universally and important language to first understand before advancing further to understand blockchain codes.

  4. an HTML tag is part of HTML element. It defines either the start of an element (opening tag) or the end of an element (closing tag).

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

  6. An attribute is the extra information about the element that you do not want to appear as the web page content.

  7. An HTML document includes:
    <!DOCTYPE html> — doctype, which is the required preamble.

<html></html> — the element, which wraps all the content on the entire page.

<head></head> — the element, which 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">, which sets the character set your document should use

<title></title> — the element, which sets the title of your page,

<body></body> — the element, which contains all the content that you want to show

1 Like
  1. HyperText Markup Language -

  2. code used to structure a webpage and its contents

3.HTML is a basic coding language used in javascript and smart contracts.

  1. a tag is used for creating an element (element is part of a web page)

  2. element containing opening/closing tag and its content

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

  4. doctype , html element , head element , UTF-8 , title element, body element

1 Like
  1. HTML (Hypertext Markup Language) is a ‘code’, used to define the structure of the content of a web page.
  2. It is used to define the content structure of a web page, inserting text, creating paragraphs, presenting lists, images, links.
  3. It is important to know HTLM (Hypertext Mark-up Language) and JavaScritp because they are languages used in the creation of internet sites. Even if your goal is to learn how to program smart contracts you will need to know how to make a user interface to provide access to most of the people. Learning HTML can also be de first step for learning other programing languages.
  4. Tags are markers that will define how content should be presented on a web page. E.g. marked as a title, as a paragraph, as a video, as an image, etc.
  5. A tag will indicate the opening and closing of an element. The opening tag basically consists of an opening angle bracket, followed by the element name and a closing angle bracket. The closing tag is composed of an opening angle bracket, followed by a slash, the element name, and the closing angle bracket. Between the opening and closing tags the element’s content is inserted.
  6. Attribute consists of additional and hidden information that can be included into each element. The attribute comes inside the ‘opening tag’.
  7. An ‘HTML document’ is made up of a set of elements that, combined together, provide the content of a web page. These elements must observe a certain organization, such as the DOCTYPE element (mandatory initial part of the document), the HTML element (root element in which all other elements are inserted), the HEAD (in which we put implicit site settings and data) and the BODY (in which we place all the content to be displayed on the site).
1 Like
  1. It stands for Hypertext Markup Language.HTML is a markup language that defines the structure of the content on a webpage.

  2. HTML is the code that is used to structure a web page and its content. It is the protocol that all web pages use to properly display information on the computer screen.

  3. In order to develop front end applications one has to learn HTML.

  4. HTML Tag tells the browser that this is an HTML document. An HTML tag has angled brackets and encloses an element name command.

  5. The structure of an HTML tag starts with < > and close with </>.

  6. An attribute allows you to specify extra information about the element, this information does not appear in the actual content.

  7. It wraps up the basics of individual HTML elements. In this individual elements are combined to form an entire HTML page. It starts by declaring the document with HTML followed by the head to include the title of the page. the information on the page is included in the body tag.

1 Like
  1. What is HTML?
    HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
  2. What is HTML used for?
    It is used to program websites with a fixed content.
  3. Why are we learning HTML?
    For programming frontend apps
  4. What is an HTML tag?
    HTML tag is a part of an element:

    .

  5. What is the structure of an HTML tag?
    The opening tag, the closing tag, and the content together comprise the element: <p>content</p>.
  6. What is an attribute?
    Attributes contain extra information about the element.
  7. What is the anatomy of an HTML document?
    Wraps up the individual HTML elements to form an entire HTML page: <!DOCTYPE html>, <html></html>, <head></head>, <meta charset="utf-8">, <title></title>, <body></body>
1 Like

A markup language for webapplications.
HTML is made for humans - I mean, no one wants to see raw market data transmitted by an API in json :smiley:
HTML provides the structure of the web document and in the end most of the data we get will be displayed in a “document-like” manner

With HTML we are able to code rich websites in combination with css and js.

Its easy to learn and we need it for web development.

Tags are like containers for diffrent elements on a webpage. In an html tag one can describe attributes for the tag itself.

There are many diffrent tags . They look like that

You can't hack NASA with HTML.

so all tags need to have a open < *actual tagname* > and closing tag to fullfill the first rule - a document must be valid - that means every tag in the document has a closing tag. Some of the tags are onelines and don't need the second part of the tag structure. But most of them do.

An attribute describes the behavoir of an HTML tag. You can give meta information to the tags in form of attributes which read and listed in the DOM (Document Object Model).

for example here a scripttag:

name & src are attributes of the tag.
This tells us the name of the scriptfile and specifies the URL of an external script file

<!DOCTYPE html>
<html>
 <head>
   <meta charset="UTF-8">
   <script name="essential.js" src="./myApp/scripts" ></script>
 </head>
 <body>
   <h1>Hello JS</h1>
 </body>
</html>
1 Like
  1. HTML hypertext markup language

  2. HTML, is used for creating web pages, HTML formats the content and images.

  3. It will give us the fundamental knowledge required to build and understand how to create a web page.

  4. Its a piece of markup language used to indicate the beginning and the end of an HTML element in a HTML document.

  5. Enclosing tags can make a word or image hyperlink to somewhere else, they can change font size, italicize words and generally effect the appearance and layout or the structure of a web page.

  6. Attributes are additional information about the element which you do not want to appear in the actual content.

7.The anatomy of an HTML document includes :grin:
doctype> - which sets the rules for the HTML page to follow
html> - wraps the content of the page
head> - contains the contents of the page ( text, images, videos, etc…)
body> - “utf-8”> - character set of the document, handeling textual content
title> - sets the title of the page, which appears in the browser tab

1 Like
  1. What is HTML?
    Hypertext markup language

  2. What is HTML used for?
    every webpage you see on the internet uses the HTML code
    HTML ensures the proper formatting of text and images so browser may display them as
    they are intended to look.
    c) HTML also provides a basic structure of the page.

  3. Why are we learning HTML?
    it is a foundation for web development

  4. What is an HTML tag?
    something to define what type of content we have on the website.

  5. What is the structure of an HTML tag?

  6. A tag starts with an opening , has usually an attribute inside and finishes with a closing

  7. What is an attribute?
    Attribute provides extra information for the element.

  8. What is the anatomy of an HTML document?

  9. An HTML page always starts with the tag , it has and where all the info needed to the website that won’t appear as a content (title, descriptions, seo, scripts and so on), and finally the where all the content lies. All these tags need to be closed

1 Like

1 HTML is a markup language that defines the structure of your content
2. To structure a web page.
3. To form a strong foundation of internet design layers.
4. HTML tags vary and are used to distinguish different aspects to a web page. They define the interactions.
5. They vary but the base structure is

.
6. Attributes contain unlisted additional information.
7.

<!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 stands for H yper t ext M arkup L anguage.
  2. HTML is the code that is used to structure a web page and its content.
  3. To be able to make a simple website that can interact with blockchain/Smart contracts.
  4. In HTML, a tag is used for creating an element. An element is a part of a webpage. In XML and HTML, an element may contain a data item or a chunk of text or an image, or perhaps nothing.A typical element includes an opening tag with some attributes, enclosed text content, and a closing tag.
  5. The opening tag and the closing tag.
  • The opening tag 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.

  • the closing tag is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.

  1. An attribute extends an element, changing its behavior or providing metadata.
    An attribute always has the form name="value" (the attribute’s identifier followed by its associated value). You may see attributes without the equals sign or a value. That is a shorthand for providing the empty string in HTML, or the attribute’s name in XML.

  2. An HTML page contains followings,

  • <!DOCTYPE html> — doctype. It is a required preamble.
  • <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 is a markup language that defines the structure of your content

  1. What is HTML used for?

It’s used to make different parts of content appear or act in a certain way.

  1. Why are we learning HTML?

We need it to be able to put content onto the web.

  1. What is an HTML tag?

An HTML tag defines what should be done to the content

  1. What is the structure of an HTML tag?

It has an opening and closing tag.

  1. What is an attribute?

An attribute contains extra information about the element which you do not want to include in the content.

  1. What is the anatomy of an HTML document?

The anatomy of an HTML document is the basic structure that it needs to include in order to display the content in the web browser.

1 Like

HTML = HyperText Markup Language

HTML is used to create simple (web 1.0) websites. It is the language used to structure web pages and the content.

We are learning HTML because it provides a basis for learning all other coding languages.

HTML tags are responsible for beginning and closing different elements within the code. There are “opening” and “closing” tags.

An opening tag is structured with angle brackets, and contains the function of the element. It comes before the content. The closing tag looks almost the same, but includes a forward slash.

An attribute essentially contains information that you do not want to appear in the content. Elements may have multiple attributes. They are denoted by their name(followed by an equal sign) in quotation marks.

Anatomy of an HTML document includes:
Doctype. (required preamble)
HTML element (AKA root element, wraps the entire page)
Head element (not shown, but important for searchability. keywords, etc)
UTF-8 character set element (to standardize text inputs)
Title element (sets the title of the page - relevant to bookmarks)
Body element (Meat & potatoes. This is where the ‘body’ of content goes.)

1 Like
  1. Hypertext markup Language
  2. To show, tell, distribute and share ideas and information.
  3. Getting back to the basics. Understand front end before moving into backend
    4.determines the type of content being displayed.
    5.<?> <?/>
    6.Attributes modify elements.
    7.!DOCTYPE html tag, then follow with the html tag, and a head and body, minimally
1 Like
  1. html is hypertext markup language
  2. coding language that defines structure of your content
  3. to get an understanding of coding to help with blockchain development
  4. its the code that tells you what kind of content is in part of an element for example p /p is a paragraph tag
  5. html /html
  6. is extra info about the element like if its bold or italicized
!DOCTYPE html
html
   head
     meta charset="utf-8"
    title>page title</title
   /head
   body
    img src="img/your img" alt="image description"
    /body
/html
1 Like