HTML Reading Assignment

  1. What is HTML?
    Hyper Text Markup Language

  2. What is HTML used for?
    To build the structure of a web page

  3. Why are we learning HTML?
    To have a foundation in web development.

  4. What is an HTML tag?
    It defines what to do with the given information

  5. What is the structure of an HTML tag?
    the name of the element wrapped in opening and 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?
    < !DOCTYPE html>
    < html>
    < head>
    < meta charset=“utf-8”>
    < title>My test page
    < /head>
    < body>
    < img src=“images/firefox-icon.png” alt=“My test image” >
    < /body >
    < /html>

1 Like
  1. What is HTML?
    HTML is Hyper Text Markup Language. It is not a programming language but a Markup Language that
    defines the structure of your content. It can italicize, make font bigger or smaller
  2. What is HTML used for?
    It is the code that is used to structure a website and its contents.
  3. Why are we learning HTML?
    We are learning it because it will allow us to have a website that integrates with the blockchain.
  4. What is an HTML tag?
    HTML tag is the beginning and the end of the element and content
  5. *What is the structure of an HTML tag?
    The structure is angular brackets. Where the paragraph begins
  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?
    individual elements are combined to form an entire HTML page
1 Like
  1. What is HTML?

HTML is an acronym for H yper T ext M arkup L anguage is used as a structure to hold content of the actual webpage and its content as written text, images, tables etc.

  1. What is HTML used for?

HTML is like a frame structure for written content, games, images, tables to hold together while presented in a certain way on the web.

  1. Why are we learning HTML?

As I mentioned above, we will use HTML to present our code learning throughout this course. I take it that HTML is as our notebook which does hold the content of our learning.

  1. What is an HTML tag?

An HTML tag is a part of the elements which enclosing it with an opening tag and closing tag. These tags can make text or content of our elements to look a certain way we want.

  1. What is the structure of an HTML tag?

The structure of an HTML tag is an opening tag ( text or letter enclosed in angle brackets) and closing tag (same text or letter enclosed in angle brackets but with a forward slash before the tag name).

  1. What is an attribute?

An attribute is an extra piece of information or commands for content to appear a certain way, but stay hidden for a user.

  1. What is the anatomy of an HTML document?

The anatomy of an HTML document are individual HTML elements combined together to create an HTML page.

