HTML Reading Assignment

  1. HTML is Hypertext Markup Language, which defines the structure of ones content.
  2. HTML is used for designing the front end of websites, inputting, and organizing content on the website.
  3. We are learning HTML because it is the basics of programming and it is important to have HTML as our foundation as we build upon it when learning more skills in programming.
  4. An HTML tag is a way to define and create an element
  5. An HTML tag is usually
  6. An attribute is extra information added to an element that one does not want visible with the content.
<!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>
2 Likes
  1. HTML is not a programming language, but a markup language.
  2. This enables you to structure your content.
    3, HTML is the front end of an application. You need that for people to interact with data on the blockchain.
  3. A tag is an instruction that tells your content on how to be displayed on your site.
  4. A tag is opened and closed, everything within the tag gets the attributes of the tag.
  5. An attribute tells your website how to display data. ex. data
  6. The anatomy wraps everything in a basic structure, that anyone can read and write.
2 Likes
  1. HTML is a markup language

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

  3. To make the connection from front end to back end, for example, if we are going to write a Smart Contract

  4. A tag is what creates an element in HTML

  5. It consists of an element and the content inserted between an opening and a closing tag

  6. An attribute extends a tag, changing its behavior or providing metadata.

  7. The basic structure of an HTML document consists of 5 elements:

!DOCTYPE
html
head
title
body

1 Like
  1. What is HTML?
    It is code used to mark-up ( I would say enrich) page content

  2. What is HTML used for?
    To affect/improve the look and readability of page content

  3. Why are we learning HTML?
    To understand structure and how some basic commands syntax looks

  4. What is an HTML tag?
    Is the code how an element is written, start and end.

  5. What is the structure of an HTML tag?
    Angle brackets around element for opening tag and angle brackets for closing tag but with a forward slash before element.

  6. What is an attribute?
    Is some extra information about the content, maybe to describe it. But it doesn’t appear on the page.

  7. What is the anatomy of an HTML document?
    Preamble; historic entry detailing doc type
    html element; wraps content of page, I think it simply indicates that everything within is all html
    head; container for non displayed page information
    meta; states style of page to be used
    title; displayed name or heading of page visible to page viewer
    body; holds the content that is viewed by user

1 Like

I don’t speak Italian, only spanisch.
nice to meet you :grinning:

1 Like
  1. It’s a code a mark up language
  2. To structure a web page and it’s content
  3. to understand The internet and blockchain
  4. The Element
  5. Opening tag, closing tag, the content and the element
  6. Attributes are extra information about the element you don’t want to appear in the actual content.
  7. ``
1 Like
  1. What is HTML?
    Hypertext markup language for displaying information on websites

  2. What is HTML used for?
    Displays information on websites

  3. Why are we learning HTML?
    To showcase crypto projects

  4. What is an HTML tag?
    basic building block or component of sections on a web page defined by opening and closing Gt/Lt symbols

  5. What is the structure of an HTML tag?
    opening and closing greater than,less than symbols around the tag name

  6. What is an attribute?
    an element of a tag that specifies content such as id, name, styling, title and more.

  7. What is the anatomy of an HTML document?
    html - head - body -footer

1 Like
Questions
  1. What is HTML?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
  6. What is an attribute?
  7. What is the anatomy of an HTML document?

1.[spoiler] Hypertext markup language that defines the structure of your content.[/spoiler]
2. [spoiler]HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as CSS and scripting languages such as JavaScript. Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages.[/spoiler]
3. [spoiler]Knowing what HTML is, how it came to exist, and how the markup language is constructed shows the amazing versatility of this basic website architecture and how it continues to be a major part of how we view the web.[/spoiler]
4. [spoiler]Tags are used to to tell the browser what and where content is beginning and ending. HTML tags are element names surrounded by angle brackets.[/spoiler]
5.

HTML document basic structure

Every HTML document has a basic structure. The minimum required tags are as follows:

<!DOCTYPE html>

The <!DOCTYPE html> declaration is the first thing found inside a HTML document. This is not a tag, but it defines rules for the browser to render the content correctly.

<html>
The <html> </html> tags encompass all other tags on the page.

<head>
The <head> </head> tags encompass other tags that define the HTML page in greater detail. This content is largely used by the web browser and not displayed on the screen.

<meta charset="utf-8">
Meta tags provide information to the browser about the HTML document. This meta tag tells the browser what characters can and will be displayed. UTF-8 is the preferred charset for e-mail and web pages. You don’t have to memorize this, but remember that your HTML document should include this tag inside the head tag (below or above the title tag).

<title>
The <title> </title> tags are found inside the <head> </head> tags. The title of your document is placed between these tags. The document title is displayed at the top of the browser and on the browser tabs.

<body>

The <body> </body> tags hold all the visible content of a HTML page. This includes images, text, links, lists, etc.

This is the order these required tags are found:

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

6… [spoiler]Attributes are used to add extra details to the element and content such as text style, size,etc. They don’t appear in the website or web content.[/spoiler]

7…
[spoiler]

<html>

<DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Learning HTML</title>
</head>

<body>
</body>

</html>

[/spoiler]

