HTML Reading Assignment

  1. What is HTML?
    Hypertext Markup Language
  2. What is HTML used for?
    HTML is used to change and structure the appearance or action of a website.
  3. Why are we learning HTML?
    To know how to build a frontend of an application.
  4. What is an HTML tag?
    It defines the characteristics of the contents.
  5. What is the structure of an HTML tag?
    opening tag and closing tags .
  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
    head
    meta chartset
    title
    body
1 Like
// What is HTML?
HTML is a Markup Language that defines the structure of your content.

// What is HTML used for?
Basic structure
Basic text-level semantics
Hyperlinks
Images & multimedia
Scripting & styling
Embedded content
Forms
Data representation
Internationalization

// Why are we learning HTML?
HTML — Structuring the Web

// What is an HTML tag?
Tag - Define an element
A tag is used for creating an element.
If attributes are not mentioned, default values are used in each case.

// What is the structure of an HTML tag?
The opening & closing tag: name of the element, wrapped in opening and closing angle brackets. states where the element begins or starts to take effect.
The content: content of the element, text, form, img etc
The element: The opening tag, the closing tag, and the content together comprise the element.

// What is an attribute?
The attributes : Attributes 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?
Basic <!DOCTYPE html><html><head></head><body></body></html> + Tags in between <p><form><button><table>.....

<!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
  1. HTML stands for Hypertext Markup Language and is used to provide structure to webpages.
  2. HTML is used to create webpages on the Internet or Intranet.
  3. We are learning HTML in order to create webpages for Blockchain.
  4. An HTML tag is a word or letter that indicates the type of content and how it is to be treated.
  5. The structure of an HTML tag includes a < tag name > content </ tag name>
  6. An attribute lies within an element and designates an attribute applied to the element along with a
    specific value; however, it’s text in not included and element.
    7)The anatomy of an HTML document consists of:
DOCTYPE
<html>
  <head>
     <title>
     <meta>
 </head>
  <body>
      ...content...
  </body>
</html>
1 Like
  1. A language that is used to structure your website.

  2. To write every website you see on-line.

  3. To be able to create your own website without the need of third parties.

  4. It is what marks the start of an element. the tag basically pings that whatever is inside it is in HTML format, but there are many other tags, such as

    , which indicate a paragraph.

  5. content

  6. They are additional information about an element that do not appear in readable format to your audience.

  7. , which indicates that the document/site is in HTML, , which gives your website its title and subtitle, and , which contains the content of your website.
1 Like
  1. It is a markup language used to structure website pages
    2.It is used to structure a webpage, position of text, images, links
    3.I believe we are learning HTML to understand the basic structure of building a webpage, before we can understand more in depth languages like JS
    4.A tag is a the opening and closing identifiers of a element
    5.Opening tag/ “content”/ closing tag forms a HTML element
    6.A element is extra information about the tag it to give you more information but you do not want it displayed in the content on the page
    7.The structure of the HTML document when all the elements are put together to produce a functioning webpage
1 Like
  1. Hypertext mark up language
  2. For website content
  3. For Interface
  4. For creating an element
  5. opening,content,closing tag
  6. contain extra information about element.
  • Doctype
  • HTML element
  • head
    -meta
    -title
    -body
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. What is HTML?
    HTML is a markup language that defines the structure of your content. HTML consists of a series of elements which you use yo enclose, or wrap, different parts of the content to make it appear a certain way.

  2. What is HTML used for?
    Hypertext Markup Langague is the code that is used to structue a webpage and its content.

  3. Why are we learning HTML?
    HTML is basic. You might have to make adjuments when the HTML editors put unnecessary code and do your own HTML coding in case they crash etc.

  4. What is an HTML tag?
    An HTML tag is a piece of markup langauge used to indicate the beginning and end of an HTML element in a HTML content.

  5. What is the structure of an HTML tag?
    Many tags, though not all, use an opening tag and closing tag to wrap around the content that they are used to modify. Closing tags are denoted with the blackslash like this
    .

  6. What is an attribute?
    Attributes contain extra information about the element that you dont 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>
