HTML Reading Assignment

What is HTML?
Hypertext Markup Language, a markup language.

What is HTML used for?
It defines the structure of your webpage.

Why are we learning HTML?
It’s basics in programming and we’ll need that later for creating stuffs.

What is an HTML tag?
A html tag states wether a element is beginning or closing.

What is the structure of an HTML tag?
It has a opening tag wrapped in opening and closing angle brackets. The closing tag is also wrapped in opening and closing angle brackets including a forward slash before the element name.

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

What is the anatomy of an HTML document?
< !DOCTYPE html> — doctype
< html> < /html> — the element
< head> < /head> — the element
< meta charset=“utf-8”> - this element sets the character set
< title> < /title> — the element
< body> < /body> — the element

1 Like
  1. What is HTML? HTML is not a programming language, it is a markup language that defines the structure of your content. HTML is made up of elements, An Opening Tag, The Content, The Closing Tag, and The Element itself.

  2. What is HTML used for? HTML is used for making static websites of texts, images, and links.

  3. Why are we learning HTML? We are learning HTML to understand and learn the basics of designing a web page.

  4. What is an HTML tag? A tag is a piece of code that has an open and close
    Ex. kfgfgajfba The tag can make a code bigger or smaller, image hyperlink to somewhere else, italicize words, and so on.

  5. What is the structure of an HTML tag? The structure is: An Opening Tag, The Content, The Closing Tag, and The Element [everything all together].

  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 is the required preamble. Just needed to make sure the document behaves correctly. ---- The element. This element wraps all the content on the entire page and is sometimes known as the root element ---- The element. This element acts as a container for all the stuff you want to include on the HTML page that isnt the content you are showing to your page's viewers. This includes things like keywords and a page description that you want to appear in the search results, CSS to style our content, character set declarations, and more. - This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of 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. ---- The element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it. ---- the element. This contains all the content that you want to show the web users when they visit your page, whether that's text, images, videos, games, playable audio, or whatever else.
1 Like
  1. Hypertext Markup Language
  2. HTML is how you define the structure of how the content appears on an internet page
  3. We are learning HTML because the is a main computing language that allows you to build and develop websites on the internet and it gives you a good grounding for learning blockchain languages such as Solidity.
  4. Tags encloses any content and it contains element within it.
  5. If the Element is P then the structure of a tag is

    content

  6. An Attribute is something that does not appear directly on the page of the viewer, It is hidden from them but it gives extra information about the element.
</body
1 Like
  1. What is HTML? Hypertext Markup Language is the code used to structure a Web page and its content.
  2. What is HTML used for? HTML is used to enclose or wrap certain content on your web page so it act or appears a certain way. It makes the web page look and do what you want it to do.
  3. Why are we learning HTML? To understand the basic of how to set up a web site and to know how to make a web page do what we want it to do.
  4. What is an HTML tag? A HTML tag is used to enclose content, it opens and closes and forms part of the element.
  5. What is the structure of an HTML tag? Opening tag <?> the content closing tag this all forms the element.
  6. What is an attribute? Attribute contain extra information about the element that doesn’t appear in the content.
  7. What is the anatomy of an HTML document? !DOCTYPE html, html, head, title, body
1 Like
  1. What is HTML?
  • it is a markup language that defines the structure of your written code on website.
  1. What is HTML used for?
  • it allows us to create many things on the website… paragraphs, headings, links…
  1. Why are we learning HTML?
  • HTML is the basic structure of the website and we are going to build/learn JavaScript and later on Solidity language.
  1. What is an HTML tag?
  • it is a specific command code like for example

    stands for paragraph
  1. What is the structure of an HTML tag?
  • the main structure is: html, head and body… each of this tags needs to have <> and endings </>. The whole code is beetwing (html). Bellow I have written first code in html, with title hello world and inside body with the quote
Hello world

