HTML Reading Assignment

Thanks Magnus! Going to play with it today found some stuff on google too- Need to familiarise myself with it all!

1 Like

Hi,

  1. HTML stands for Hypertext Markup Language

  2. HTML is code used to structure and format a webpage

  3. We are learning HTML because its the basics of simple website, its something I can actually create an application a webpage a front end

  4. a HTML tag is code that states where an element starts and ends, such that the compiler knows what to do with the instruction

  5. here is the structure of a html tag,

    text

    here we have the opening paragraph tag

    the content followed by the

    closing tag.
  6. An attribute is a part of the element and is contained within the tag, it allows you to add additional information about the element that will not show up as actually content.

  7. The anatomy of a HTML document is the way that a html document flows we have the

  • document type
  • html element
  • the title
  • the head
  • the body

What is HTML? - HTML (Hypertext Mark-up Language)
What is HTML used for? - HTML is used to denote how content is displayed on a webpage
Why are we learning HTML? - So that we can create websites / user interfaces for applications that we create & to gain an appreciation of a basic coding format & uses
What is an HTML tag? - Tags denote the start & end of an element within HTML
What is the structure of a tag? - Tags start with an angle bracket, followed by the name of the element & then close with an angle bracket. The closing tag must have a forward slash after the first angle bracket & before the element name.
What is an attribute? – Attributes denote further information about an element that is not explicitly displayed on the webpage (such as styling) & can be used to target groups of elements (if they all share the same attribute)
What is the anatomy of an HTML document? - html tags denote the start & end of the html page, head tags sit within the html tags & denote the start & end of the header information, body tags denote the start & end of information that is displayed on the page & also sit within the html tags

  1. hyper text markup language (document format used for webpages)
  2. HTML is used to structure a webpage and its content
  3. Starting with the basics :slightly_smiling_face:
  4. Tags give structure to the text (describing paragraphs, headings etc…)
  5. Tags are wrapped in angle brackets and each one of them provide information about the structure of the document. and </closing tag> and in between you have your content. (all together forms your element)
  6. An attribute contain extra information about the element that you do not want to appear in the actual content example id attribute, title attribute, class attribute and style attribute
  7. The anatomy of an HTML document is the following : First you need to name your file as : index.html then you have
    <!doctype html>
My test page you can insert styles here your content in between

1. Hypertext Markup Language

2. It is used to structure a web page and its content.

3. HTML is needed to build the front end of our Smart Contracts and therefore is a essential component of dApps on the web.

4. A tag indicates the start and the end of an element.

5. <?>Content</?>

6. Attributes contain extra information about the element.

7. <!DOCTYPE html>, <html>, <head>, <meta>, <title>, <body>

1 Like

i am correcting myself after I watched Ivans HTML basics video: apparently you do not have to name it as “index.html” it is just the extension that it is important.
Another thing that may help you guys who are beginners like me: you can install packages in Atom that they are useful:
the first one is (atom-html-preview) so you can see directly how your website looks like (you find it under “settings” then “install” and you just search for it and install it)
the second one is : “autoclose-html” that enable automatically to close the tag after you open it. It make it easier :slightly_smiling_face:

1 Like

1. What is HTML?

HTML (Hypertext Markup Language) is a markup language (not a programming language) used to structure a web page and its content.

2. What is HTML used for?

HTML is used for structuring a web page and its content.

3. Why are we learning HTML?

We are learning HTML because we need to know how to build applications that interact with the blockchain.

4. What is an HTML tag?

An HTML tag is used for creating an element.

5. What is the structure of an HTML tag?

The structure of an HTML tag is angle brackets. Example:

Start tag: < p > for paragraph.

End tag: < / p >.

The end tag isn’t required or allowed in empty elements.

6. What is an attribute?

An attribute contains additional information about the element that you don’t want shown in the content.

7. What is the anatomy of an HTML document?

