HTML Reading Assignment

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

What is HTML used for?

Every web page you see on the Internet is written using HTML code. HTML ensures the proper formatting of text and images so browser may display them as
they are intended to look. HTML also provides a basic structure of the page.

Why are we learning HTML?

If you don’t learn HTML, you have to either be satisfied 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.

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 pairs, which makes up the beginning and ending tag.

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 ("/"). The HTML tag begins a paragraph, and also ends that paragraph. This is a syntax in HTML.

example: < p>My cat is very grumpy< /p>

What is an attribute?

All HTML elements can have attributes, providing additional information about an element. Attributes are always specified in the start tag and usually come in name/value pairs like: name=“value”.
Image tag has a set of size attributes, which specifies the width and height of the image.

example: < img src=“img_girl.jpg” alt=“Girl in a jacket” width=“500” height=“600” >

What is the anatomy of an HTML document?

Every HTML document consists of two elements:
Head elements – provides page title and general page formatting commands
Body elements – put the main HTML text in this part.

example:

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

2 Likes
  1. What is HTML?
    Hypertext Markup Language.

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

  3. Why are we learning HTML?
    Because we want to know how to build web sites
    that can interact with smart contracts.

  4. What is an HTML tag?
    A tag is used to create an element.

  5. What is the structure of an HTML tag?
    a tag starts with and ends with

  6. What is an attribute?
    a attribute contains 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?

... ...
1 Like
  1. What is HTML?
    Hypertext markup language

  2. What is HTML used for?
    It is the code that is used to structure a webpage and its contents

  3. Why are we learning HTML?
    It will be helpful to know how to build a webpage as this will be the landing spot for people to eventually interact with any blockchain apps or solutions.

  4. What is an HTML tag?
    A tag is used for creating an element in HTML.

  5. What is the structure of an HTML tag?

  6. What is an attribute?
    An attribute contains additional information about the element that you don’t necessarily want to appear in the content.

  7. What is the anatomy of an HTML document?

<html></html>

`` ``
1 Like
  1. Hypertext Markup Language,
  2. It is used to load information from the internet onto web-pages on people’s screens!
  3. Because we must learn it to be able to create front-end experiences and examples of our work
  4. followed by e:g
  5. An attribute is what goes in the tags! attributes are used to define what is between the tags and what it can do, whether it is text or imagery, and whether those texts and imagery hyperlink to other places
  6. An attribute is a way to describe extra information about the what is between the tag(s),
  7. The anatomy of a HTML document is
    A. Document type which describes what kind of document is below
    B. A HTML tag which wraps the entire document
    C. A head tag which is where we put things that aren’t to be displayed as content in the document
    D. for many languages
    E. a title tag for the title of our page
    F. a Body tag for all the info we want to show!
1 Like
  1. What is HTML?

HTML is a mark up language that defines the structure of the content.

  1. What is HTML used for?

HTML is used to create all web pages.

  1. Why are we learning HTML?

I believe HTML is necessary for web and blockchain development. Otherwise, you must rely on others to create what you want.

  1. What is an HTML tag?

The tag represents the root of an HTML document. The tag is the container for all other HTML elements

  1. What is the structure of an HTML tag?

An tag consist of an opening and closing tag.

  1. What is an attribute?

An attribute is extra information about the element that you do not want to appear in the actual content.

  1. What is the anatomy of an HTML document?
- Required - HTML element Wraps the content of the page and it can be called the “root” element. - Things that will be in the webpage but it is NOT the actual content. - Makes your document use UTF-8 which includes most characters in the majority of the written languages. - This is the title of the page - Contains all of the information you want to show in your webpage. This includes text, images, videos, ect.
1 Like
  • What is HTML?
    Is a markup language that defines the structure of your content.
  • What is HTML used for?
    We use this code to structure a web page and it’s content.
  • Why are we learning HTML?
    HTML is a good skill for crypto programers to know because it’s the basic requirement to creating a website. A strong understanding in HTML makes learning Java much easier.
  • What is an HTML tag?
    An HTML tag is used for constructing an element which contains an opening tag, content and closing tag.
  • What is the structure of an HTML tag?
    Opening tag, content and closing tag.
  • What is an attribute?
    An attribute is an extension of an element. It contains a name and value for a given attribute.
  • What is the anatomy of an HTML document?
    The anatomy of an HTML document is following…
    Doctype-> Open Main HTML Element-> Open Head element-> set to UTF-8-> Open and close title element->Close Head element->Open Body element-> close body element->close main html element
