HTML Reading Assignment

  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    HTML is the code that is used to structure a web page and its content.

  3. Why are we learning HTML?
    So we can understand and create static websites.

  4. What is an HTML tag?
    tags are used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, and can make font bigger or smaller, and so on

  5. What is the structure of an HTML tag?
    In most cases there is an opening and closing tage eg

    Text

    to indicate where a new paragraph begins.
  6. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content. The class attribute allows you to give the element an identifier that can be later used to target the element with style information and other things.

  7. What is the anatomy of an HTML document?

Initial HTML page Firefox  logo
1 Like

What is HTML?

HTML is a markup language used mostly for browsers,

What is HTML used for?

It formats and arranges the text for display as a web page.

Why are we learning HTML?

This is the basis for a web page, and we will build on that.

What is an HTML tag?

This is a marker that defines where a tag start and ends, it is enclosed in “<” and “>”.

What is the structure of an HTML tag?

The structure would commonly look like - opening tag , optional attribute , content , closing tag

What is an attribute?

attributes adds more information about the tag.

What is the anatomy of an HTML document?

Copying it from the text:

2 Likes

What is HTML?

  • HTML(Hyper Text Markup Language) is a markup language used to represent content as a webpage or structure web page content.

What is HTML used for?

  • HTML used to structure the webpage content. like, adding images, adding text content as paragraph or Bullet points.

Why are we learning HTML?

  • We are going to use this as one of several tools/framseworks to build web interface or a dapp interface to interact with blockchain

What is an HTML tag?

  • A HTML tag simply holds the content to represent in a particular manner. for example

    represents the content in it as a ‘paragraph’ similarly different HTML tags has different meanings.

What is the structure of an HTML tag?

  • Content goes here

What is an attribute?

  • Attributes contains extra information about elements which you don’t want to appear in actual content.

What is the anatomy of an HTML document?

  • <!DOCTYPE HTML>
      <html>
          <head>
                <Title> My web Page</Title> 
         </head>
         <body>
           <img src="/image/fun.pg" alt="image">
         </body>
    </html>
1 Like
  1. HTML stands for Hypertext Markup Language.

  2. HTML is used for the basic creation of all website formatting, layout, and information that will be presented to viewers across the internet. It is the structural language in which creates a basic outline of a webpage.

  3. We are learning HTML for the purpose of being able to demonstrate the dAPPS and programming capabilities that we learn throughout this course. Using HTML will allow us to visually see the creation of our projects in the course compared to trying to theoretically understand the language and effects.

  4. An HTML tag is used to indicate to the text editor what our structure is and what data should be displayed, linked, etc. Whether we want a new header, paragraph, image, video, etc. and tags help us communicate our information that we wish to have applied to our webpage.

  5. The structure of an HTML tag is an opening tag (< tag >) followed by content we are adding to the tag and then finally a closing tag () which wraps the information between the tags to create the element.

  6. An attribute is additional information about an element that we don’t want to appear to viewers in the actual content. Also assists in setting an identifier to an element for future styling/scripting purposes.

  7. The anatomy of HTML is individual elements that are combined to form the entire HTML page.

!DOCTYPE html

html

   <head>
       <title> This is the title of the tab </title>
   </head>

   <body>
        <p> This is a paragraph </p>
   </body>

/html

** A simple outline of what the anatomy of HTML looks likes.

1 Like

HTML Class assignment

What is HTML?Hypertext Markup Language, a standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects on World Wide Web pages.
What is HTML used for? Short for Hypertext Markup Language, the authoring language used to create documents on the World Wide Web.
Why are we learning HTML? So that we have a way to communicate what we have learned about the blockchain to the web.
What is an HTML tag?< a > A tag defines a hyperlink, which is used to link one page to another.
What is the structure of an HTML tag? Tags usually come in pairs such as < a > < a/ >
What is an attribute? An attribute modifies the functionality default element type, and - or creates functionality of element type unable to function without the attribute.
What is the anatomy of an HTML document? Root Element, Head Element, Meta Tags, Charset, Description/meta tag/Author, Title, Links and Scripts, Body Element.