Hi this is my first line of code!

  1. What is an attribute?
  • are special words used inside the opening tag to control the element’s behaviour. HTML attributes are a modifier of an HTML element type.
    copied from wiki
  1. What is the anatomy of an HTML document?
  • the document type - for the correct standard (!DOCTYPE html)
  • selected type of language - en (html lang="en)
  • then head
  • and the last is body
  • each of the tags needs to have a correct ending
1 Like
  1. Hypertext Markup Language, it defines the structure of the content.
  2. HTML is used to structure/develop the content of a webpage.
  3. To understand the basics of coding, how to read and create actionable actions.
  4. A tag is a type of element. Defines the content
  5. < x> to to open and </x to close
  6. Additional information about the element that is not seen.
  7. Has 2 elements, the head and body
<html <head....</head <body....</body </html These are the elements that form a basic page.
1 Like
  1. Hypertext Markup Language

  2. It is used to markup language for documents designed to be displayed in a web browser.

  3. To create a foundation on which we can connect with decentralised applications.

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

  5. Wrapping different parts of the content in tags to make it appear a certain way such as : Opening and closing

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

  7. A method used to wrap the content to form a more structured version of code

2 Likes

What is HTML?
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.

What is HTML used for?
Browsers use html to display web page for users.

Why are we learning HTML?
Most interaction with blockchain technology happens in a web browser.

What is an HTML tag?
HTML tag defines element type, its start and end.

What is the structure of an HTML tag?
Tags are between <>. Element start is marked with opening tag:
Element end is the same except it has / in front of it:

What is an attribute?
Attributes contain extra information about the tag that you dont want to appear in the actual content.

What is the anatomy of an HTML document?
Anatomy combines individual elements to form a HTML page.

1 Like
  1. HTML is not a programming language, it is the code that is used to structure a web page and its content.
  2. It is used with documents designed to be displayed in a web browser.
  3. It’s useful to be familiar with how HTML works before we start learning about JavaScript.
  4. In HTML, a tag is used for creating an element. For example

    for paragraph.

  5. The opening tag consists of the name of the element wrapped in opening and closing angle brackets. The closing tag is the same as the opening tag, except that it includes a forward slash before the element name.
  6. Attributes contain extra information about the element that we don’t want to appear in the actual content.
  7. doctype, the html element, the head element, charset, the title element, the body element.
1 Like

1.HTML stands for Hyper Text Markup Language which describes the structure of Web pages using markup. Hypertext means that it is the text which contains link to other texts
2.
a) Every web page you see on the Internet is written using HTML code.

  • b) HTML ensures the proper formatting of text and images so browser may display them as
    they are intended to look.
    c) HTML also provides a basic structure of the page.
    3.It’s good to learn HTML as a foundation for web development and blockchain development
    4 * A tag is what makes the browser recognise what type of content it has to show and in what way.
    5.A tag starts with an opening , has usually an attribute inside and finishes with a closing
    6.An attribute specifies some additional properties regarding the content included inside a tag
    7.An HTML page always starts with the tag , it has and where all the info needed to the website that won’t appear as a content (title, descriptions, seo, scripts and so on), and finally the where all the content lies. All these tags need to be closed
1 Like
  1. Html is a markup language which defines the structure of the content.

  2. It is the code to structure the webpage and its content.

  3. We are learning the HTML to understand the basics of building the webpage.

  4. Html opens and closes the content so that the webpage appears always the same without any changes.

  5. The HTML structure consists of opening tag (< >), content and closing tag (</ >) and element.

  6. Attributes contain extra informations about element which is not appeared in the actual content.

  7. It contains doctype, root elements html element, header element, character set, title element and body element. All the individual elements are combined to form an entire HTML homepage.

1 Like
  1. What is HTML? Hypertext MARKUP language
  2. What is HTML used for? For structuring web pages
  3. Why are we learning HTML? To understand basic language used for web pages
  4. What is an HTML tag? Tag is used for creating element
  5. What is the structure of an HTML tag? openingtag closingtag
  6. What is an attribute? Editors note for element (not visible content)
  7. What is the anatomy of an HTML document? Following elements :DOCTYPE, HTML, HEAD, META CHARSET, TITLE, BODY
1 Like
 <!DOCTYPE html>
<html>
<head>
<title>
  friday 13th
</title>


    <script>


    var a = 2;
    var b = 5;
    var "sum = a + b";


    </script>

</head>


<body>
    </body>

    </html>