1 Like
  1. HTML is Hypertext Markup Language.
  2. HTML is used to structure a webpage and the content on it.
  3. We are learning about HTML because it is needed to create websites and other applications.
  4. An HTML tag is what states where an element begins or starts to take effect. <> being an opening tag and </> being a closing tag.
  5. The structure of an HTML tag is the opening tag <>, the content, and then the closing tag </>.
  6. An attribute is something that contains extra information that you don’t want to appear in the actual content.
  7. — doctype
— the html element. - the head element — This element sets the character set your document should use to UTF-8 - the title element - the body element.
1 Like
  1. What is HTML?

Hypertext Markup Language is a code used for structure webpages

  1. What is HTML used for?

Building websites that can be use to interact with other code

  1. Why are we learning HTML?

Because we need to be able to interact with the smart contract

  1. What is an HTML tag?

Used for creating element

  1. What is the structure of an HTML tag?

Opening tag, closing tag, content and element.

  1. What is an attribute?

Attribute contains extra information that is not visual.

  1. What is the anatomy of an HTML document?

They are different elements that are wrapt up.

1 Like
  1. HTML (Hypertext Markup Language) is code that
    defines the structure of your content.

  2. HTML is used to build web pages and it’s content.

  3. We should be able to build an app that can interact
    with smart contracts. And we will be learning the basics of
    javascript as well.

  4. A HTML tag is used for creating an element.

  5. The structure of an HTML tag is the opening tag,
    the closing tag and the content. These three are what
    comprise the element.

  6. Attributes are extra information about the element, it’s
    information you don’t want to appear in the content.

  7. The anatomy of an HTML:
    < ! DOCTYPEhtml>, , , ,

and :
1 Like
  1. The anatomy of a HTML:
, , , , and
  1. What is HTML?
    It is a tagging/enreaching text code.
  2. What is HTML used for?
    It is used to define how contects are presented in web pages.
  3. Why are we learning HTML?
    Because it is helpful to create front ends applications running on the internet.
  4. What is an HTML tag?
    It’s a key word used to wrap a certain content and give it a certain effect.
  5. What is the structure of an HTML tag?
    It has an openining contained between ‘<’ and ‘>’ and a related closing having the closing symbol ‘/’.
  6. What is an attribute?
    It is a supplement to the tag that can be used to define a certain effect for the content.
  7. What is the anatomy of an HTML document?
    It is the basic structure that defines all the different sections that the document has to have.
2 Likes

