HTML Reading Assignment

1. HTML is a markup language that presents/structure content and data in a certain way for the end users.

2. Presents/structure content and data in a certain way for the end users on the web.

3. Cause we want to be able to connect our backend code (like solidity, C++) to users in a good looking and easy to understand presentation on the web.

4. Take a certain content and change it or decide how its going to be presented/structured with an element.

5. <>content</> with the name of the element inside the brackets, so content inside open and closing tags and element name inside both tag brackets.

6. An attribute is extra information about an element that you dont want to be Visual in the content.

7.
Doctype HTML:
Links some rules that the HTML page need to follow to considered good.

HTML:
Wraps all content on the entire site and is called the root element.

HEAD:
Contains all information you dont want to see in your content.

TITLE:
Sets the title of you page, which is the title in the web browser tab for your site.

BODY:
Contains all the content on the page. The content you want the end user to see.

  1. HTML- is a hypertext markup language
  2. HTML is used to structure a webpage and its content
  3. We are learning HTML to create webpages
  4. 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
  5. Opening tab, content, closing tab
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy of an HTML document is: opening tab,content, closing tab, and element which are all 3 together.
  1. HTML (Hyper Text Mark-Up Language), generally speaking, HTML is not a programming language but just a language that uses for laying out the structure of the website’s contents.
  2. It uses to structure the web pages’ contents through a series of elements. HTML makes the web pages viewable in the internet
  3. HTML simple to learn and is a fundamental knowledge to understand how web browsers work through internet.
  4. HTML’s tag is a form of element which use to structure the content of the web page in a certain way. For example, to make certain headers or fonts bigger or to including certain contents in a paragraph.
  5. Usually consists of an opening and a closing tag, use to define to open and closing of the
    contents that need to be displayed in a certain format. A closing tag usually comes with a forward slash.
  6. An attribute provides extra information about the element that does not appear in the content, usually use as an identifier. An attribute should have a space between it and the element name, name of the attribute as well as opening and closing quote marks.
  7. Anatomy of HTML document is to break down the contents of a webpage into a series of HTML components. Usually include html element, head element, body element, meta charset element (ie character set) and title element.

1 HTML is a language that defines the content of a programme so that it will appear as we intend it to appear on the computer screen.
2 It is used to style the appearance of the content of the program.
3 We are learning it because it is foundational to understanding more complex issues.
4 Tags have various functions: linking to other elements, and appearance of text (size, italics and so on).
5 Structure of a tag: < > with something between the elements such as p for paragraph to open the paragraph and /p to close it.
6 Attribute: this is information about the element that further specifies it, but which is not visible on the computer screen.
7 Anatomy: the entire html document code.

Smart-Contracts Lesson HTML

  1. HTML is a markup language.
  2. HTML is the code we use to structure a web page and its content.
  3. We learn HTML because we want to start at the basis of programming and go further from there.
  4. A tag is used to show where a paragraph begins and ends.
  5. The structure of a HTML tag looks like this <> or </>.
  6. An attribute is contain extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy of an HTML document is the sum and construction of all the different elements that create a web page.

Thank you all- I have been studying HTML from scratch for 3 weeks now and I feel better at it- There is still a lot to learn but thanks to Ivan’s course and whats online It easier once you have a structure and a sensible approach- for anyone interested I found this good video https://www.youtube.com/watch?v=UB1O30fR-EE&t=1843s
Will be tackling Java Tomorrow! I would also encourage anyone to join Meet up groups on Coding Or Html Or Java- that’s what I am doing in order to get the most of it.

1 Like
  1. What is HTML? Hyper Text Markup Language
  2. What is HTML used for? Defining the underlying structures of a website.
  3. Why are we learning HTML? HTML will build the basis for our JavaScript application, which will be the front-end for our smart-contract applications.
  4. What is the structure of an HTML tag? <p>Content</p>
  5. What is the anatomy of an HTML document?
    <!DOCTYPE html> —necessary formality
    <html> —-root element - wraps the entire page
    <head> ——container for CSS style char set, declarations (stuff that isn’t shown content)
    <meta charset="utf-8"> ——sets the most universal character set for textual content
    <title>My test page</title> ——sets the title, which appears in the browser tab
    </head> —-text, images, videos, etc (stuff that is shown)
    <body>
    <img src="images/firefox-icon.png" alt="My test image"> —an empty element example, not ‘wrapped’
    </body>
    </html>

