HTML Reading Assignment

  1. What is HTML? Is a language that defines the structure of your content.
  2. What is HTML used for? To structure a web page
  3. Why are we learning HTML? To be able to learn web development and blockchain development.
  4. What is an HTML tag? A tag is an element that instructs the web page.
  5. What is the structure of an HTML tag? wrapped in open and closing brackets
  6. What is an attribute? Contains extra info that you don’t actually want in the content.
  7. What is the anatomy of an HTML document? Opening HTML tag, header and body element, closing html tag.
2 Likes
  1. HTML (hypertext markup language)

  2. HTML is utilized for structuring a web page & its contents.

  3. HTML is the basic language of used for web page and we need to be able to construct an application that can interact with a smart contract.

  4. a tag is used for creating an element.

  5. the open and opening tag (

    and

    ) and between them the content.
  6. Elements also can contain attributes while they contain extra information about the specific elements.

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

2 Likes
  1. HTML is the code that is used to structure a web page and its content.
  2. It is a markup language that defines the structure of your content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.
  3. We are learning HTML to better our understanding of how websites work so that we can eventually build web apps.
  4. An HTML tag is used to indicate where an element begins and ends. It can also contain certain properties and contents.
  5. An HTML tag has an opening tag, closing tag, content, and element.
  6. An attribute is extra information about the element that you don’t want to appear in the actual content.
  7. An HTML document has
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>page</title>
  </head>
  <body>
    <img src="images" alt="image">
  </body>
</html>
2 Likes

Javascript Programming for Blockchain Developers

Reading:

What is HTML?

HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content.

HTML is not a programming language; it is a markup language that defines the structure of your content.

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. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on. For example, take the following line of content:

What is HTML used for?

HTML is used for building the structure of a website that includes the position and action of text, pictures, videos etc.

  1. Why are we learning HTML?

It is crucial as a foundation for web development and therefore blockchain development

  1. What is an HTML tag?

HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.

  1. What is the structure of an HTML tag?

Most tags must have two parts, an opening and a closing part. For example, is the opening tag and is the closing tag. Note that the closing tag has the same text as the opening tag, but has an additional forward-slash ( / ) character. I tend to interperet this as the “end” or “close” character.

  1. What is an attribute?

Attributes allow you to customise a tag, and are defined within the opening tag, for example:

<img src="image1.jpg"> or <p align="center"> ... </p>

Attributes are often assigned a value using the equals sign, such as border=“0” or width=“50%”, but there are some that only need to be declared in the tag like this:

<hr noshade>

Most attributes are optional for most tags, and are only used when you want to change something about the default way a tag is displayed by the browser. However, some tags such as the tag has required attributes such as src and alt which are needed in order for the browser to display the web page properly.

  1. What is the anatomy of an HTML document?

The structure - Individual elements combined to form an entire HTML page.

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

2 Likes
  1. HTML is a markup language it is not a programming language.

  2. HTML is used to code or create websites.

  3. We are learning HTML so that we have an understanding of front-end programming. So that we can create a workable website to build upon.

  4. A tag is showing whether it is open or closed. It is used before and after an element.

  5. A tag is <> </>

  6. An attribute is where you enter data that you want to include but not showing on the content. it is an identifier.

  7. The anatomy is the structure of the way it is made. It sets how things will be displayed.

1 Like

1. What is HTML : HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content. it is a markup language that defines the structure of your content.

2. What is it used for? It helps us control how our content looks online.

3 why are we learning HTML? So we can make an attractive and easy to use interface for the things we create.

4. What is an HTML tag? A tag is what gives direction to text whether how it looks or the action it takes (opening a link, etc).

5. What is the structure of an HTML tag? Open bracket, name of the element and close bracket, unless there are more attributes to include. If so, they will be after the element and before the closing bracket. The closing tag at the end will have an open bracket, forward slash, element and closing bracket).

6. What is an attribute? An attribute is instructions for format or direction that will tell the content how to act but not appear as text in the display.

7. What is the anatomy of an HTML document? A collection of elements. Nested by the doctype at the head, and wrapped by the html (root element), head, character set, title and body elements.

1 Like

1, HTML meaning Hypertext Markup Language, not a programming but a markup language
2, Defines a structure of your content
3, To be able to define the structure of our content (?)
4, A tag wraps the content, also called root tag
5, Opening tag < > content closing tag </ >
6, An attribute contain an extra information of the element what you don’t want to appear in your actual content. It has a name, the attribute name (our e.g. class) which has to be followed by an equal sign and the attribute value (our e.g. editor-note) wrapped in a quotation mark. E.g. : class=“editor-note”
7, head and body elements starts with usually an html element

