HTML Reading Assignment

  1. Html is the most basic language of the internet. It provides a blueprint for websites to understand each other. Elements with tags are wrapped around content to make it appear or act in a certain way
  2. Html stands for Hyperlink Markup Language is used as the standard layer for documents and content that are designed to work on the internet.
  3. It is always important to learn the basics first:)
  4. Html tags are used for defining the type of contents within the tag such as

    to show that it is paragraph format.

  5. The tag structure starts with < then the tag in the middle to look like this

    then content in the middle and it always ends with a backslash to show the end

    .
  6. Attributes contain extra information about the element that you dont want to show up on the websites visible content.
  7. It starts with the type of document then to identify the basic layer compatibility, and is used to wrap the entire document. Then the shows all the info or summery of the website before you click on it. The allows character identification for your document. Next the for the page name in the browser display. is the main content of the page. All of the content must be wrapped in the correct order to make sure that is is functional.
1 Like

There two 2s for some reason. I tried fixing it on the edit but it is numbered correctly when I go to it peculiar.

  1. What is HTML?
    HTML stands for Hypertext Markup Language - it lets us see content on the webpage

  2. What is HTML used for?
    HTML is used to structure the webpage and its contents.

  3. Why are we learning HTML?
    We are learning HTML to be able to have/create a frontend for user interfaces for the blockchain or smart contracts etc.

  4. What is an HTML tag?
    An HTML tag is how the words are enclosed within the element, this allows the content to appear on the webpage or browser in a certain way.

  5. What is the structure of an HTML tag?
    An opening tag and a closing tag. Opening tag < > </ > Closing tag the difference being the closing tag contains a forward slash before the element name.

  6. What is an attribute?
    An attribute is extra information within the element that we want to include BUT do not show up in the actual content.

  7. What is the anatomy of an HTML document?
    An HTML document Anatomy starts with this sets the rules for the webpage.
    Head elements - content that is included in the HTML but not shown to viewers. For example keywords for search engines.
    Title Elements - As the name suggests the title that we want to show in the browser, it is also used for bookmarking.
    Body Elements - This contains all the content that we wish to include onto the webpage for viewing. This can include TXT, Images, Video and Games.

2 Likes

@Bren509 Fixed it in the edit, there was a space difference between the dot and the number so it interpreted as a different bullet point. :slight_smile:

1 Like

1 Hypertext Markup Language
2 To display text, images and various other media
3 To present our smart contracts on the front end
4 The tag tells the browser what kind of content is inside
5 <p> </p>
6 Provides additional information about the element
7 State the document type

<html>
   <head>... </head>
   <body>...</body>
    </html>
1 Like

Voor de Nederlanders onder ons :smile:

  1. Niet een programmeertaal, maar meer een invulling van je website inhoud en hoe je dat formuleert.
  2. Het opstellen van een website inhoud.
  3. Omdat de blockchain moet communiceren met een omgeving waarmee mensen gebruik kunnen maken van je DAPP. HTML is de building block van zo’n website en een goede manier om te leren programmeren.
  4. Een tag is wat aangeeft wat voor element je gaat formuleren, en geeft begin en eind aan van dat element.
  5. Een atribute zegt iets over je content en komt binnen de eerste bracket van je tag.
    !DOCTYPE, HTML wat de gehele pagina omhelst. Eerst een head, meet daarin alles wat niet zelf op de website komt, maar wel belangrijk is voor de website etc. Daarna de body, met daarin de inhoud van de hele pagina.

1- Hypertext Markup Language
2- All web pages use HTML to interact with the net
3- HTML is the basic of v2 websites To program these sites it is necessary
4- The tag makes hyperlinks so we can connect to another page outside of our website
5- The opening tag

and closing tag </P…>
6- Between the opening and the closing tag is the attribute name and attribute value

1 Like
  1. HTML is hypertext markup language.
  2. It is used to define the structure of your content.
  3. We are learning HTML so we can display & structure our block-chain creations on sites.
  4. An HTML tag is used to create elements.
  5. HTML tags are structured by angle brackets. The opening tag has no slash, the closing tag always has a slash.
  6. An attribute is a way to give an element created by a tag a non unique identifier that can be used to target.
  7. Doctype preamble comes 1st.
    html element to wrap the text.
    Head element
    Meta Charset
    Title
    Body
1 Like
  1. Hypertext Markup Language.

  2. Protocol for displaying web page content.

  3. It’s one of the foundational layers for web development. It enables us to decide how our code will
    interact on the internet.

  4. Instructions to create an element.

  5. Tags are containers for elements. They are a particular word or letter surrounded by angular brackets image

6.Elements can have attributes. Which are words within the opening tag that modify/change the elements behaviour.

7.HTML documents follow a basic format

image

1 Like

Greetings @blockchainstephen and @Alexhorvath ! Welcome to the forum. Happy to see your very own posts. We are looking forward to more to come while you progress through the courses. If you need any sort of help or doubt clearing, please do not hesitate to ask here. :slight_smile:

And yeah, please remember to use the right format when writing code in the posts. Check the below instructions how to do so.
prefromatted_text-animated

Happy Learning! :smiley:

1 Like
  1. HTML is a markup language.
  2. HTML is typically used for structuring content for websites.
  3. We learn HTML because it is a basic language that is widely used for web development. Therefore it is a good on ramp for learning coding and has many uses.
  4. An HTML tag is basically a command that tells an element where to be, what to do, and how to do it.
  5. An HTML tag begins with an “<” and ends with a “>” with the specific tag lying within these two. An end tag is structured with “</”, tag content, “>”. The content of the tag lies between the start and end tags.
  6. An attribute describes certain extra properties about the tag without showing up in the actual content.
  7. The anatomy of an HTML document is basically the wrapping up of content within a higher tier. It starts by denoting that it is an html file with “<!doctype html>”
    This “wraps” the rest of the content such as title, body, paragraphs, script, etc, each of which is denoted by a start and end tag. These wraps create a tiered system of elements.