<  !DOCTYPE HTML>
< html lang="en" xml:lang="en">
< head>
< meta charset="utf-8">
< title>Cool ICO</title>
< meta name="description" content="stuff about ICO">
< link rel="stylesheet" href="style.css">
< script src="js/jquery.js"></script>
< /head>
< body >
< !-- Page Content -- >
< /body>
< /html>
1 Like

1.Hypertext markup language
2.Language used to structure, edit and present text files
3.It would allow us to better understand how to present text and understand the frontend side of development better
4.It indicates to the text editor the structure of and how the text should be presented
5.Opening tag, content, closing tag
6.Additional information about a tag which won’t appear in the actual content
7.Doc type, head, body

1 Like
  • What is HTML?
    Hypertext markup langague
  • What is HTML used for?
    simplify process highlight words and determine structure
  • Why are we learning HTML?
    so we know how websites are structured
  • What is an HTML tag?
    Start and end of element
  • What is the structure of an HTML tag?
    opening tag and closing tag
  • What is an attribute?
    Contains additional information that you dont want to appear
  • What is the anatomy of an HTML document?
1 Like

1-The HTML is a Hyper Text Markup Language .
2-The HTML is used to structure the web page in your website , with HTML you organize where and how your paragraph , images , tables , columns and more are in your page.
3-We learning HTML , because our front end of our project is going to be always a website that the user use to contact our back end the blockchain. Something like the user interface to get into the blockchain.
4-The tag in HTML is something like the name of each element we have in our web page.
5-The structure of the HTML tags are opening tag name like and closing after our content like. Some tags like tag don t have their closing partners .
6-All tags can have or not attributes that gives special properties to that tag like font size , color ,style or more.
7-The anatomy of an HTML document is something like this

1 Like

1- Hypertext Markup Language (which is not a programming language)

2- Used to define the structure of your content and let it appear in certain way like making your font BOLD or italic and also can show an image hyperlink as a picture on your page.

3- We need to learn it to be able to complete a project on blockchain, like building a static website and show how it works on the blockchain.

4- It’s the consist that starts or ends in any element which is wrapped by angel brackets

5- opening tag <> then closing tag </>

6- it is the extra information define the tag and it can be used to add the style on the content

7- Contains all the HTML elements to show you the full result as in below:

 <!DOCTYPE html>
<html>
  <head>
   <p> The Course </p> 
  </head>
  <body>
   <p> be updated always and learn more as long as you are alive </p>
  </body>
</html>
1 Like
  1. A language to describe how web pages should be rendered in a browser.
  2. Show content and applications in a web.
  3. This is the basics for user interfaces.
  4. One of the words in the language to express something.
  5. <begin> </begin> <!-- a tag starts and ends with <> you end a tag with </> -->
  6. An attribute is used to attach metadata to a specific node.
    7. <html><head /><body /><html/>.
1 Like

What is HTML?
It is a markup language for web pages.
What is HTML used for?
Developers use it to structure content so that it presents data or allows desired behaviour in a way designed by the developer.
Why are we learning HTML?
Because it will allow us to create smart contracts that interact with web pages.
What is an HTML tag?
It is the tag that we wrap around an element to show where it starts and ends.
What is the structure of an HTML tag?
Opening tag <> and the closing tag </>
What is an attribute?
Attributes contain extra information that we do not want to appear in the content.
What is the anatomy of an HTML document?
57%20pm

1 Like
  1. It’s not a programming language. It is a Hypertext markup language - Hypertext refering to the standard HTTP protocol.
  2. It is used to markup a webpage on top of some browser, that is, it integrates the use of a browser which can be seen as doing a lot of the heavy lifting.
  3. HTML is one way of connecting any platform built to the real world - think having a webpage which communicates with a blockchain or some decentralised technology.
  4. It encompasses a HTML element, so in that sense, it is needed to define any element.
  5. A tag is composed of an opening tag and a closing tag, which differentiates itself from an opening tag with a / . An opening tag can contain an attribute.
  6. An attribute is a characteristic of a page element
  7. A HTML document is composed of elements, which in turn are composed of tags, attributes, and content.
