HTML Reading Assignment

  1. HTML is a code that defines the structure and the looks of you webpage.
  2. HTML is used to design webpages.
  3. We connect to the outside world with webpages.
  4. A tag is a piece of code of the HTML which defines a particular piece of text (the element).
  5. HTML tag consists of an opening and closing tag, both consists of opening bracket, name and closing bracket. The closing tag has a slash before the name.
  6. An attribute contains extra information about the “element” in the tag .It does not show on the website itself.
  7. Its the basic structure of a HTML document.

Hypertext Markup Language, first technology used in web 1.0

Creating the construction of a website

It is needed for the front end, you can use javascript to interact with it.

It defines an object, like a paragraph or a headline etc.

opening tag and closing tag with slash, and in between the information, for example:

lol

Tags can have attributes which gives them more functions.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>  </title>
  </head>
  <body>
    
  </body>
</html>

What is HTML? HTML is a markup language

What is HTML used for? It is used to structure a web page

Why are we learning HTML? HTML is the basis for any website - Without HTML there is no front end

What is an HTML tag? A tag is a command in a web page that tells the browser to do something

What is the structure of an HTML tag? Opening TAG = < > followed by content, followed by closing TAG = </>

What is an attribute? Attributes provide additional information about the element that doesn’t appear in the actual content. Fo example, you can include an ALT attribute with an image for visual impaired people so a screenreader can describe the image

What is the anatomy of an HTML document? Head elements -> provides page title and general page formatting commands
Body elements -> put the main HTML text in this part.

  1. HTML is a markup language. It consists of elements to structure content in a particular way.

  2. Creating webpages / websites

  3. It’s important to learn about HTML and websites, as this can be useful for when you create applications or do programming on Blockchain.

  4. An HTML tag can give certain attributes to an image or text. IE: creating a hyperlink, making text italic or bold etc.

  5. <> </>

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

  7. Anatomy of an HTML document, that wraps up the basics of individual HTML elements.

  1. HTML stands for Hypertext markup language, a coding language used to give a website its structure and its content.
  2. HTML is used to develop web pages using series of elements to portray contents in a certain way. It can also allow contents to act in a certain manner.
  3. To learn how to build up a web page using HTML elements.
  4. HTML tags are a feature which is used to help describe elements, they come in the form of a tag name in angular brackets, such as opening and closing tags.
  5. HTML opening tag structure is <?>, closing tag is , where ? is denoted by a element tag name.
  6. An attribute provides an extra tool for the element which is not being displayed to the users.
  7. A HTML document includes a series of elements such as , , , , .
  1. HyperTextMarkupLanguage
  2. HTML is used as a descriptive language that specifies webpage structure.
  3. We learn HTML to ensure proper formatting of text and images so browsers may properly display them.
  4. HTML tags are at the center of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.
  5. A tag starts with an opening , has usually an attribute inside and finishes with a closing
  6. An attribute specifies some additional properties regarding the content included inside a tag.
  7. All HTML documents begin with !DOCTYPE html tag. Then the tag follows, it has and where all the info needed to the website that won’t appear as a content (title, descriptions, SEO, scripts), and finally the where all the content lies.
  • What is HTML?
    Hypertext Markup Language

  • What is HTML used for?
    It’s a way of taking content and showing it in a clear way.

  • Why are we learning HTML?
    It is what we will use to make the frontend website that we can tie into the backend (smart contract) program.

  • What is an HTML tag?
    It is what is used to tell the browser that it is an html document.

  • What is the structure of an HTML tag?
    It will start with a header, then body and possibly footer.

  • What is an attribute?
    Attributes provide additional information about html elements.

  • What is the anatomy of an HTML document?
    It starts with the header which contains the unseen information, mostly for SEO purposes.
    Then the body which contains the content that will be displayed on the website for users to see.

Continuing the discussion from HTML Reading Assignment:

  1. Hypertext Markup Language
  2. It is used to structure a web page and its content
  3. Everything on the web is in the protocol of HTML
  4. The tag is the central structure of the web page format
  5. Opening tag, content, closing tag
  6. provides an additional info about the element in the beginning of the tag
    name=“value”

What is HTML?

  • First…what it is NOT: It is NOT a programming language.
  • What is IS: It’s a “markup language” that defines the structure and style of a web page and its content.

Why are we learning HTML?

By learning HTML, aspiring blockchain developers can get a high level understanding of how to build the sites that can interact with the smart contracts they build.

What is HTML used for?

HTML is used to define the structure and style of a web page and its content.

What is the anatomy of an HTML document?

  • Consists of a series of “elements”, which you can use to enclose (aka “wrap”) different parts of the content to make it appear or act a certain way.
  • Elements are made up of an opening tag, content, and closing tag.

What is an HTML tag?

  • An HTML “tag” is the part of an element which contains the name of the element, along with attributes of the element.
  • Two types: opening tag and closing tag
    • The opening tag states where the element begins to take effect, and vice versa for closing tag

What is the structure of an HTML tag?

  • The tag name is contained within angle brackets <>
  • For closing tags, there is a forward slash before the element name

What is an attribute?

  • Attributes contain extra information about the element that you don’t want to appear in the actual content.
  • An attribute should always have the following:
    • 1.) A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
    • 2.) The attribute name followed by an equal sign.
    • 3.) The attribute value wrapped by opening and closing quotation marks.