I learned by my own way which fit me better, question might be the same.

  1. What is HTML? 什么是超文本标记语言?
    HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
    超文本标记语言是用于定义内容结构的标记语言。

  2. What does HTML consist? 超文本标记语言由什么组成?
    A series elements, which you use to enclose different parts of the content to make it appear or act a certain way.
    一系列元素。元素可以用来封装不同部分的内容,使其以某种方式呈现或者工作。

  3. What does Element consist? 元素由什么组成?
    Openning tag, Content, Closing tag.
    开始标签,内容,闭合标签

eg.
Content
<元素名称>内容</元素名称>

  1. What is Attribute? 什么是属性?
    Attributes contain extra information about the element that you don’t want to appear in the actual content.
    属性包含了关于元素的一些额外的信息,这些信息本身并不需要被显现在内容中。

eg.
Content

<元素名称> 属性1=属性值 属性2=属性值>内容</元素名称>

  1. Other Elements Types. 其他元素种类.
  • Nesting Elements 嵌套元素
    eg.

    My cat is very grumpy.

  • Empty Elements 空元素
    eg. <img src=“images/firefox-icon.png” alt="My test image”>

  1. Anatomy of an HTML Document. 解析超文本标记语言文档
  • doctype; 文档类型
  • element, known as root element; 元素, 也称根元素
* element, users cannot see it; 元素, 用户看不到 * element, user can see it; 元素, 用户可以看到 * character element; 文字类型元素 <meta charset=“utf-8" * element; 元素

It doesn’t show the content between opening and closing angle brackets here. Don’t know why.

1_. What s HTML?
Stands for Hyper Text Markup Language is a markup language that defines the structure of content
2. What is HTML used for?
Code used to structure web pages and its content
3. Why are we learning HTML?
Because it is the basics of coding and is similar to other code we will use on this course. Also its handy to see the code in use on a webbrowser. Also all code needs an html interface so there is a ui.
4. 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
5. What is the structure of an HTML tag?
a tag should have an opening and closing tag, an element and content
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?
A HTML document should consist of the doc type, the html element, the head element, the body, character setter, title

  1. Hypertext markup language

  2. It is basically the way how you visualise the website.

  3. When we get to the point to have some final product (program or DAPP) will need a website to introduce it to the world.
    4.With the html tags you can structure your website.
    5.The structure is head and body tags. The head tag is not showing to the actual page you are seeing and is telling the browser what to look for. . With body tags you are actually showing the webpage to the public.

  4. Attribute contain extra information about the element.

  5. ...

  1. HTML is Hyper Text Markup Language
  2. HTML is used to structure the content inside web pages
  3. We are learning HTML in order to create an application that works to later interact with blockchain and as a preface to javascript
  4. An HTML tag is what defines the content inside of it to set it as a heading or paragraph or any specific style such as bolded or italicized text
  5. The structure of an HTML tag has an opening and a closing.
  6. An attribute is something included inside an element that won’t appear with the content.
  7. The anatomy of an HTML document starts with the “!DOCTYPE html” statement at the very top, the “html” element, “head” element, “body” element, "meta charset = “utf-8"” statement, a title for the page.

What is HTML?
HTML is Hypertext Markup Language.

What is HTML used for?
HTML is used for structuring content on a webpage.

Why are we learning HTML?
To learn how to create a simple website that interacts with a blockchain.

What is an HTML tag?
HTML tag is used to structure an element, which in total makes up a content.

What is the structure of an HTML tag?
An HTML tag has an opening tag “<>” and a closing tag “</>”. An HTML element consists of an opening tag, content, and closing tag.

What is an attribute?
Attributes contain extra information about the element that you don’t want to appear in the actual content.

What is the anatomy of an HTML document?
!DOCTYPE html element, the html element, the head element, the “body” element, meta charset=“utf-8” element, and, the “title” element.

  1. HTML is a markup language.

  2. HTML is used to define the structure of your content.

  3. We are learning HTML because it is the standard markup language used for creating web pages and applications; better yet: decentralized applications (Dapps).

  4. An HTML tag is a hidden keyword in a web page that defines how the browser must display the content.

  5. The structure of an HTML tag has two parts: an opening and a closing part. For example, to make a paragraph in HTML,

    is the opening tag , and

    the closing tag. Note that the closing tag includes a forward slash ( / ) which is what is used to close a tag. There are some exceptions to the rule, such as with the image tag .

  6. Attributes contain extra information you do not want to appear in the user content and give elements meaning and context.

  7. That anatomy of an HTML document: - the doctype needs to be included for everything to work right; - the element wraps all of your content on the page and is also known as the root element; - the element acts as a container for all of the content you want to include on the HTML page for your viewers; - the element contains all the content you want to show web users that visit your page; - this element sets the character your document should use for the most robust set of characters to help you avoid problems later; - this sets your title page, which appears in the browser tab the page is loaded in as well as for bookmarking.

