HTML Reading Assignment

  1. What is HTML?
    Basic coding language used with the first web pages.

  2. What is HTML used for?
    Build basic web pages

  3. Why are we learning HTML?
    So we can have the basics when go and learn javascript.

  4. What is an HTML tag?
    The tag is used for opening and closing an element.

  5. What is the structure of an HTML tag?

<p>    </p>
  1. What is an attribute?
    Atributes gives extra information about an element.

  2. What is the anatomy of an HTML document?

<!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>
1 Like

What is HTML? HTML is Hyper Text Mark Up Language
What is HTML used for? HTML is used to structure the content of websites.
Why are we learning HTML? Because HTML renders what we see on a webpage. Without it, content would not be displayed in readable text and images for the user.
What is an HTML tag? An HTML tag identifies webpage content for a browser and determines how content will be presented to the user…
What is the structure of an HTML tag? An HTML tag is bracketed with backslah preceding the closing bracket, i.e. < />
What is an attribute? An Attribute is part of an element and has a value such as an image or text.
What is the anatomy of an HTML document? The anatomey of an HTML document is the Header and body of a page.

1 Like
  1. HTML is is a markup language that defines the structure of your content.
  2. To build a website structure.
  3. To have a base to connect our dapps with the website.
  4. Determines the type of content being displayed.
  5. A tag starts with an opening , has usually an attribute inside and finishes with a closing
  6. Attribute provides extra information for the element.
  7. doctype> - sets rules for the HTML page to follow
    html> - wraps the contents on the page
    head> - contains page info that is not content. (keywords, page description, css, character set,etc…)
    body> - contains the contents of the page ( text, images, video, etc…)
    meta charset=“utf-8”> - character set of the document, to handle textual content
    title> - sets the title of the page, which appears in the browser tab
1 Like
  1. Hyper Text Markup Language used to structure a web page and its content

  2. Defines the content on the internet, proper formatting of text and images so things can be displayed on screen as coded

  3. So we can connect backend/front to the blockchain

  4. An opening/closing, content, element. Tells the browser that it is a HTML document, defines those different parts of the HTML document

  5. start starts with opening and has closing

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

  7. Individual elements combined to form an entire HTML page.

1 Like

1. What is HTML?

HTML stands for Hyper text Markup Language and it is not a programming language, it is a markup language that defines the structure of your content.

2. What is HTML used for?

HTML is the code that is used to structure a web page and its content. 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.

3. Why are we learning HTML?

HTML is the basic language to set up a page and it helps better understand and dive into other languages and blockchain build up.

4. What is an HTML tag?

The tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller and so on.

5. What is the structure of an HTML tag?

The structure of an HTML tag is Actually combinbed from two parts.
The opening tag < p > : This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets .
The closing tag < / p > : This is the same as the opening tag, except that it includes a forward slash before the element name.
Element is the opening tag, the closing tag and the content together.
The content is what we put between the tags of the element.
For example < p > TextTest < / p >

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 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>

The < html > element wraps all the content on the entire page and is sometimes known as the root element.
The < head > element acts as a container for all the stuff you want to include on the HTML page that isn’t 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 search results, CSS to style our content, character set declarations and more.
< meta charset=“utf-8” > 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 < title > element sets the title of your page, which is the title that appears in the browser tab in which the page is loaded in. It is also used to describe the page when you bookmark/favourite it.
The < body > element. This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks or whatever else.

Everything to start on webpages from this source taken https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics

1 Like
  1. HTML is a Hyper Text Markup Language.
  2. It acts as a front end user interface, presents basic information, but can be dynamically powered by javascript or other languages to become more engaging.
  3. Because it is a programming fundamental, and it will help when it comes to building Dapps later on.
  4. A HTML tag is a hidden keyword that defines what type of page it is, and tells the page how to present or format information.
<!DOCTYPE HTML>
      <html>
        <head>
           <title>Title of the document</title>
        </head>
        <body>
           The content of the document......
        </body>
      </html>
  1. Attributes provide additional information about HTML elements, such as…
    name_of_something = “Jason”
    or…
    image_address = “my_folder/picture.jpg”
  2. It looks something like this:
<!DOCTYPE HTML>
<html lang="en" xml:lang="en">
 
<head>
 <meta charset="utf-8">
 <title>Anatomy of a HTML file</title>
 <meta name="description" content="A Very Basic HTML5 Anatomy example">
 
 <link rel="stylesheet" href="style.css">
 <script src="js/jquery.js"></script>
</head>
 
<body>
  <!-- Page Content Goes Here -->
</body>
</html>