1 Like
  1. HTML stands for Hypertext Markup Language. It consist of a series of elements which wrap different pats of he content to make it appear in a certain way

  2. It is the code used to structure a web page and its content.

  3. IT is essential to understand what HTML does and what a good code looks like

  4. A HTML opening and closing tag state where an element begins or starts to take effect.

  5. The structure would normally consist of:
    -Opening tag
    -Content
    -Closing tag

  6. An attribute contacts extra information of the element that you don’t want to appear in the actual content.

<html>
<head>.......</head>
<body>.....</body>
</html>
1 Like
  1. What is HTML?
    Hypertext Markup Language
  2. What is HTML used for?
    HTML is used to create electronic documents (called pages) that are displayed on the World Wide Web.
  3. Why are we learning HTML?
    Static Page, it is the display page for a user
  4. What is an HTML tag?
    browser recognizes content
  5. What is the structure of an HTML tag?
    opening tag, and a closing tage, <> </>
  6. What is an attribute?
    additional properties in the tag
  7. What is the anatomy of an HTML document? !DOCTYPE html, html tag, and a head body, all with opening and closing tags
1 Like
  1. What is HTML?
    It is a code that is used to structure a web page and it’s content.
  2. What is HTML used for?
    HTML is used for customising different parts of the content and make it appear in a certain way. You can make the text bold, you change change it’s colour, you can change it’s position, basically anything with a set of command.
  3. Why are we learning HTML?
    Because HTML has many use cases, most of the codes that we use here can be found in different programming languages and we need to know how to make text customisable.
  4. What is an HTML tag?
    The HTML tag is an indicator that shows where the paragraph begins and where it ends.
  5. What is the structure of an HTML tag?
    It consists of the name of the element wrapped in opening and closing angle brackets
  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?
    It wraps up together or the HTML elements.
1 Like

1 What is HTML?
it is a markup language which defines structure/layout

2 What is HTML used for?
It is used for defining the structure of a webpage

3 Why are we learning HTML?
so that we can define ‘front-ends’ to make for easier interaction with dapps

4 What is an HTML tag?
a tag is a function used to define an element

5 What is the structure of an HTML tag?
open tag – content - close tag
Open tag is a character or characters defining the tag function enclosed in angle brackets ()
Close tag contains the same characters as the open tag, preceded by a forward slash ()

6 What is an attribute?
an attribute is a field which contains additional information about an element

7 What is the anatomy of an HTML document?
the anatomy is the way elements are combined in order to generate a structured page

1 Like
  1. What is HTML?
    

It is a markup language, it defines the structure of the contents to be displayed on a web site
2. What is HTML used for?
It is used for web sites development. It is used to give shapes and put images nad many other things to our websites
3. Why are we learning HTML?
So we can later build a simple website to interact with our backend (smart contracts)
4. What is an HTML tag?
its an element within HTML language which specifies different things such as: the beginning and the end of a paragraph, which part is the head, which part is the body, which parts should be highlighted and many other things as well. Its a kind of a “wrapper” that makes the text inside of it, become a specific part within the structure of a web site
5. What is the structure of an HTML tag?

whatever

, in which whatever is written between the bigger than and less than signs is the tag, and the "whatever" that's written between the tags is the text I want to show 6. What is an attribute? the attributes contain extra informatino that you dont want to show in the content. 7. What is the anatomy of an HTML document?

This is the most basic anatomy

!DOCTYPE html>

My test page My test image ```
1 Like

1)HyperText Markup Language, is a code use to structure a webpage and its content.
2)HTML is used to define the structure of your content
3)We are learning HTML pretty much as a basic and easy introduction to programming, to give ourselves basic ideas of how code is structure.
4)A tag is what isolates the various parts of your website by identifying what they’re supposed to be, when the items begins and ends.
5)An HTML tag is made of for the opening and </name of the element> for closing
6)extra information about the element’s content, but you dont want this to be visible, maybe a title to the content which can help you find it much faster in the future.
7) The anatomy of the HTML document is pretty much its skeleton or structure from head to toes

1 Like

What is HTML?
A markup language

What is HTML used for?
Creating web pages in it’s simplest form.

Why are we learning HTML?
We need to know HTML to be able to display outputs from eg. Javaskript.

What is an HTML tag?
<> Used for grouping things

What is the structure of an HTML tag?

What is an attribute?
Contains extra information about the elements.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
1 Like
  1. HTML is a language about formatting info on the internet.
    2 The language is used to define instructions and assign the way different items look and feel on a webpage.
  2. To learn the basics so we can take a deeper dive into programming and learning about crypto and possibly make simple sites and interact with various crypto sites using the knowledge gained here.
  3. A tag is a function or description of using the html language to define various elements in certain ways.
  4. The starting and ending points are usually tags and the everything in between is usually the content or instruction in between also collectively known as the element.
  5. An attribute is similar to an instruction on where to and how to do something.
  6. Anatomy usually consists of lists, headers, content, pointers and various other objects within the body and framework of the html body languge.
1 Like
  1. HTML is a markup language.
  2. HTML is used for basic instructions to input various information on webpages.
  3. We are learning HTML to get a foundational understanding of editing code so we have a better grasp of other programming languages.
  4. A HTML tag is an element used to identify different instructions to create the flow and structure of the information.
  5. < > = open </> = close
  6. An attribute is background information which references the element.
  7. The anatomy of a HTML document is the entire content from start to finish (skeleton)
1 Like