1 Like
  1. HTML is a markup language
  2. HTML is used to make the structue of your website.
  3. We are learning HTML to learn the basics of how functions work.
  4. A HTML tag is an element in the website that starts with an opening <> and ends with an ending </>
  5. The structure of an HTML tag is like a showed above here: <>This is my website</>
  6. Attributes contain information about the element that you don’t want to appear in the content.
  7. Don’t know how to explane this question… i read the part about the anatomy of an HTML but don’t understand what they mean by it… (i will learn :wink: )
1 Like
  1. HTML= a code to structure webpage and its content
  2. It is used as a markup to define the structure of the content
  3. We learn so that we understand its anatomy to build a web content
    4.HTML tags are opening and closing markers for text
  4. for opening and

    for closing
  5. Attributes are structure used to targets elements
</html

In brief it is </html
Entire web structure

1 Like

answers:
1.a kind of makeup language for test in webpage.
2.used for the makeup of test content in webpage.
3.HTML is the basis of JavaScript,and JaveScript will handle test content in foramt of HTML on top of explorer.
4.marks of presentation or functionanliy of test content in webpage.
5.combinations of attributes and elements with the sturcture of nesting and wraping.
6.purpose to mark or complemment some kind of functionality under the sturcture of tag.
7.anylasis of document from tag ,element,and attribute level.

1 Like

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

  • What is HTML?
  • What is HTML used for?
  • Why are we learning HTML?
  • What is an HTML tag?
  • What is the structure of an HTML tag?
  • What is an attribute?
  • What is the anatomy of an HTML document
  1. HTML is an acronym for: hypertext markup language.
  2. It is used for creating web pages.
  3. We are learning HTML so that we can create simple web pages to augment smart contract applications, perhaps.
  4. A HTML tag has angled brackets and encloses an element name command.
  5. The structure of an HTML tag: < > and sometimes a closing tag </>
  6. An attribute modifies or adds information to an element.
  7. An HTML document begins with the element then should add a meta language element and a body element with certain detailed nuance and wrap the entire command sequence within and …or something like that.
1 Like

What is HTML?
Hypertext Markup Language :sunglasses:

What is HTML used for?
Code for structuring websites

Why are we learning HTML?
Because it’s basic, universal, and because it will help us understand how a decentralized web would be different/similar in development.

What is an HTML tag?
A set of brackets at the beginning and end of of the content to define an element.

What is the structure of an HTML tag?
open:
close:

What is an attribute?
Extra information to add to an element that is not part of the content.

What is the anatomy of an HTML document?

Example Example
1 Like

What is HTML?
A markup language. Not compiled, therefore interpreted same as Java script, powershell or VB script.
What is HTML used for?
Creating web pages
Why are we learning HTML?
To present information in a human friendly format ( and to make nicer sharepoint wiki at work :wink: )
What is an HTML tag?
Tags are elements in enclosed in angled brackets
What is the structure of an HTML tag?
Opening tag: Opening brackets - Element - Closing brackets i.e.:


Closing tag: Opening brackets - Element - /Closing brackets i.e.:


What is an attribute?
An attribute is additional info that is specified with the opening tag.
attributes don’t show on the web pages as text.
i.e.:<a href="https://www.mozilla.org/en-US/about/manifesto/">Mozilla Manifesto</a>

What is the anatomy of an HTML document?

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page title</title>
  </head>
  <body>
    <p>Here goes the body of the page</p>
  </body>
</html>
1 Like

1: HTML is a markup language
2: it is for making a website structure
3: To know how websites are structured
4: Start and end of element like: blabla
5: The opening tag - Some content - closing tag
6: Attributes contain extra info about the element that you don’t want to appear in the content.

7: <html><head></head><body></body></html>

2 Likes
  1. Hypertext Markup Language -
  2. Used for defining content areas within a .html document (web page)
  3. Using HTML to build basic (static) web pages normally accessible from a web server over the internet
  4. The tag encapsulates the HTML content within the opening and closing tags
  5. An opening tag includes the element name, attribute/s, attribute value/s (and more if necessary), whilst the closing tag includes only the element name preceded by a forward slash / (not relevant to self-enclosing tags)
  6. An attribute adds additional characteristics to the tag (often for the purpose of styling the content)
  7. Doctype declaration, html opening tag, head section including meta tags title tags etc, opening of page content, closing page content, and closing the HTML document
2 Likes