1 Like

What is HTML?

It’s a markup language that defines the structure of your content.

What is HTML used for?

It’s used to enclose or wrap different parts of the content to make it appear a certain way or act a certain way.

Why are we learning HTML?

To be able to start with basics of web development to be able to build an application or website that can interact with the blockchain or smart contract and also because it involves JavaScript which is a language that will help you be able to recognize other languages.

What is an HTML tag?

An HTML tag defines a hyperlink, which is used to link from one page to another.

What is the structure of an HTML tag?

HTML tag generally consist of an opening and closing pair. They are written in lower case using angled brackets ie . Our first HTML tag (or element) will open and close the entire document. Inside of the element go all the other HTML elements required to create our page.

What is an attribute?

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

What is the anatomy of an HTML document?

That wraps up the basics of individual HTML elements, but they aren’t handy on their own.

1 Like

1 - HTML stands for Hypertext Markup Language. HTML is a code that defines the structure of a webpage and the content that is found on the webpage.
2 - HTML is a code that defines the structure of a webpage and the content that is found on the webpage. HTML ensures that the content on the webpage are in the correct format and that the page how it is meant to.
3 - Learning HTML allows you to the website as front-end for your smart contract projects. It also allows you to code the webpages yourself instead of having to out-source the work - which reduces costs that can be put to use elsewhere.
4 - Tags are used to define how the content is to present itself to users.
5 - Tags usually contain 2 parts, these are opening and closing tags. The opening tag is represented as, . The closing tag is represented as, . They are both very similar except the closing tag contains a forward slash before the tag.
6- Attributes contain extra information about the element, these extra pieces of information are not visible and don’t appear in the content of the webpage.
7 - An HTML document consists of:
A HTML tag;
A Head tag where the title of page will be coded;
A Body tag where the content that makes up the page is coded, i.e, the background colour, text size, the text that is included on the page and any images etc.
Each of these tags will then be closed at the end of their relevant sections to ensure that the text editor is able to read the code correctly.

1 Like
  1. What is HTML?

HTML is a markup language to show online hypertext websites

  1. What is HTML used for?

HTML is used to display and structure websites

  1. Why are we learning HTML?

To get the basic knowledge to create a website.

  1. What is an HTML tag?

A tag open and close an element. Different elements have different tags and instruct the browser on how to visualize them.

  1. What is the structure of an HTML tag?

Example Header tag:

  1. What is an attribute?

An attribute contains extra information about the element. This information will not be displayed on the screen.

  1. What is the anatomy of an HTML document?
<!DOCTYPE html>: not anymore used but it was supposed to link the page to a set of rules in order to provide extra tools such as automatic error check.
<html>: root element. it is used to contain the all script.
<head>: contains everything that is included on the website but not shown to the user. 
<title>: contains the title of the webpage
<body>: contains everything you want to show to the user on the webpage
1 Like
  1. Hyper Text Markup Language.
  2. It is the code to produce a website and its content.
  3. We use the web to load instructions and commands when interacting with the Blockchain so we need to know how to build the website.
  4. A tag is used to open an element and to close it where it ends.
  5. Opening tag. Element and content. Then closing tag.
  6. Attributes content information about the element that aren’t shown in the content.
  7. doctype.
    the HTML element
    the head element
title element body element
1 Like
  1. What is HTML?
    Hypertext Markup Language is a code that is used to develop web pages and their contents.
  2. What is HTML used for?
    Its used for series of elements or to make it do different parts of content to make a certain way
  3. Why are we learning HTML?
    To be able to make our own web page that can collaborate with blockchain programming later
  4. What is an HTML tag?
    It tells element what to do and there is opening tag at the beggining and closing at the end
  5. What is the structure of an HTML tag?
    The opening tag, the closing tag, and the content
  6. What is an attribute?
    Attributes are extra infomations about the element
  7. What is the anatomy of an HTML document?
    Its list of selections starting with , , , , ,
1 Like
  1. HTML is a markup language used to structure the content of the webpage.
  2. It is used to structure a web page (enclose, or wrap, different parts of the content, change the font, make hyperlinks)
  3. To structure and edit web pages that will be conected to the blockchain
  4. It’s a part of the HTML anatomy used to designate the begining, the end and the type of the element
  5. Opening and closing brackets (start and end of the element). The name of the element itself with any content.
  6. Atributs are a part of the HTML language that are used to include extra information about the element
    that you don’t want to appear in the actual content.
  7. doctype - required preamble. Makes sure your document behaves correctly