The anatomy of an HTML document includes the following:

  1. (doctype).
  2. ( element). This wraps all the content on the whole page.
  3. ( element). This element acts as a vessel for all the information you want to include on the HTML page that you don't want shown on the web page.
  4. ( element). This contains all the content that you want shown on the web page.
  5. . This element sets the character set the document should use to UTF-8.
  6. ( element). This sets the title of the page. This title appears in the browser tab, and also describes the page when you bookmark/favourite it.
  • Hyper Text Markup Language often referred to as “HTML”, is a simple programming language.
  • HTML is used when creating the “backbone” of web pages and the contents inside of the page.
  • HTML is a fundamental programming language, and a gateway into the deeper programming world.
  • An HTML tag is used for the placement of structural elements.
  • An HTML tag begins with “<X>” and end with “</X>”. X, being the element that you want to create.
  • An attribute is a specification inside of a tag, it allows the creator to further specify the values of each tag and reference /group these tags later on.
  • The anatomy of an HTML document is the embodiment of the language. An HTML document starts with “<!DOCTYPE html>” (which does not need to be closed) to specify the file association. Then the document can being with the tag “<html>” and finish with the closing tag “</html>” which gives the file reader the specificities of the specified language and version of the language.
  1. HTML is a language that runs on a browser and allows us to format web pages in an appealing way.
  2. HTML is used to format and present information on a web page.
  3. We are learning HTML
    a) as a basic high level language which is easy to use
    b) it is easy to relate to and to setup
    c) it is a great way to communicate our ideas quickly
    d) it is a frontend application which we may need for blockchain applications
  4. An HTML tag is a way to define to HTML what type of content or information you wish to display and how it should be displayed.
  5. The structure of a tag is generally in the format <tag> content </tag>
    However there are some exceptions such as the <img> tag.
  6. An attributes provides additional information for any specific tag to allow more choices in formatting or managing it. For example the colour or stying.
  7. The basic anatomy of an HTML document is as follows:
    <!DOCTYPE html>
    <html>
    <head>
    <title>Title of document</title>
    </head>

    <body>
    Content of the page
    </body>
    </html>
  1. HTML - Hyper Text Markup Language
  2. HTML is used to structure a web page and its content
  3. We need HTML to build a web page, which will be the user interface for further Ethereum, NEM, EOS programming.
  4. HTML tags are used to mark and format the content of the elements which an web page consists of.
  5. HTML tags consists of opening and closing tag. and within these is the content.
  6. In the opening tag you can put attributes, which can describe the HTML element with additional information.
  7. What is the anatomy of an HTML document?
  • doctype as an artefact from the past,
  • html element, wraps up the content of the entire page
  • head element, contains everything but not the content e.g. keywords, css style,…
  • body element, contains the content of the web page e.g. images, text, videos…
  • meta charset element, sets the character set used for the html document
  • title element, is defining the title which can be shown in the browser tab or in favorite bookmarks of the browser
  1. HyperText Markup Language
  2. HTML is used to structure and format webpages.
  3. HTML allows us to code the front end of an application and be able to display and format information on a webpage.
  4. HTML tags are formed with angle brackets and are used to enclose content and format it in various ways. Content is usually wrapped in an opening tag and a closing tag.
  5. <Opening tag>Content</Closing tag>
  6. An attribute contains extra information about an element and isn’t included in the content. Attributes consist of an attribute name (e.g. class) followed by an equals sign, and the attribute value in quotation marks.
  7. Anatomy of an HTML as follows:
  • Doctype declaration.
  • HTML element which wraps the entire page.
  • Head element which contains stylesheets and declarations.
  • Character set declarations.
  • Title element which displays in browser tab.
  • Body element which nests all page content.
  1. HTML is a markup language.
  2. Defines the structure of a web page and its content.
  3. In order to make a frontend to smart contracts.
  4. A HTML tag is the opening or closing part of an element.
  5. The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets. This is the same as the opening tag, except that it includes a forward slash before the element name.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Title of the page</title>
  </head>
  <body>
    Content of the page
  </body>
</html>

Sunday, June 3, 2018

  1. What is HTML?
    HTML is a markup language as opposed to a programming language that is used to define the structure of a webpage.

  2. What is HTML used for?
    HTML is used to make webpage content appear and act in certain ways.

  3. Why are we learning HTML?
    We are being introduced to HTML because users of DAPS will need to access them on the internet.

  4. What is an HTML tag?
    An HTML tag is a component of an HTML Element and HTML is make up of a series of Elements.

  5. What is the structure of an HTML tag?
    HTML tags appear before and after the content to contain the content and comprise the element itself.

  6. What is an attribute?
    An Attribute is also a component of an HTML tag. It’s function is to contain additional information that will not appear in the webpage content.

  7. What is the anatomy of an HTML document?
    A simple HTML document is made up of the Head, the title and the body.

  1. HTML is code
  2. Used to make up a code that is used to structure a web page and it’s content
  3. It’s most popular and easiest way to make a user-friendly interface for customers
  4. A tag is a component of an element
  5. An HTML tag consists of opening and closing angle brackets, a name of an element, the closing tag also includes forward slash
  6. An attribute is a component of tag, which contains extra information about the element that you don’t want to appear in the actual content.
  7. HTML document has it’s own structure and consist of this elements:
    1.HTML tags which wrapped all code
    2.Head - is 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
    2.Body - is a container for all the stuff you want to include on the HTML page that is the content you are showing to your page’s viewers