1- its a markup language that defines the structure of your content
2- to build the structure of the content of a website
3- because the other languages will, most likely, interact with html
4- its what defines the begin and end of a element
5- opening tag, content, closing tag
6- attribute is an extra information about the element that you dont want to appear in the actual content
7- a combination of different tags, always starting with < html > and ending with < /html >

  1. What is HTML? Code- not programming language-that defines the structure of a web page and its content.
  2. What is HTML used for? Used to structure and lay out the content of a page. Build a static, boring, website!
  3. Why are we learning HTML? Basics of the internet, web pages, languages, web development, applications that can be used with blockchain and other languages.
  4. What is an HTML tag? Opens/closes an element name “xx”and it gives direction to the content of the element. How it is displayed or acts when the tag is triggered?
  5. What is the structure of an HTML tag? Opening , closing .
  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? Headings, pics, lists, links, documents.
  1. HTML is the code that is used to structure a web page and its content.
  2. HTML 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.
  3. We want to build a simple website to be our front end and interact with our blockchain.
  4. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, make paragraphs etc.
  5. Name of the element which is wrapped in opening and closing angle bracket. Closing tag also includes a forward slash before element name.
  6. Attributes contain extra information about the element but we don’t want it to appear in the content.
  7. The doctype,
    html element (wraps all of the content),
    head element (wraps <metacharset=“utf-8”> and title elements),
    body element (contains all the content that we want to show to web users when they visit our page).
  1. HTML is a markup language the defines structure of content.
  2. HTML is used to organize and structure a webpage content.
  3. We’re learning HTML to learn to create a webpage.
  4. An HTML tag states where an element begins and ends.
  5. The structure of a tag begins with < > and ends with </>. Example for beginning and end of paragraph with content in between

    Today is a good day.

  6. Attributes contain additional information regarding the content.
  7. The anatomy of an HTML document is:
  • Doctype - Makes sure document behaves correctly.
  • The element - wraps the content on the page.
  • The element - acts as the container for information not shown on the page.
  • meta charset=“utf-8” - sets the character set your document should use to UTF-8.
  • The - sets the title of the page.
  • The - contains all the content on the page.
  1. The language used for creating web pages.
  2. Create a website
  3. To be able to create a web front-end to access and interact with blockchain backend
  4. It defines content on a webpage
  5. An element wrapped in opening and closing angle brackets
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
  • What is HTML?
    • H yper t ext M arkup L anguage.
    • Markup Language (text)
    • Not a programming language!
  • What is HTML used for?
    • To structure a web page and its contents:
      • Paragraphs
      • Bulleted points
      • Data tables.
  • Why are we learning HTML?
    • To become familiar with the terms used in programming.
  • What is an HTML tag?
    • A code letter or phrase enclosed in angle brackets:
      • used to start or stop an action, such as formatting, and
      • used to enclose content.
  • What is the structure of an HTML tag?
    • The opening tag.
    • The content.
    • The closing tag.
    • These three items comprise an element.
  • What is an attribute?
    • Extra information about the element that does not appear in the displayed content.
    • It contains:
      • A space between it and the element name (or previous attribrute, if the element has one or more elements),
      • An attribute name, followed by an equal sign, and
      • The attribute value, wrapped by opening and closing quotation marks.
  • What is the anatomy of an HTML document?
    • !DOCTYPE html — the doctype.
    • html/html — the element.
      • wraps all the content on the entire page and
      • is sometimes known as the root element.
    • head/head — the element.
      • acts as a container for all the items you want to include on the HTML page that isn’t the content you are showing to your page’s viewers.
      • 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
    • title/title — the element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in.

body/body — the element.

  1. HTML (HyperText Markup Language)
  2. HTML is a code that serves as a language used to structure a website as we see it on the browser.
  3. HTML is the base for developing the website where people will interact with our product/service.
  4. The tag is what makes it possible for the browser to identify what we want to show.
  5. The Structure of an HTML tag is composed of an opening tag and a closing tag.
  6. An attribute is a way to give a specific characteristic to an element.
  7. The anatomy of a HTML document is the structure it has, composed of doctype;html;head;meta chartset;title;body
  1. HTML is the code that is used to structure web page and its content, it is not a programming language but a markup language.

2)it structures the content within a web page.

3)It is the basic building block in building a webpage which is an important basic skill in programming.

  1. A tag consists of a opening and closing angle brackets which show when an element starts and ends.

5)opening element=
closing element=

  1. An attribute contains extra information within the element that you dont want appearing in the content.

  2. The opening 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
    **The closing tag:**same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends.
    The content: This is the content of the element.
    The element: The opening tag, the closing tag and the content together comprise the element.

  1. What is HTML?

*Hypertext Markup Language

  1. What is HTML used for?
  • To structure a web page and its contents.
  1. Why are we learning HTML?
  • To be able to link the backend (smart contracts) to the front end (website); so a website can utilize the functionality of a blockchain.
  1. What is an HTML tag?
  • A series of elements that wrap content, which makes the content appear a certain way.
  1. What is the structure of an HTML tag?
  • texttextext
  1. What is an attribute?
  • Extra information about an element that you don’t want to appear in the content.
  1. What is the anatomy of an HTML document?
  • (makes a document behave correctly)
  • (wraps all the content on the page)
  • (content that you don’t want the viewer to see)
  • (universal character set)
  • (sets the title of the page)
  • (all of the content you want the viewer to see)
  1. A markup language to structure content

  2. A protocol to properly display information from a web page, and provide structure

  3. A introduction to coding and being able to interact with the www. Being able to develop front-end

  4. It makes the browser recognise and sort the content (how and in what way to show it)

  5. Open and close

  6. Specifies some additional properties to the content inside the tag

  7. < html >
    < head >
    < body >
    (without spaces)