Edit: @JasonB , add code into a Preformatted text “```” to be able to display it on the page

1 Like
  1. HTML Hyper text markup language
  2. It’s the code used to structure a webpage and its content.
  3. It is the base for being able to build a webpage
  4. Opens ands closes the content
  5. <p> and </p>
  6. extra information about the element you don’t want to appear.
  7. The doctype HTML, html, the head, meta, title, body, img

Edit: @sargold put your code into a Preformatted text `code` to be able to display it in on line

1 Like

@gabba Thankyou, I did wonder how to stop it activating :+1:

1 Like

I think number 5 should be what is the form of a tag and not what is the main form of an html page :nerd_face:

1 Like

[quote=“ivan, post:1, topic:3055”]

  • What is HTML?
    Hyper Text Markup Language
  • What is HTML used for?
    configuring/organizing the text and image content of a website
  • Why are we learning HTML?
    So that we can integrate the backend (blockchain apps) with the front end web based user interface for the blockchain dapps we might develop.
  • What is an HTML tag?
    it is used as the opening/closing parts of an HTML element, and defines what type of element.
  • What is the structure of an HTML tag?
    opening tag with possible attribute, content, closing tag
  • What is an attribute?
    contains extra information about the content that you don’t want shown as actual content. Usually some sort of defining characteristic for the content.
  • What is the anatomy of an HTML document?
1 Like
  1. Why are we learning HTML?

To gain understanding of ‘front end’ programming

  1. What is an HTML tag?

An HTML tag is used to open and close an element

  1. What is the structure of an HTML tag?

An HTML tag is enclosed with angle brackets and a value is contained within

. A closing tag has a forward slash before the value inside the angle brackets i.e.

.
  1. What is an attribute?

An attribute is a value you want to give the content that is not readable on the website i.e. text size, bold, italics, web link ect

  1. What is the anatomy of an HTML document?

A HTML document begins with

Document type

HTML wrap open

Head wrap open

Character set

Title

Head wrap close

body wrap open

content

Body wrap close

HTML wrap close

:blush:

1 Like

What is HTML?
Hypertext Markup Language
What is HTML used for?
Code that is used to structure a web page and its content
Why are we learning HTML?
We learn it because it is the basics of creating a website so that we can interact with smart contracts for example.
What is an HTML tag?
HTML tags are at the center of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.
What is the structure of an HTML tag?
A tag starts with an opening , has usually an attribute inside and finishes with a closing
What is an attribute?
An attribute 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?
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. Hypertext Markup Language
  2. It is a language used to curate how the content of a functions.
  3. To show us the foundation of programming languages.
  4. HTML tags are the formatting tools for HTML. A HTML tag consists of the tag name in angular brackets.
    5.Angular bracket, tage name, angular bracket,content,angular bracket,forward slash,tag name, angular bracket.
  5. Attribute is a variable to be used by the tag.
  6. "closing tags"
1 Like

1 and 2: It means Hypertext Markup Language. It’s used to make a structure of the web pages.
3. Because we’re going to create websites that interact with blockchains.
4. It is a markup that is not visible on website (just in code) and tells compiler how to menage with content of website.
5. It begins with (I don’t know how to put < :confused:) name of tag> opening and it must be closed with </name of tag>
6. Attributes are used to make content looks or behave in certain way.
7. The structure of HTML file is divided in two sections:

This part is made in HTML:

  1. HEAD - where we put information like website title and text coding format. This part is invisible on the page.
  2. BODY- where we put the content of our website that is of course visible :)
1 Like
  1. It’s a code.
  2. It is used to create web pages.
  3. So we can spread information over the internet.
  4. Tags make the parts of content appear in a certain way.
  5. Two opposed angle brackets and between them the name of the element,

    .

  6. An attribute contains extra information about element.
  7. An HTML document begins with DOCTYPE html then html, head, body and it ends with html
1 Like
  1. HyperText Markup Language

2.HTML is a markup language to structure the content of a webpage.

  1. So we can make a basic website where we can make an actual working communication with the blockchain.

  2. a tag is the part where you put the information in what you want the content inside of it to look like.

  3. opening tag, content,closing tag, dot comma

6.an attribute can be added to the name of the element for extra information. like class to late paraphrase to that element.

-The doctype
-html
-head
-meta charset utf8
-title
-body

1 Like
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? A code that is used to structure a web page and its content.
  3. Why are we learning HTML? Its best to have a foundation of knowledge that you can build on
  4. What is an HTML tag? It shows you the beginning and end of the content in the element.
  5. What is the structure of an HTML tag? The name of the element wrapped in angled brackets.
  6. What is an attribute? It contains extra information about the element that are not intended for the
    user to see.
  7. What is the anatomy of an HTML document? A heading and a body that contains content.
1 Like
  1. A mark up language(not a programming language),defining structure of your content.
  2. To structure a web page and its content.
  3. The basics of how to structure a webpage so it can interact with smart contracts.
  4. It shows where the element starts and ends.
  5. The opening tag; with the name of the element wrapped in opening and closing angle brackets.
    Closing tag; same as opening but with a forward slash before elements name.
  6. Contains information about the element that shall not appear in the actual content.
  7. doctype (to make sure your documents behave correctly)
    (root element, wraps all content)
    <head) (element acts as a container for all stuff on the html page)
    (to handle any textual content, language, style, characters)
    My title


    < img src=“images/firefox-icon.png” alt=“My test image”>
    (body contains all content to be shown to web user)
1 Like
  1. HTML is not a programming language, it is a markup language that structure of you content.
    2.HTML is use for displaying info on the computer screen.
    3.The reason we are learning about HTML to have a better understand and knowledge to develop a website.

4.HTML tag is a word and a image that hyperlink in somewhere else and that can make text font smaller or bigger.

5.A structure of a HTML tag is a <open tag> and </close tag>

6.Attribute is a properties in the content include inside the tag.

7.Anatomy of an HTML document isa form of HTML. For example: <money>…..</money>

<coin>……</coin>

Edited by @ivga80 : Hi, If you use the ‘preformatted text’ button in the editor, your code will show and not hide. :wink:

1 Like

1- is a markup language that defines the structure of your content

2- used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way

3- To learn basic programming that will allow us to interface with Dapps

4- can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on

5- The opening tag, The closing tag, The content, The element

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

7- [quote=“Danny1, post:11, topic:3055”]
< !DOCTYPE html>
< html>
< head>
< meta charset=“utf-8”>
< title>My test page
< /head>
< body>
< img src=“images/firefox-icon.png” alt=“My test image” >
< /body >
< /html>
[/quote]

1 Like