1.hyper text markup language
2.used to specify the structure and content of a html webpage
3. Before we start with other languages we need a proper understanding of how to create html websites which are able to interact with blockchain applications.
4. an html-tag is a task that can be interpret by a browser
5. the structure of an html-tag consists of an opening and closing angle bracket, which wraps the content. all parts together comprise the element
6 an attribute is extra information that can be added to the opening tag. the attribute contains a name and a value.
7 an html document contains a html element that defines all content on the page, then we have a header element that contains the info we need for the html document to work properly.This info is not dispayed in the document.
Next the body element which present all content to the user and a title element that displays the name of the document.

  1. Hypertext Markap Language
  2. It is used to edit and create web page content. So we can communicate with others on our web page.
  3. To know how to communicate with others, on the web and present our work.
  4. Tag is a way to communicate with browser that we are doing html and that we give some command to the content we want to show on a web page. Tag is warp up our content in a way that tag meant to do.
  5. Every tag is written in tis form " "
  6. Attribute is a variable in the tag. It could be image, link or something other.
    7.<doctype.html> Basic “library” so we can be sure everything is ok with our html.
    Basically we have to elements:
  • HEAD tag for browser and search engine information
  • BODY tag for showing info to an user on our web page.
  1. Hyper text markup language
  2. It is a markup language that structures content
  3. It is an essential building block of webdev, so we can link blockchain dev to showcase somewhere
  4. Tag is the instructions for the content, e.g.

    , b, a href, etc

  5. Elements on the outside, content on the inside
  6. Attribute is a way of saving a specific element style to be used in later cases
  7. doc type, html, head, body, meta, title
  1. Strings of code or a “language”
  2. To structure the content of a website, so browser could display content the way the author intended.
  3. We need the face of our project on internet, and one way to do that is by learning html.
  4. A part of an element in html which is needed to identify what kind of content to display on the website.
  5. Opening tag uses opening and closing angle bracket, while closing tag, although using the same brackets, precedes by a forward slash. Closing tag indicates the end of an element.
  6. An attribute is a part of an element which is not a tag and not a content but gives extra information about the content it preceded.
  7. The structure which define a full page of a website, which contains all the elements needed such as head, body, title.

1What is HTML?
Hypertext Markup Language
2What is HTML used for?
It the code to help structure websites with a list of bullet points or images
3Why are we learning HTML?
Building a website this will help how it will look and act for users who would visit your website.
4What is an HTML tag?
As someone who knows nothing about programming other answers if I’ve got my understanding incorrect.
There are like commands that highlight text with opening and closing tags e.g

then something.
To close it off you need to do this at the right place or you get something different using the same tag but with a forward slash

I believe there are loads of them but the command are the same Open <?> to close remembering the forward slash
5What is the structure of an HTML tag?
Think I covered this question 4
6What is an attribute?
You have an opening and closing tag and all together this is an element. inside this element you can have attribute for targeting later with style things and other stuff. I’ll guess I understand this later.
7What is the anatomy of an HTML document?
This wraps up the basics of the HTML elements starting with Doctype html you have your head elements and body elements
this bit I didn’t undertsand — this element sets the character set your document should use to UTF-8, which includes most characters from the vast majority of human 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. think its importance.

Really enjoying this

  1. Hyper Text Markup Language - It is instruction text which defines the structure of a web page’s content.

  2. To make the content of a web page to appear or act in certain ways.

  3. It is the connection for the frontend (users) to the backend (smart contracts).

  4. Instruction text used for opening and closing elements.

  5. <? > content then close /? >
  6. Extra info about an element, placed within an element, that will not appear in the actual content.

  7. DOCTYPE, html, head, body, title