Here is my updated answers. I hope you like it.
Byko :v:

2 Likes

What is HTML?
HTML= hypertext MARKUP language.
What is HTML used for?
HTML is used to write, structure and insert images in a web page.
Why are we learning HTML?
So that we can create our own web pages and be sure the content is secure without relying on 3d parties
What is an HTML tag?
Tags is what is used to create an element on a web page, it can contain text, images or links to other information
What is the structure of an HTML tag?
Opening structure like head and body, content and the closing instructions
What is an attribute?
Atribute is the expansion of an ellement instruction eg, class=(what class must do)
What is the anatomy of an HTML document?
Head elements – provides page heading and general page info
Body elements – Text and pics gets inserted in body

1 Like

Perfect!! You may proseed, my friend… :partying_face:

1 Like
  1. What is HTML? Hypertext Markup Language

  2. What is HTML used for? It is used to structure a web page and it’s content.

  3. Why are we learning HTML?- We need to learn HTML to be able to construct a website that smart contracts can link to.

  4. What is an HTML tag? A HTML tag is used to create elements. The element name is used in angle brackets, such as

    for paragraph.

  5. What is the structure of an HTML tag?- The basic structure of an HTML contains a head element and the body element,

  6. What is an attribute? An attribute contains extra information about the element that you do not want to appear in the actual content.

  7. What is the anatomy of an HTML document?
    An HTML anatomy has doctype, HTML, head, body, meta charset, and title.

1 Like

What is HTML?
Hyper Text Markup Language is the code used to structure a web page and its content.

What is HTML used for?
A code written to give expected results, use to structure contents within a set of paragraphs, give a list of bullet points, add images and links in our web page.

Why are we learning HTML?
In order to learn how to build the required front end for our backend, where we can showcase or host our result gotten from the backend and to structure our page correctly.

What is an HTML tag?
Used to structure texts and contents within the document eg < strong > tag is used to make bold a text. why the < a > is for anchor of links eg google

What is the structure of an HTML tag?
Opening angular bracket with
element
attribute
attribute value with quotation marks
content
Closing bracket with elements

What is an attribute?

An attribute hosts the actual information an attribute value should carry or demonstrate eg Href anchors web links

What is the anatomy of an HTML document?


< !DOCTYPE html >
<  html>
< head > < /head>
< meta charset = "utf-8" >
< title> < /title >
< body > < /body?
< /html>
1 Like
  1. **What is HTML? = is a markup language used to define the structure of your content and define the elements used to wrap different parts of the content.
  2. What is HTML used for? = HTML is the code used to structure a web page and its content.
  3. Why are we learning HTML? A coding architectural flow is still needed on the front and backend of a website or App even when built on a blockchain.
  4. What is an HTML tag? Elements that open and close content.
  5. What is the structure of an HTML tag?

  6. What is an attribute? An attribute contains 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? Anatomy of an HTML document includes the following individual elements that combine to form an entire HTML page: <DOCTYPE html>, <html></html>, <head></head>, <meta charset=“utf-8>, <title></title>, <body></body>
2 Likes
• What is HTML?
Hypertext Markup Language

• What is HTML used for?
Code used to structure a web page and its content (not a programming language)

• Why are we learning HTML?
To have a basic understanding of HTML and its functions for web page development.

• What is an HTML tag?
• An HTML tag is used to enclose elements which can be text, hyperlinks, etc.

• What is the structure of an HTML tag?
Element = Opening 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.  Here, class is the attribute name and editor-note is the attribute value.  The class attribute allows you to give the element and identifier that can be used later to target the element with style information and other things.
 
Attribute = attribute name and attribute value. 
Ex. <p class = "editor-note">

• Nesting elements - you can put elements inside other elements too. 
Ex. <p>Cat is <strong>very</strong> grumpy.</p>

• Empty elements - some elements have no content or closing tag.  
Ex. <img src="images/firefox-icon.png" alt="My test image"> 
It embeds an image into the page via the src (source) attribute which contains the path to our image file 
Alt (alternative) attribute specifies "descriptive text" in case image cannot be seen

• What is the anatomy of an HTML document?
index.html

<!DOCTYPE html>
<html> - root element
	<head> - head element
		<meta charset ="utf-8"> - sets the character set which includes most written languages
		<title>My test page</title> - sets title of the page that appears in the browser tab 
	</head>
	<body> - body element - contains all the content you want to show to web users
		<img src="images/firefox-icon.png" alt="My test image">
	</body>
</html>
1 Like
  1. HTML stands for hyper text markup language. It is used to structure a web page and its content. Content can be structured within a set of paragraphs, list of bulleted points or using images and data tables.

  2. HTML is used to make a text look a certain way or act in a certain way.

  3. We are learninghtml because it is similar to many program languages.

  4. An html tag are hidden key words within a web page, that define how your web browser must formate and display the content. Most tags have two parts an opening tag and a closing tag.

  5. The structure in a html tag is as follows.

content combine the three and you have an element.

To write an element in html you need to start with an opening tag , then add content and close it with a closing tag.

Atributes contain extra information about an element that dont appear .

content </p)

