HTML Reading Assignment

1What is HTML?
Hypertext Markup Language
2What is HTML used for?
It the code to help structure websites with a list of bullet points or images
3Why are we learning HTML?
Building a website this will help how it will look and act for users who would visit your website.
4What is an HTML tag?
As someone who knows nothing about programming other answers if I’ve got my understanding incorrect.
There are like commands that highlight text with opening and closing tags e.g

then something.
To close it off you need to do this at the right place or you get something different using the same tag but with a forward slash

I believe there are loads of them but the command are the same Open <?> to close remembering the forward slash
5What is the structure of an HTML tag?
Think I covered this question 4
6What is an attribute?
You have an opening and closing tag and all together this is an element. inside this element you can have attribute for targeting later with style things and other stuff. I’ll guess I understand this later.
7What is the anatomy of an HTML document?
This wraps up the basics of the HTML elements starting with Doctype html you have your head elements and body elements
this bit I didn’t undertsand — this element sets the character set your document should use to UTF-8, which includes most characters from the vast majority of human written languages. Essentially it can now handle any textual content you might put on it. There is no reason not to set this, and it can help avoid some problems later on. think its importance.

Really enjoying this

  1. Hyper Text Markup Language - It is instruction text which defines the structure of a web page’s content.

  2. To make the content of a web page to appear or act in certain ways.

  3. It is the connection for the frontend (users) to the backend (smart contracts).

  4. Instruction text used for opening and closing elements.

  5. <? > content then close /? >
  6. Extra info about an element, placed within an element, that will not appear in the actual content.

  7. DOCTYPE, html, head, body, title

< p > and < /p > didn’t show on this

Think I’ve starting coding without realising lol

1 Like

Just spent the last 10 mins trying to sort out the same thing lol

  1. hypertext markup language
  2. give structure to your contest
  3. we need it for front end development for site for example
  4. everything we do in html is inside opening and closing tags. like text , images hyperlinks etc
  5. it starts with <?> opening tags and ends with closing tags(? is for example only)
  6. attribute contain extra information about element
  7. it is how everything should looks like in html document. rules of what goes where. like what you write in head, body title and so on

Good to know I’m not the only one lol

What is HTML?
HTML means Hypertext Markup Language, and is a code that can be used to build a web page with content.

What is HTML used for? HTML uses markup language in its root element form and makes web page content to appear or act a certain way.

Why are we learning HTML? HTML is a foundation for computer programing.

What is an HTML tag? A HTML tag is used for opening and closing of certain content.

What is the structure of an HTML tag? The four parts that structure an HTML tag consist of an opening tag, content, and closing tag. the forth part combines all parts as an element.

What is an attribute? an attribute is extra content inbeded into content.

What is the anatomy of an HTML document? individual elements make up the anatomy of an HTML code.