Summary

  1. HTML is a markup language for hypertexts (HyperText Markup Language).

  2. To structure websites and its content. I choose HTML5 (instead of flash) to be the player of videos in the course. Thus codes in HTML tell my Chrome browser how to present the videos for me.:blush:

  3. The most fun you can begin with when you are new to programming is create something visual. The final goal is to use HTML in front-end development of a dApp.

  4. Tags are one of the main parts of an element. Tags tell Chrome how to present text, images, videos, links etc (defines the size, position, format, etc. of the information).

  5. The tagname already has a defined action to be executed on the content. Also, see the following picture for entire structure:

  6. Attributes are extra information added to the element. It functions as an identifier and can be used for other things without changing anything visible about the content.

  7. If you put many individual HTML elements into one document you will have a so called HTML-document. There elements is divided into different segments. The < head > contains all invisible content and the < body > elements all visible. You begin a HTML document with < !DOCTYPE html > followed by < html > (the root element) directly below. Also, HTML documents always end with < html >.

What is HTML?
An advanced webpage and content formatting tool
What is HTML used for?
Changing the way images, video, and text is displayed and used in a webpage.
Why are we learning HTML?
We need to create an interface for users to interact with concealing our backend code.
What is an HTML tag?
They are hidden keywords that dictate how the content of a webpage is displayed.
What is the structure of an HTML tag?
There is an opening tag and a closing tag.
What is an attribute?
Extra information that you don’t want to appear on the actual page but is helpful targeting, sorting, and notation, among other things.
What is the anatomy of an HTML document?
<!DOCTYPE html> - Needed to run web pages properly
<html> - wraps the content on the entire page; the root element.
<head> - content styles, CSS information, and search engine keywording
<body> - Where all of the content goes
<meta charset=”utf-8”> - Makes sure your document can use almost any character from any known language and can be interpreted by a browser once it’s written.
<title> - Displays text in the tab at the top when viewing the page and bookmarking/favoriting.

What is HTML?Not a programming but a markup language.
What is HTML used for? To structure text on a webpage.
Why are we learning HTML?** As a first step into coding.
What is an HTML tag? Every HTML element requires an opening and closing tag to indicate where it begins and ends
What is the structure of an HTML tag? A 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 — in this case where the paragraph begins. To end the element, a closing tag is essential. It is similar to the opening tag but has a forward slash after the opening brackets.
What is an attribute? An element may also contain attributes which are not visible to visitors of the HTML page but allow for better organization and structuring of the page as well as indexation and search functions.
What is the anatomy of an HTML document? The different elements of a HTML page interact to create a complete visualization. The elements used comprise (among others)
html
head
body
meta charset=“utf-8”
title
img
p
ul
ol
a

1.- What is HTML?
It means Hyper Text Mark-up Language

2.- What is HTML used for?

It is used to prepare written documents applying labels of format and it is the proto call that all web pages use to

3.- Why are we learning HTML?

It is essential in order to do web programming where we are going to work with the content
4.- What is an HTML tag?
Because it separate the content (Words, images, video, audio, etc) from the presentation

5.- What is the structure of an HTML tag?

opener “<” tag-type “h1” close of opener “>” “any content” close opener with slash as an ending tag"</" tag-type “h1” close of closer “>”
6.- What is an attribute?
It is the adittional information of the label

7.- What is the anatomy of an HTML document?

Every HTML document consists of two elements:

Head elements/provides page title and general page formatting commands
Body elements/ put the main HTML text in this part.

What is HTML? HTML is a markup language used to code and write the structure of a web page and allows its information to appear in a certain way.
What is HTML used for? HTML is used to display content on websites.
Why are we learning HTML? To enable us to format content in a useful and pretty way.
What is an HTML tag? Tags are used to make content appear in a certain way.
What is the structure of an HTML tag? Content </closing tag>
What is an attribute? Attributes contain extra information about the element that you don’t want to appear in the actual content.
What is the anatomy of an HTML document? Individual elements that are combined to form an entire HTML page.

Hypertext markup language
For websites
To be able to create websites
Encloses the content
to open to close
Provides extra details about the element which are not displayed on the web page
Contains the document that you want to display