Atributes are important because they help us identify elements so we can use it later to target the element with style, information and other things.

1 linksto a setof rules
2. wraps the content on the entire page (root element)
3, container for all the stuff you want to include on the html page that isnt the content you are showing to the viewers.
4. <meta charset=’‘utf-8’’> set the caracther, set the document shoud use. can handle any tekst.
5. title of the page which is the title thatappear.
6this contains all the conten you want to show to users.

1 Like

Html is a mark up language comprising of elements which, by adding various tags, can make it act in a certain way, for example to link to something, add an image, a narrative, a list.

Hmtl is used to develop basic Web pages.

We need to learn html for a concept of how programming works. If we are programming on the blockchain some smart contracts/dapps may need to link to websites and so we need an understanding of how they work.

An html tag is the opening and closing command we use to execute what ever we need to say or insert, they are put at the start and finish or the narrative.

The structure of a tag is comprised by the command wrapped in between an opening and closing angle. It is closed after the narrative with an opening angle, a forward slash, the command and closing angle.

An attribute is something in the narrative that is for the author, it won’t be visible on the website.

The anatomy of html is how everything is made up on the page, it includes the preamble, the root element that wraps the content, the head which viewers don’t see, the meta charset that can handle text in any language, the title of the page as it would appear in the browser and the body with the content of the page.

1 Like

Glenn_CostaRica

What is HTML?
It’s a markup language, instead of a regular programming language. HTML = “Hypertext Markup Language”.

What is HTML used for?
It’s a kind of code that we use to specify how the structure of a web page would be, and how the content would be rendered. One can use HTML in order to determine the big elements that will compose a page, like lists, tables, images, paragraphs or the whole structure.

Why are we learning HTML?
Our final goal is to learn how to program functionaly on top of a Blockchain. This functionality will exist as a kind of backend, or code that is not in our computers. However, we will always need code that runs on our own computers too in order to be able to access remotely the main code that is on the Blockchain. So, we need HTML (and later JavaScript) in order to create web pages, as applications, that let us interact with the code on the backend from our own computers. We will create web pages to be able to access and use our own Blockchain code.

What is an HTML tag?
A tag is a symbol or a set of symbols that we use to determine a type of element that we want to use in our page, as a paragraph, a text or even some properties we want to apply to a text (like to make the text bold or to color it).

What is the structure of an HTML tag?
There usually are OPENING TAGS: tags that determine that some new type of element starts, and also CLOSING TAGS that indicate that this same element ends there (or, in other words, that the instructions related to the element end there).
Examples of opening tags:
To open a new paragraph:


To open a new image section:
Examples of closing tags:
To close a paragraph:


To close an image section:

What is an attribute?
An attribute is a characteristic that we give to an element. We represent it as a nested instruction, or a nested piece of code, inside the code for the element to which the attribute is referring to! For example: If we have the element PARAGRAPH (code with the instructions to create a space for a paragraph on our page) inside our HTML document, then, inside this code, we can add as an attribute, the instruction STRONG, to indicate that we want the font to rendered as bold letters. Like this

This paragraph will be rendered as strong letters, since we are using the tag STRONG here!!

What is the anatomy of an HTML document?
It’s the basic macro structure that the HTML code for a complete website must have in order to work properly as a web page. The most basic structure includes all the basic sections and elements that the most simple page requires.

1 Like

What is HTML?

HTML is the structure behind content which defines the visible and invisible content. It is a markup-language and not a programming language.

What is HTML used for?

Building the foundation/basis for content presented on a webside. It includes pictures, text, commands and functions.

Why are we learning HTML?

First to understand the simple structure behind a webpresence. Second to be able to create such structure and third to combine it with Java and other languages to connect to a blockchain or similar structure.

What is an HTML tag?

Is an element of HTML which has opening and closing functions, which give commands certain attributes, like color or funtionality.

What is the structure of an HTML tag?

It is either openeing a sequence or closing it. Opening comes always before the closing. The opening is determined with <> and the closing one </>.

Examples of opening tags:

< head >

is opening the sequence of elements/commandos which are not shown to the user of the website

< body >

is opening the sequence of elements/commandos which are shown to the webuser

Examples of closing tags:

< /title >

is closing the text which is shown in the browser tab the page is loaded in

< /html >

is closing the whole content oft he page

What is an attribute?

Contains information of an element which does not appear in the content.

What is the anatomy of an HTML document?

Different individual elements are combined in a specific order. I understand it that way. The greater the importance of the element on the entire website, the sooner it appears in the HTML document. The structure contains possible images, headings etc. The important basic elements are the root element, which is , the title, the body and head element.

1 Like

  1. HTML is a markup language that define the structure of your content
  2. HTML is used to create a web page and have its content to appear a certain way or act a certain way.
  3. We learn HTML to build a website-the front end- which can interact with the applications we later build.
  4. A HTML tag is used to create an element.
  5. The structure of a tag: opening and closing.
  6. An attribute is additional information about the element that will not be displayed on the screen
  7. The anatomy of an HTML document are:
    -doctype,
    -html element
    -head element
    -meta charset
    -title element
    -body element