1- HTML stands for hypertext markup language, it uses a system of tags that can be used to “wrap” or enclose portions of content to make it look or act a certain way.
2- It is used to define the structure of a piece of content, such a s website.
3- Learning HTML is important because it will allow us to create simple websites that will act as the front-end to the dApps we will build in the future. It’s also a nice introduction to how programming works, for those unfamiliar.
4- An HTML Tag is the basic “building block” of HTML. There are many different tags, each has a different use-case, and together they make-up HTML as a tool.
5- The structure of the HTML tag is as follows: <tag_name>content</tag_name>. The first part “opens” the tag, and the second part (which consists of the same tag name and a “/” preceding it closes it. Not all tags need to be closed they are not all used to “wrap” something. An example is the img tag.
6-An attribute is used to define additional properties of an element that don’t necessarily need to be visible for the user. In the tag, the attribute “src” (source) is used to identify the source directory of the image being displayed.
7- We have 5 main elements:

  • a legacy requirement from the early days of HTML.
  • wraps the entire document, it's used to open and close the entirety of the content. Known as "root element"
  • is used to provide all the information about the content that isn't shown to viewers. These can include keywords or page descriptions that will be shown in search results, or character sets to be used in the document.
  • is where all the content shown to viewers of the page will be included. It's the bulk of any HTML document.
  • this is the "name" of the document. This name will be displayed on the browser's tab, for instance.

1.What is HTML?
Hyper-Text Markup Language

2.What is HTML used for?
To structure a web page and its content.

3.Why are we learning HTML?
HTML is one method of creating an entry point into a blockchain network.

4.What is an HTML tag?
A tag consists of an element, that encapsulates content within an opening <element> and closing </element> syntax.

5.What is the structure of an HTML tag?
<element>Content</element>

6.What is an attribute?
Attributes contain additional information about an element which does not need to be displayed within the web page.
<element attributename="attribute value">

7.What is the anatomy of an HTML document?
This is the combination of individual elements which form a complete web page.

In VSCode you can install the ‘Live Server’ extention.

1 Like

@ivan you for got about html validation in first section.
You sad about img tag and nothing sad about important attribute alt = ''
:blush:

You were close. Attributes contain extra information about the element that you don’t want to appear in the actual content.

1 Like
  1. HTML is a code to structure a webpage and its content (meaning, is a markup laguange)
  2. HTML is used to fabric the webpage that are viewed and used by users
  3. We are learning HTML so we can understand how Frontend of a website is made. With that knowleage we are able to properly insert smart contracts in the backend of the webpage (what is the goal of this task)
  4. An HTML tag is the root element (top level element) of the document (all other elements must be descendents of this element)
  5. the structure of an HTML tag is the folowing:
    <…> (for opening a tag)
    </…> (for closing a tag)
  6. An attribute is a characteristic of the element. Defines de conditions of how the element is formed.
  7. The anathomy of an HTML document is the following:
    -root element
    -head element (meta data and title element inside)
    -Body element (here is where you put images, links paragraphs lists, and other staff)
  1. Html is the code that we use for structuring our web sites
  2. It is used to build the skeleton of our pages in order to display the position of text, images, lists etc…
  3. We must learn it in order to put our content on our web pages
  4. Tags help browsers recognize what type of elements we wish to include in our page
  5. An HTML tag is usually a letter or group of letters that reside inside angle brackets
  6. Attributes provide extra information for the element
  7. It is made from different parts:
    a. root element
    b. head element (meta data and title element inside)
    c. Body element (here is where you put images, links paragraphs lists, and other staff)

Did the small challenge- and it worked!! moving onto images next!!

Our List!

  • Step One
  • Step two
  • Step Three

1, What is HTML?
HTML = (Hypertext Markup Language) is code that is used to make a website
2, What is HTML used for?
HTML is the basic language used to build a web page and its contents.
3, Why are we learning HTML?
So that I can build a website that interacts with blockchains and smart contracts
4, What is an HTML tag?
HTML Tags are part of the HTML anatomy which consist of opening and closing tags which indicate the beginning and end of the element.
5, What is the structure of an HTML tag?
The opening & closing tags with the content in-between form the element
6, What is an attribute?
Attributes are extra pieces of information that go in between the opening and closing tags that you don’t want to appear in the content
7, What is the anatomy of an HTML document?
The anatomy of the HTML document consists of the Head and the Body. The Head is what the webpage is displaying and the Body is all the content.

i knew that and i will be more detailed in my answers next time. thank you for catching that.

  1. HTML is the acronym for Hypertext Markup Language - it is therefore a markup language
  2. It is used to define the structure of the content in a website or app
  3. We are learning HTML so that we can know how to create an interface (the front end) for the smart contract we’ll learn further ahead
  4. An HTML tag is the name of the element on the page, and it states where that element begins (opening tag) and ends (closing tag)
  5. The structure of a HTML tag is, for opening tags: opening brackets, the name of the element, closing brackets (e.g.: <p>). For closing tags, it’s the same thing, but we also add a forward slash (e.g.: </p>)
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy of HTML document consists mainly of a html element that wraps all the content; a head element (where all the information about the page itself goes, but that won’t be displayed on the webpage); and a body element, which will include all the content we want to be displayed on our page.

thank you @SK69! I downloaded VScode and try it! it is really cool to see it on live server :slightly_smiling_face: but I am gonna stick with atom for now because i am getting use to it. maybe later i ll jump into VScode
Again many thanks!!

1 Like

Great answer.

Just to add to #3. I think we need to program an app so we’ll need to know HTML for the frontend.

Best with the course.