- wraps all the content on the entire page - the stuff that isn't the content you are showing to the viewers - enables to handle all the textual content you are putting into a page - title of your page - contains all the content that you want to show to the users
1 Like
  1. What is HTML? it is a markup language that defines the structure of your content.
  2. What is HTML used for? It is used to structure a web page and its content.
  3. Why are we learning HTML? Because it will allow are website to communicate with the blockchain.
  4. What is an HTML tag? It is used to create elements in a webpage
  5. What is the structure of an HTML tag?

    = opening and

    = closing a paragraph.
  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></html>,<head></head>,<meta charset="utf-8">,<title></title>, and <body></body>
1 Like
  1. it is a markup language that defines the structure of your content on your website.
  2. to make it appear a certain way, or act a certain way
  3. we are learning html because it will be easier to learn other programming languages since all of them have some js relation.
  4. an html tag is used to make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller etc.
  5. opening tag, closing tag, the content and the element.
  6. Attributes are extra information about the element that you don’t want to appear in the actual content.
  7. w/o spaces after each <
test page ```
1 Like
  1. Hyper Text Mark Up Language
  2. it is used for structuring the “contents” of a website.
  3. So that we can build our own graphic user interface (website)
  4. it is where the beginning and the ending of an element takes place
  5. = opening tag. = closing tag
  6. Attribute is extra information that does not appear in the content displayed on the website/gui
  7. Doctype, head, html, head, character set, title, body
1 Like

1.HyperText Markup Language
2.It is a markup language and is use to design and structure a web page
3.So we can create simple web pages.
4.It is angled brackets and encloses an element name or command.
5<>element</>
6.A attribute contains an extra information about the element and adds it to it.
7.This is the consistents of each element on the HTML page

1 Like
  1. What is HTML?

HyperText Markup Language

  1. What is HTML used for?

Code for websites to have functions.

  1. Why are we learning HTML?

It’s the foundational step to learn other coding languages.

  1. What is an HTML tag?

It’s the opening function to a series of code.

  1. What is the structure of an HTML tag?

Open Tag
Attibite and close Tag

Example:Water Maker

  1. What is an attribute?

Is a code that adds a non-unique identifier. This will allow for a text to be easily identified.

  1. What is the anatomy of an HTML document?

must indicate that it is HTML
have a header
Meta charset
title
heading
paragraph

1 Like
  1. HTML is the programming code to create the structure of web page development

  2. It is used for web-pages, applications anything serving as a CLIENT to a Server or Database

  3. We are learning HTML so we can understand how to implement it in the programming world and to have an understanding of the “language” that is implemented in software development as well as code creating for Technical Analysis

  4. A tag is a piece of an element in the HTML language. “< a href >” it is what wraps in between the more than and less than symbols

  5. A tag looks like < p > and has a closing command with a slash < /p >

  6. An attribute is an additional tag created to emphasize, color or indicate the size text, for example. It contains extra data or info for a specific element.

  7. A typical HTML document would have indicate it is a:
    html document
    < html >
    < head >
    establish < meta charset=“utf-8”> character set
    A < title>
    < body >
    (maybe some < p > with list of info < ul > )
    A picture of some sort < img src ="">
    and then wrapped up with a closing </ html >

1 Like
  1. What is HTML?
    A: is a markup language the defines the structure of your content.

  2. What is HTML used for?
    A: to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.

  3. Why are we learning HTML?
    A: because its going to help us in with fundamental understanding. This text editor will make it easier for us to write code. it will highlight certain parts of our code to make it more readable. and the entire coding process simpler.

  4. What is an HTML tag?
    A: you have an opening tag ,closing tag, the content, the element.

  5. What is the structure of an HTML tag?
    A: The opening tag consist of the name of the element wrapped in opening and closing angle brackets. this state where the element begins or starts to take effect. Next, is the closing tag this is the same as the closing tag except it includes a (/) or forward slash before the element name & this states where the element ends. Next you have the content of the element, then the element which is the opening tag, closing tag and the content together make up the element.

  6. What is an attribute?
    A: this 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?
    A: Doctype , html. head, meta charset, title, body. Then Images, headings, paragraphs, lists & links

1 Like