The HTML (HyperText Markup Language) is the code used to create websites and to display the content we want to. Every single Webpage is written in HTML, as HTML gives structure to the information and images that you want to communicate to the rest of the world. The HTML structure is the opening tag, the content, the element and the closing tag. What an attribute does, is that it adds properties regarding to the contente included inside a tag. An html always star with the tag < HTML >, then the < Head > (Where all the information needed for the website that won´t display like the scripts, titles, Colors, and finally we have the < Body > where all the content is concentrated on.

1 Like
  1. HTML stands for Hypertext Markup Language, defines structure of content.
  2. HTML is used for creating webpages and telling the browser how to display them.
  3. We are learning HTML to have a base layer understanding of coding.
  4. HTML tags are hidden keywords that define how a website appears.
  5. The structure of an HTML tag is consists of an opening and closing tag…EX: <p> and </p>
  6. An attribute contains extra information you don’t want to appear in the actual content.
  7. The anatomy of an HTML document is: A line containing HTML version info, a header section, and a body.
1 Like
  1. A Mark-up Language that defines the structure of your content.
  2. Structure a web page and its content
  3. Understanding of the space. Ability in future to interact with web based dApps etc
    4.A tag is a statement to show a type of element.
  4. Opening / Closing tags indicating the content. Content to be display + possibility to add attributes defining the element. Element is overall/ tag plus content.
  5. An attribute contains additional information for an element, that is not included in the content itself ie not user-facing
  6. !DOCTYPE,
    html,
    head
    meta charset
    title hello /title
    /head
    body
    Hello Ivan on Tech Academy
    /body
    /html
1 Like
  1. what is HTML? HTML is a Hypertext markup language
    2.What is HTML used for? HTML is used to build a webpage structure.
  2. Why are we learning HTML? to build an interface where people can interact with your code
  3. What is an HTML Tag? An HTML tag is to wrap an opening text and closing it.
    5.<p> "your text goes here" </p>
  4. What is an attribute? an attribute is a value for a class.
  5. What is the anatomy of an HTML document? An HTML is a set of rules and wraps up the basic elements to create a webpage.
1 Like
  1. HTML stands for Hyper Text Markup Language
  2. It is used to make web page with content arranging as you wish.
  3. Because every program contains front end and back end, HTML is responsible for a good front end design.
  4. The tags define where an element begins and ends and what kind of effect it has on the element.
  5. The tag represent the root of an HTML document. And is the container of all the other html elements except (DOCTYPE)
  6. An attribute is extra content that is not shown to the user
The Title <img src="image/image location" alt="Text for alternative"
1 Like

1- Hypertext markup language
2- Structure a web page and its content
3- Because anything we build will likely need to interact with the web
4- A way to define or modify the properties of an element
5- <tag attribute>…</tag>
6- Extra information about the element that you don’t want to appear in the actual content
7-

<!DOCTYPE html>
<html>
<head>
<meta charset=”…”>
</head>
<body>
</body>
</html>
1 Like

1. What is HTML?
Hypertext Markup Language.

2. What is HTML used for?
A code used for structuring a webpage and its content.

3. Why are we learning HTML?
To learn the foundation of web development.

4. What is an HTML tag?
A tag Opens, Identifies and Closes an Element.

5. What is the structure of an HTML tag?
<'open> </'close>
For example a paragraph is as follows:
<'p>This is a new paragraph</'p>
Without the ’

6. What is an attribute?
An attribute contains additional information about the element that will not appear on the webpage. This attribute helps you to target and identify the element and any other elements in the same class.

7. What is the anatomy of an HTML document?
The anatomy is the combination of all the individual elements used to create the webpage.

1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    HTML is used for structuring the content of a website.

  3. Why are we learning HTML?
    Because it is the first building block to creating a website.

  4. What is an HTML tag ?
    Tags are part of the make-up of an element which characterizes how content appears. Tags can make a content appear as a stand-alone text in which case it would be a paragraph. Tags can make a content appear in a different font type or even make a content an image.

  5. What is the structure of an HTML tag?
    Am HTML tag consists of an opening and closing tag. The opening tag shows the type of element being applied to a content, where the element starts to take effect, and is enclosed in angle brackets. The closing tag looks much the same way as the opening tag except that it has a forward slash before the element type. The closing tag also shows where the element stops taking affect.

  6. What is an attribute ?
    An attribute is used to qualify an element. It is used to give more information about the element.

  7. What is the anatomy of an HTML document?
    It refers to how individual elements are combined to form a web page.

1 Like

1 & 2. HTML is a language to structure content or “elements” that a viewer would find on a website
3. It HTML is to the internet what driving manual transmission is to cars as far as content creation is concerned
4. A tag is essentially a wrapper that encloses content into one function or designation or another in what is collectively an element within a web page.
5. A tag is structured with a “<” that encloses that type of tag for example p (paragraph) or header etc… you close off the name of it with another one “>” then enter your content then do it again but add a / before the "header or p or whatever inside the >'s.
6. attributes are additional information you write into the tag that categorize or reference certain elements. So you could give certain elements an attribute that embeds an editors note or a image or alt text etc
7. you begin with defining it as html, then add header, body etc then you enclose it all again in inverse order

1 Like