1 Like

[quote=“ivan, post:1, topic:3055, full:true”]
Welcome to the discussion about the first assignment.

Leave your answers to the questions below in this thread. If you have any questions or you want to discuss something connected to the assignment feel free to do it in this thread as well, but please everything to the topic of HTML!

  1. What is HTML?
    Code that creates structure of a website.
  2. What is HTML used for?
    Creating structure and building a basis for organizing a web page.
  3. Why are we learning HTML?
    It is the fundamental structure of web design and writing code.
  4. What is an HTML tag?
    It names an element, and defines where an element begins and ends.
  5. What is the structure of an HTML tag?
    It has an opening tag and a closing tag.
  6. What is an attribute?
    It adds extra information about an element, which isn’t visible on the web page, and allows an element to be organized and targeted.
  7. What is the anatomy of an HTML document?
    !DOCTYPE html

html

head

meta charset=“utf-8

title

body

1 Like

What is HTML?

HTML stands for H yper t ext M arkup L anguage

What is HTML used for?

HTML is a code used to structure a web page and its content.

Why are we learning HTML?

Because it is the first step of developing anything on the web.

What is an HTML tag?

The tag is what marks the start and end of an element.

What is the structure of an HTML tag?

content </closing tag>

What is an attribute?

An attribute contain extra information about an element that we don’t want to appear in the actual content.

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
  1. html stands for Hypertext Markup Language. Basically it is a code.
  2. it is used for making wep pages and its content…
  3. we are learning html in order to be able to code, and understand better coding .
    4.html tag is a part of the html element or document,and it is used for certain actions like linking words to something else,making them bigger,making them aper differently and ect.
  4. it consists of a letter,wrapped insisde the opening and closing angle brackets.
  5. attribute is a part of the element that usually contains extra information that will not appear in the page or content.
  6. html document contains of opening tag,content and a closing tag.
  1. Hyper text markup language
  2. It is the language used to display information on a webpage
    3)It is important to learn HTML to be able to create the frontend webpage structure, otherwise you would have to hire someone else to create the HTML for your webpage
  3. A tag alerts the browser as to what it is supposed to display on the webpage within the tag.
  4. An HTML tag consists of the tag symbol inside angular brackets to start and the same tag preceded by a forward slash to end.
  5. Elements can have attributes that give extra information about the element.
    7)Html Structure is HTML, the Head section, then the Body section that contains the code
1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    It is a way to structure website content so that it is machine and human recognizable and appears in a particular way.

  3. Why are we learning HTML?
    HTML will be used to create the basic structure and content on web2 pages, which will likely remain the commonly used interface for many web3 applications (e.g. defi exchanges)

  4. What is an HTML tag?
    A tag is the part of the HTML element that states where the element begins and ends, and what type of element it is.

  5. What is the structure of an HTML tag?
    Tag with attribute if needed, content and closing tag

  6. What is an attribute?
    An attribute is not displayed as content but can serve as a unique identifier for an element so that you can assign style information and other properties to that specific element.

  7. What is the anatomy of an HTML document?
    DOCTYPE preamble
    Root element
    Head element with metadata such as the title and character set to be used
    Body element with paragraphs, lists, images, hyperlinks as content

1 Like
  1. What is HTML?
    Stands for Hyper Text Mark Up Language and it is the code that is used to structure a Web Page and its content

  2. What is HTML used for?
    It is used to structure the content within the webpage.

  3. Why are we learning HTML?
    HTML is a part of the fundamental of Web Development. It is literally the foundation to all webpages. You wouldn’t be able to organize text or add images or videos to your web pages.

  4. What is an HTML tag?
    a tag is used to created an element

  5. What is the structure of an HTML tag?
    The name of an HTML element is the name used in angle brackets such as <p> for paragraph. Note that the end tag’s name is preceded by a slash character, </p>

  6. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content. The attribute allows you to give the element a non-unique identifier that can be used to target it (and any other elements with the same value) with style information and other things.

  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>