1 Like
  1. HTML is short hand Hyper Text Mark-up Language.
  2. HTML is a mark up language used to communicate text and images in one or more web pages.
  3. From what I understand, in the long run, we’re learning the basics of website development in order to create our own web pages and interact it with smart contracts.
  4. HTML tags are characters wrapped in opening and closed brackets meant to process/execute a set of functions, according to their order or lack thereof to give you a determined result.
    5.The structure of a HTML consists of functions that are wrapped in brackets to denote the start point and end of content, whether it be with images or text.
  5. An ‘Attribute’ is a name given to an element that contains additional information that a developer would want to not have shown in the overall look of the content.
  6. The anatomy of an HTML document: ```
    !DOCTYPE html
    HTML /HTML
    HEAD
    META CHARSET=“UTF-8”
    TITLE
    BODY
1 Like

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

HTML seems like a structure or protocol on how to build a static website. Following this this programing language is how information and data is presented on the web.

We are Learning HTML because it allows us to build and learn the fundamental structures to writing code.

A tag is a name of an element within an opening and closing angel brackets. An opening tag states where the element starts, and the closing tag states when an element has ended.

A tag structure for an opening tag is

and the structure for a closing tag is

.

An attribute is just extra info you don’t want to appear in the element.

1st we have DocType which makes sure the document behaves correctly. 2nd is which wraps the content considered the root element. 3rd is the where you put all the content you don’t want the viewer to see. 4th is Meta element that sets your character set to UTF -8. 5th is the element which sets the title of your web page. And last is the element which holds all the content you want the viewer to access.

1 Like
  1. HTML is hyper text markup language.
    2.It is used to describe a structure of your website.
    3.We are learning it to understand how website can communicate with smart contracts(block chain it self?)
    4.HTML tag marks start/end of the element(or attribute?)
    5.For the start

    ; for the end

    . Where p - can be other name(type?) of the tag.
    6.Attribute contains extra information about the element is is next to.
    7.1 !DOCTYPE html,
    7.2.Various elements (likea ; , etc.)
1 Like
  1. Hyper text markup language

  2. HTML is the language that is used in every website, and provides the basic structure of the page and ensures proper formatting and construction

  3. We are learning HTML because in order to build apps on the blockchain, which will exist on the internet, we first need to learn the basics of how pages on the web work and how to build them.

  4. HTML tags are used to define sections of the webpage, which the browser can translate into the actual content.

  5. < tag attributes="">content that uses this tag< / tag>

  6. An attribute defines additional parameters for an element, such as color or size.

  7. Anatomy of HTML document:

Starts with < html>
Header
Body, which has the majority of content
Ends with < / html>

1 Like
  1. **What is HTML? HTML is a markup language (Hypertext Markup Language)

  2. **What is HTML used for?**HTML is used to develop static websites.

  3. **Why are we learning HTML?**HTML is the basic building block of websites, the code that builds them. Websites are the front-end to interface with Smart Contracts and other crypto constructs.

  4. **What is an HTML tag?**An html tag is an instruction wrapped in carets with a closing forward slash in front of the instruction.

  5. What is the structure of an HTML tag?

Blockquote open caret - command - close caret THE ITEM PLUS VARIABLES open caret - forward slash - command - close caret . Ignoring the open caret on the front and end, so it shows up correctly, a paragraph: p> (optional attributes) my paragraph txt /p>

  1. What is an attribute? An attribute is a variable within the html operation.
  2. What is the anatomy of an HTML document? (open caret at the start of each; assume an end tag to close most types.)
    doctype> sets rules for document to use (not used like it was intended)
    html>
    head> page description, keywords, character set, etc.
    meta charset>
    title>
    body>
2 Likes
  1. HTML (Hypertext markup language)

  2. Defines the structure of website content

  3. To create a website. Webpages are constructed in HTML code

  4. Tags define the content a webpage shows and how it shows it. It can also create links to other pages, websites etc.

  5. Tags are angular brackets that contain the tag name (ie ,

    for paragraph) and ends in another angular bracket with a / (ie:

    ). They can be used to encompass/create an element (ie: a sentence or body of text/ content)

  6. Attributes are extra information inserted into the content that won’t be seen in the content but will change the nature of the content.

  7. Head element, title element, body element.

1 Like
  1. HTML is the language used to structure a web page and it’s contents.

  2. Hypertext Markup Language

  3. We are learning HTML in order to understand how and build web pages that we can use to interact with our backed smart contracts.

  4. A tag marks the contents within an element and let’s the browser know what type it is. For instance content within the p tag <p>"content"</p> tells a browser that this will be a paragraph.

  5. We first have an opening tag <> containing the element name followed by the content which can be a string or set of numbers. The tag is closed with </>, the / is put before element name.

  6. Attributes contain extra information about the element that we don’t want to show up on the web page itself. Attributes are inserted within the opening tag of an element.

  7. The first part of the anatomy is the doctype <!DOCTYPE html> which essentially tells our pages how to behave. This followed by the <html></html> this wraps all of our elements. The <head></head> element is what we use to include things we don’t want included on the web page itself such as CSS instructions. The <title></title> element shows the name of our web page on the browser tab. Finally we have the <body></body> which contains all of the information we want to be shown on the web page.

2 Likes
  1. HyperText Markup Language. It is the text that forms the backbone of a website

  2. To build a website

  3. We need to learn the basics of building a website. We will use it to communicate with the blockchain.

  4. An indication between brackets, that makes information appear in the way that we want.

  5. It has an opening tag <> and a closing tag </> around the information. Certain elements only have the opening tag (empty elements).

  6. An extra indicator within the opening tag on what the element should look or behave like, on top of the element tag itself.

  7. normally with no space between brackets, the following:

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

1 Like
  1. Hypertext Markup Language
  2. Used for constructing web pages
  3. To learn some basics of coding
  4. A tag is a function used to contain elements, gives the browser instructions
  5. Opening tag has opening and closing angle brackets to contain an element, the closing tag has all these including a forward slash preceding the element to signify where the element ends
  6. An attribute givees the element defining characteristics
  7. The anatomy of an html document begins with the doctype, html element, subsequent elements including their attributes, the body of the document and related images and content.
1 Like
  1. HTML stends for HyperText Markup Language. It is a markup language to structure a webpage.
  2. HTML ensures the proper formatting of text and images so browser may display them as they are intended to look.
  3. We are learning HTML since it is the backbone of any webpage. Learning about it would give us a great advantage when moving to JavaScript and Solidity.
  4. An HTML tag is used to create an element.
    5 The tag wraps the element inside angle brackets. We can either have an OPENING TAG or a CLOSING TAG. The second one MUST include a FORWARD SLASH before the element name.
    6 In HTML an attribute contains information you do not want to include in the content.
    7 Anatomy on an HTML document: (In the example the image was inside
<body> </body>
<!DOCTYPE html>
<html>
<head>
<meta chorset="utf-8">
<title>
</head>
<body>
</body>

@gabba EDIT: Use preformatted text balise for code :slight_smile:

1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language

  2. What is HTML used for?

It’s used to give structure to the content of a web page. It can make a font bigger or smaller, add an image, set data tables, bulletpoints, etc.

  1. Why are we learning HTML?
    This and Javascript are good foundations to learn programming on the blockchain.

  2. What is an HTML tag?
    A Tag indicates the beginning and end of an element, like a paragraph.

  3. What is the structure of an HTML tag?
    Opening tag

    and closing tag, the same but with a forward slash that indicates where the element ends.

  4. What is an attribute?
    They contain extra information about the element that we don’t want to show in the text, table, image, etc.

  5. What is the anatomy of an HTML document?

is a required preamble wraps the entire content of the page contains all the important things that are on the page but not shown to the public contains the text, images, and everything you want to show to your audience
1 Like
  1. HTML (Hypertext Markup Language) is the code that is used for structure a web page and its
    content.
  2. To build a web page in the internet.
  3. We need a interface to connect our smart contract with world over the internet.
  4. Tags are part of an HTML element in the source code.
  5. Opening tag <p> , closing tag </p>
  6. Attributes contain extra information about elements that you dont want to appear in the actual
    content.
<!DOCTYPE html>
    <html>
         <meta>
         <title>
    </head>
    <body>
          <img>

@gabba EDIT: Use preformatted text balise for code

Don’t forget to close your tags, and open the one you closed :wink:

Thanks gabba. It was the beginning of the HTML course. I just try to answer the first questions. :slight_smile:

1 Like
  1. HTML (Hypertext Markup Language) is a code that’s used to structure web page and its content

  2. HTML is used to build static websites

  3. We are learning HTML to understand how to build a website from scratch so that we can learn how to build a frontend

  4. HTML tag is a piece of code that defines every structure on HTML page including placement of text and images.

  5. HTML tag structure: it starts with '< ’ and ends with ‘>’

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

  7. <!DOCTYPE html> this is from back in the days when it acted like links to set rules to HTML page to follow. Now they don’t do much, however they are needed to make sure your document behaves correctly

- it's known as Root Element and it wraps all the content of the page - this element acts like container for all the stuff you want to include that is not a content. ``- it sets the character set from all the languages that might be used in the text. It's better to set this element to avoid problems in the future. - sets the title of the page - contains all the content you want to show including text, images, video, games etc.
1 Like
  1. Hypertext Markup Language
  2. It is a language used to structure content on a webpage.
  3. We are learing HTML to become familiar with front end devolopment of websites
  4. A HTML tag is the name of the element.
  5. The structure of a HTML tag encloses the name of the element inside angle brackets and must be closed with / added to the closing tag.
  6. An attribute is extra info relating to the element that is unseen on webpage.
  7. The Anatomy of a HTML doc is the head and body element tags contained inside the HTML tags. Example below
1 Like
  1. What is HTML?
  • A markup language that defines the structure of your content
  1. What is HTML used for?
  • HTML is used for defining structuring content for a webpage.
  1. Why are we learning HTML?
  • It’s used for any and all webpages—It is the standard.
  1. What is an HTML tag?
  • HTML tags enclose content and will define how that content should be displayed.
  1. What is the structure of an HTML tag?
  • CONTENT

  1. What is an attribute?
  • Attributes are placed within your tag. Attributes contain information that will not be displayed in your tag’s content. The attribute can later be used to target that tag(s) with style information and more.
  1. 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