Like this?
Great Thanks Malik,
Slowly I am learning

  1. What is HTML?
    HTML stands for HyperText Markup Language, it is used for the frontend of the website. For the customer of the website.

2.What is HTML used for?
It is used for the frontend of the website.

3.Why are we learning HTML?
We are learning this language because we need the basics of creating a webpage, also to be able to interact in the future with our smartcontract ( not sur about this one)

  1. What is an HTML tag?
    An HTML tag representents the beggining and the end function like for a paragraph we would write it down like this

    this course is going to be hard :slight_smile:

5.What is the structure of an HTML tag?
The stucture for an HTML tag would be :

Reading assignement

6.Elements can also have attributes, attributes contain extra information about the Elements
It is the characteristic of the HTML tag. For example the heading of my text on the question above, the element was heading.

7.What is the anatomy of an HTML document?

My test page My test image
1 Like
  1. Hyper text markup language.
  2. Building a web page.
  3. The first building block to learning to code.
  4. Create elements on a web page.
  5. This states where the element begins or starts to take effect.
  6. Extra info about the element that does not appear in the content.
  7. Opening html-tag, header and body element, closing html-tag.
1 Like
  1. What is HTML?
    HTML (Hyper Text Markup Language) is not a programming language but a markup language used to create structure for content.
  2. What is HTML used for?
    Structuring content on a webpage.
  3. Why are we learning HTML?
    HTML is the foundation for creating content on a webpage.
  4. What is an HTML tag?
    Tags enclose content and affect it to change it’s properties such as bold lettering etc.
  5. What is the structure of an HTML tag?
    content
  6. What is an attribute?
    An attribute contains extra info not included in the content that allows you to target the element.
  7. What is the anatomy of an HTML document?
    HTML begins with follwed by enclosing the head and body and other content.
1 Like
  1. hyper text markup language

  2. structuring a webpage and its content

  3. so we have a foundation to learn to code from. HTML is the most basic code to use to make a websit that we will use eventually to interact with our smart contract(s).

  4. An HTML tag is used to create an element

  5. The opening tag, the content, the closing tab and the element these make up the stucture of an
    HTML tag

  6. attributes contain extra information about an element that you dont want to appear in the actual content

  • Doctype
  • HTML
  • Head
  • Meta charset
  • title
  • body
2 Likes

What is HTML?
Hypertext markup language.

What is HTML used for?
A coding language for creating web pages

Why are we learning HTML?
So we can create a web page to put our java script code in that will display our blockchain smart contract in a way that viewers can interact with it.

What is an HTML tag?
An HTML tag is a bit o code that tells how something (a page, a paragraph, an image, a chart, etc) is displayed.

What is the structure of an HTML tag?
Tags come in pairs, an opening tag and a closing tag. All tags are bracketed with a greater than symbol and a lesser than symbol (<>). All tags have an element name in the brackets and the closing tag is the same as the opening tag but it is prefaced inside the brackets with a forward slash(/).
<p> This is a paragraph. </p>

What is an attribute?
An attribute modifies the element. Example color modifies font.
This is <font color="red">red</font> text.

What is the anatomy of an HTML document?
An HTML web page contains a head with a title and other elements in it, a body with various elements in it, and the whole thing is wrapped in a tag set that describes that it is an HTML page.
(here is an example)

<!DOCTYPE HTML>
<HTML>
<HEAD>
<title>My test page</title>
</HEAD>
<BODY>
<H1>Maiolica Painting</H1>
<H2> (by Gael Stirler)</h2>
<IMG src="http://gutenbergscribes.chivalrysports.com/paperborders/Foliage-step05.jpg" alt="test image" border="2pt", bordercolor="black">
<p>
<i>Maiolica is a style of painting ceramics where the bisqued vessel is coated with opaque white glaze and the design is painted on top using mineral pigments. During the glaze firing the minerals bond with the underlying white glaze to form a smooth colorful surface. 
</i>
</p>
</BODY>
</HTML>
2 Likes
  1. hypertext markuo langage
    2.describing websites in your browser
    3.to built a frontend website
    4.is a opening and a closing in a tekst
    5.


    6.a tekst you dont want to see
    7.close the introduction

1 Like