Copy to Clipboard

1 Like
  1. HTML stands for HyperText Markup Language
  2. HTML is used to structure a webpage and its content
  3. we are learning HTML basics because all developments related to blockchains will likely involve making websites in the first place
  4. an HTML tag is what encloses an HTML element.
  5. the structure of a tag is <> for the opening tag and </> for the closing tag. e.g. for a paragraph it will look like this :

    content

  6. an attribute contains information about an element, but which does not appear in teh actual content.
  7. the anatomy of an HTML document is as follows :
TITLE NAME

Content

1 Like
  1. What is HTML?

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 and Markup means that the web would be a web of documents was the early thought for the web since the web was primarily used for research documents.

  1. What is HTML used for?

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.

  1. Why are we learning HTML?

If you don’t learn HTML, you have to either be content with what the editor gives you or find someone who knows HTML and pay them for their HTML coding services. The best thing to do is to learn HTML, so that you can create the perfect web page for yourself, without having to pay others for it. Also, we are seeking to program a web3 dApp’s.

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

  1. What is the structure of an HTML tag?

The beginning tag consists of the name whereas the ending tag consists of the same name preceded by a forward slash ("/"). For example, the HTML tag “

” begins a paragraph, whereas “
” ends that paragraph. This is a syntax in HTML.
  1. What is an attribute?

All HTML elements can have attributes, provide additional information about an element. Attributes are always specified in the start tag and usually come in name/value pairs like: name=“value”.

Eg.

Images have a set of size attributes, which specifies the width and height of the image.

    • What is the anatomy of an HTML document?

HTML documents usually consist of two elements:

Head elements – provides page title and general page formatting commands
Body elements – put the main HTML text in this part.

1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your 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.

  2. What is HTML used for?
    To create a standard for marking up your text on your pages, you can also add images and links to other sites.

  3. Why are we learning HTML?
    to create web site pages with content in a standard way so that it may operate as anticipated for all users on various platforms.

  4. What is an HTML tag? The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, make the font bigger or smaller and so on.

  5. What is the structure of an HTML tag? open tag, conent, closing tag which constitutes an element

  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? elements combined to form an entire HTML page.

2 Likes

1.HTML (Hypertext Markup Language) is the code that is used to structure a webpage and its content.

2.HTML is used to structure a webpage and it’s content.

3.To create frontend for our blockchain applications(dapps).

4.An HTML tag defines the element usage for your content.

5.It consists of the name of the element, wrapped in opening and closing angle brackets. This states where the element begins or starts to take effect.

6.An attribute is additional information about the element that does not appear in the content.

7.It consists of a HTML element doctype, opening html-tag, head(+title) and body element, closing html-tag.

<!DOCTYPE html>
<html>
  <head>
    <title></title>
  </head>
  <body>
  </body>
</html>
2 Likes

1 & 2. HTML is a markup language that structures and displays the content of the web page.
3. HTML is the basics you need to start with in order to create a website/app etc that you use to interact with smart contracts.
4. A tag helps the browser recognize the type of content, and shows the start and end of an element.
5. The opening tag (< > ), the content , the closing tag (</>)
6. Attributes contain additional information about the element, but they don’t appear in the actual content.
7. The basic, minimum anatomy of an html document must contain the doctype, beginning and end of html document, head and body.

1 Like
  1. What is HTML?
  • the programming language that browsers will read and interpret as webpage.
  1. What is HTML used for?
  • to create webpage
  1. Why are we learning HTML?
  • to make a webpage
  1. What is an HTML tag?
  • a series of codes that begins an element.
  1. What is the structure of an HTML tag?
  • opening and closing tag
  1. What is an attribute?
  • additional information that you want to include in an element but you don’t want it to appear in the content.
  1. What is the anatomy of an HTML document?
  • the ‘preamble’
  • html
  • head
  • meta information
  • title
  • body
1 Like