HTML Reading Assignment

  1. What is HTML?
    HyperText Markup Language
  2. What is HTML used for?
    This is a language that defines the structure of your content.
  3. Why are we learning HTML?
    Help us understand how to build web content.
  4. What is an HTML tag?
    There are opening and closing tags. In-between is the content. Together they form an element.
  5. What is the structure of an HTML tag?
    There are opening and closing tags. In-between is the content. Together they form an element.
  6. What is an attribute?
    It is extra information about the element that does not appear visually in the actual content.
  7. What is the anatomy of an HTML document?
  • doctype specifies the set of rules this file has to follow
  • rooting html element wraps the whole content is the entire page
  • heading element is all the information that is not part of the content
  • metacarset=utf-8 sets the character set in use by the document. utf-8 usually includes all characters from the majority of languages.
  • title element is what appears in the browser tag when you open the page and also visible when you bookmark the page.
  • body element is the content showed on your page including text, links, audio, video etc.
1 Like
  1. What is HTML?

Is a markup language that defines the structure of your content.

  • Consists of elements which you use to enclose or wrap to act or appear in a certain way.
  • Consist of tags which you use to make a word or image hyperlink, and change the appearance of words.
  1. What is HTML used for?

HTML is used for creating websites.

  1. Why are we learning HTML?

We are learning HTML to understand the fundamentals of coding. To understand the inputs and outputs.

What is an HTML tag?

HTML tag is to make sure that your document behaves right.

  1. What is the structure of an HTML tag?

<! DOCTYPE html>

  1. What is an attribute?

An attribute contains extra information about the element that you don’t want in the actual content.

  1. What is the anatomy of an HTML document?

<! DOCTYPE html>

html

head

meta charset=”utf-8”

title /title

/head

body

img src=”images/Nicoface-icon.png” alt=”My test image”

/body

/html

1 Like
  1. HTML stands for hypertext markup language.
  2. HTML is a language used to define the structure of a webpage, and the arrangement of its content.
  3. We are learning HTML to be able to build the front-end side of a webpage.
  4. An HTML tag is used to begin and end elements of source code; displayed with a less than < and greater than > sign, with different language in between those symbols.
  5. An example of the structure of an HTML tag would be (opening tag) This is the main heading of a page (/closing tag) . So you have the overall element, enclosed between the opening and closing tag; which would be replaced with less than and greater than characters.
  6. Attributes contain more information about an element that you don’t want to appear on the front end webpage.
  7. The anatomy of an HTML document is the Doctype, html, head, title, and body. These all combine to form the content of an HTML document.
1 Like

HTML – Questions


1. What is HTML?

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


2. What is HTML used for?

HTML is a markup language that defines the structure of our 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?

To build the front-end side of a webpage


4. What is an HTML tag?

A tag is a piece of code enclosing some text to make it appear or act a certain way


5. What is the structure of an HTML tag?

An opening tag followed by some content and a closing tag. For example: and


6. What is an attribute?

An attribute is a piece of information that can be added to the opening tag to specify characteristics that we wish to keep invisible from the actual content visible on the front-end interface.


7. What is the anatomy of an HTML document?

An HTML document is composed of: a doctype, HTML tags, a head element (used for SEO purposes), the meta charset (defining the characters the content should use, which helps avoid running into issues), a title, and a body.

1 Like

What is HTML?

HTML is Hyper text markup language.

What is HTML used for?

HTML is used for formatting(structure) content on the internet and also defines the frontend of any web based applications.

Why are we learning HTML?

We are learning HTML to format the content we want to display in the internet. It also defines the Frontend of a Web application

What is an HTML tag?

A tag is a container that specifies the format of he content within the open and close brackets

What is the structure of an HTML tag?

It always has a open & close tag. Some HTML tags do not have close tags

What is an attribute?

An attribute is a property of the element that does not appear on the webpage. It is mainly for structuring the content.

What is the anatomy of an HTML document?

The HTML document has html tag, head and body section.

1 Like
  1. What is HTML?
    Short of Hypertext Markup language.

  2. What is HTML used for?
    Code to structure a website

  3. Why are we learning HTML?
    To go behind to curtain in the IT world in a basic manner (as a first level) and better understand it in the meaning of how the cryptocurrency world is working.

  4. What is an HTML tag?
    Tag is a part of the code to tell exactly the website what and how to show defined content.

  5. What is the structure of an HTML tag?
    HTML tag consits of <> </> with a certain mark for example a HTML

  6. What is an attribute?
    A certain embedded function in the element

  7. What is the anatomy of an HTML document?
    HTML; headings, body

1 Like
  1. Hypertext Markup Lanuguage
  2. It used for structuring a web pages with content.
  3. So we can create dapps or other web application, this is a backbone of every website or application displayed on browser.
  4. A tag is part of the HTML language that specify the browser how to treat the content.
  5. It start with a “” and end with “”
  6. Attribute is the properties that are written inside the tags.
  7. First it start with tag that tell the browser to read it as html page.
    then you have the start of the document accordingly.
1 Like
  • What is HTML?
    HTML or Hypertext Markup Language is a code that determines a webpage’s (and content) structure, format, and design using syntax to ensure specific appearances and user interactions.

  • What is HTML used for?
    HTML is used to make create a code language of just syntax to make the webpage content appear and act in a certain way.

  • Why are we learning HTML?
    HTML is the building blocks or foundation of a website coding. Understanding the HTML language is essential to get into coding, especially for those looking for careers as a developer.

  • What is an HTML tag?
    HTML tags are used to decide and design an elements. In addition, it defines the beginning and end of an element.

  • What is the structure of an HTML tag?
    First there are two tags: Open & Closed. Each is wrapped in open and closed angle brackets except the closing tag has an additional forward slash to define the end of an element.

  • What is an attribute?
    Attributes are extra pieces of information to either identify or recognize a specific class or type of content. Typically this is to define a specific element in a certain class or category for styling and design purposes.

  • What is the anatomy of an HTML document?
    The anatomy of HTML documents consist of pieces or categorical code subsets.

First, the document type is defined with “”. Then the “” is defined as the information or context of the document NOT to be shown to the user or audience but rather convey backend information. Excluding the title and tab name, this information is hidden.

Next a document is broken into the context portions which is the content shown to the users or “”. Inside this contains all text, images, links, videos, audio, or whatever other information is to be delivered to the user.

1 Like
  1. Hypertext Markup Laungage
  2. HTML is used to create the body/structure of content for webpages
  3. We are learning HTML because it will give us an insight into how coding structure work and how you build on top of that structure to create web pages etc etc.
  4. A tag helps the browser distinguish the content to a web page
  5. It consists of an opening content although certain tags are self closing
  6. Attributes are used to determine properties of both elements and tags within a webpage like the fonts used etc
  7. HTML docs consist of two main sections
    HEAD - Directions for the browser to display your document correctly (boilerplate etc)
    BODY - Pages content displayed on screen
1 Like

Homework:

  1. HTML is a mark up language,
  2. It structures the elements of a website.
  3. So that we know how to build a website and learn the foundation of webdesign.
  4. An HTML tag is the necessary thing that is written at the beginning and end of an element.
  5. A HTML tag always starts with a smaller than bracket < followed by the tag name and then a more than bracket > , that is the structure of an opening tag, the closing tag has a / after the smaller than bracket. like this </tagname>
  6. An attribute is a property of a tag
  7. An HTML document consists of a header and a body.
1 Like
  1. HTML is the code that is used to structure a web page and its content.
  2. Hypertext Markup Language
  3. We are learning HTML in order to create a standard document webpage.
  4. An HTML tag is used to create an element within the contents of the webpage.
  5. The structure for a tag is <> for the opening tag followed by an element and then a closing tag </>
  6. An attribute contains extra information about the element that the programmer doesn’t want to appear in the actual content.
  7. The anatomy of an HTML document is the doctype, the html element, the head element, the title element, and the body element.
1 Like
  1. HTML is Hypertext Markup Language
  2. HTML is used to display information on the web
  3. Because it is the backbone of web development
  4. A HTML tag defines what you are trying to create
5. <h1> </h1>
  1. Attributes are key words used to build HTML
  2. Head and Body
1 Like
  1. What is HTML?
  • HTML stands for Hyper Text Markup Language.
  1. What is HTML used for?
  • HTML is a programming language used to create and structure a web page and its contents.
  1. Why are we learning HTML?
  • To be able to develop a frontend web page where users can interact.
  1. What is an HTML tag?
  • HTML tag determines how the content will be used based on the element entered in the tag.
  1. What is the structure of an HTML tag?
  • Example of creating a header: <h1> Insert user text </h1>
    Where <h1> is the open tag and </h1> is the close tag
  1. What is an attribute?
  • An attribute is additional information for the element of the tag for example <HTML lang="en"> the lang=“en” is the attribute in the tag and it represents that language shall be in English.
  1. What is the anatomy of an HTML document?
  • HTML must contain HTML element, the head element, the <meta charset="utf-8"> tag, the title element, and the body element.
1 Like
  1. What is HTML?

Hypertext Markup Language. It’s the code to structure a webpage.

  1. What is HTML used for?

HTML defines the structure for the content of a webpage through a series of elements.

  1. Why are we learning HTML?

We must be able to display interfaces on the internet. Users interact with blockchains and smart contracts through websites and web applications.

  1. What is an HTML tag?

An HTML tag is an element that defines a specific structure or part of a web document.

  1. What is the structure of an HTML tag?

An HTML tag begins with a less than symbol <
then the word “html” with a greater than symbol >
An HTML tag end with a less than symbol <
followed by a forward slash /
then the word “html” with a greater than symbol to close the tag

  1. What is an attribute?

An attribute is part of an element that contains extra information that is not displayed on the webpage.

  1. What is the anatomy of an HTML document?

An HTML document is composed of:

  1. the doctype
  2. html element
  3. head element
  4. character set
  5. title element
  6. body element

Looks like the following:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Website Practice</title>
  </head>
  <body>
    <img src="images/firefox-icon.png" alt="My test image">
    <p>I Love Moralis!</p>
  </body>
</html>
1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of the content
  2. What is HTML used for?
    HTML is the code used to structure websites
  3. Why are we learning HTML?
    To program the structure of a website
  4. What is an HTML tag?
    Tells the website what type of content to display
  5. What is the structure of an HTML tag?
    Opening bracket, closing bracket, content and a element
  6. What is an attribute?
    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>
1 Like
  1. Hypertext Markup Language.
  2. HTML consists of a range of elements which are used to wrap or enclose different parts of content in order to make it appear or act a certain way.
  3. HTML is a foundation for Web Dev as well as blockchain development, and allows us to structure our websites in the future without having to outsource the work.
    4.A tag is used at the beginning and end of elements within a HTML file to tell the browser the beginning or end of a line of code. It defines the content of each individual element or container.
  4. Tags can either be at the beginning or end of an element. An opening tag for a heading would be

    whereas a closing tag would be

    .
  5. Attributes contain extra information about the element that can be used to style or classify the element. It can be used to set the same rules/styles to multiple elements under a single attribute such as class.
  6. The generic anatomy of a HTML document includes the which is used to make sure your document behaves/interacts correctly with the browser. is known as the root element and wraps all of the content together. acts as a container for things such as CSS and hidden page description (for SEO), plus much more. defines the character set that your document should use, and covers the characters of most written languages. sets the title of your page, which appears in the tab at the top of your browser. Finally, contains all of the content that you want to be visible in the page ranging from text, to images, to videos, and more.
1 Like

1. What is HTML?

HTML stands for HyperText Markup Language and its a markup language that defines the structure of your content.

2. What is HTML used for?

HTML is used to structure a webpage and its content using a series of elements that makes things appear or act a certain way.

3. Why are we learning HTML?

HTML is the fundamental skill in web design and development. A webpage acts as the front end of a blockchain product that the users experience.

4. What is an HTML tag?

Tags consist of the name element that can make a word or image act a certain way. They are normally wrapped in angle brackets and is placed where an element is to take effect and sometimes, end

5. What is the structure of an HTML tag?

A HTML tag consists of an opening tag, content, and sometimes a closing tag (as img don’t have closing tags). All of these together are known as the element. The opening tag has the name of the element wrapped in angled brackets while the closing tag has a forward slash, followed by the name of the element, with both wrapped in angled brackets.

6. What is an attribute?

Attributes define additional characteristics or properties of the element without appearing in the content. example/ src, width, height, alt are attributes of the tag <img> or href being an attribute for <a> when making hyperlinks.

7. What is the anatomy of an HTML document?

  1. <!DOCTYPE html> - It is a required preamble.
  2. <html></html> - Wraps content of the entire page
  3. <head></head> - 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 keyword and a page description that you want to appear in search results,
  4. <meta charset=”utf-8”> - sets character set you should use on the document.
  5. <title></title> - sets the title of your page that appears in browser tab and when bookmarked
  6. <body></body> - 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.
1 Like
  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?
    So when we create dapps we can structure the page and its’ content to be understandable for the users
  4. What is an HTML tag?
    Tag is used to create an element
  5. What is the structure of an HTML tag?
    Opening tag, content, and closing tag
  6. What is an attribute?
    Attribute tells about the information that you do not want it to be appeared 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
  1. HTML is a markup language that defines the structure of your content.

  2. HTML is used to structure a webpage and it’s content i.e. a set of paragraphs, images or bullet points.

  3. If you dont 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.

  4. A HTML tag part of the anatomy of an element that formats a web page. The HTML element starts and ends with a tag.

  5. Open and closed brackets (close tag includes ‘/’ before defining the tag).

  6. An attribute contains extra information about the element that we don’t to appear in the actual content.

  7. The anatomy of an HTML document contain of head and body elements as well as doctype which is the precursor for what type of document is being defined.

1 Like

What is HTML? -The most common language used to construct/layout webpages.
What is HTML used for? - Telling a browser how and what you want appear.
Why are we learning HTML? - So we can construct UI for a dapp and get rich.

What is an HTML tag?
The annotations that tell the browser how you want the content to appear, or what you want to appear for non text (like images and scripts).

What is the structure of an HTML tag?
<tagname attributename="attribute value">contentaffected by tag<tabname/>
Some tags can self-close, some attributes don’t have values.

What is an attribute? - A property of a tag.

What is the anatomy of an HTML document?
The parts indented by heirarchy:

  • <!DOCTYPE html>- Not a tag, a declaration, tells browser that this is modern html.
  • <html> wrapping everything else
    • <head>: inside here is metadata, css imports, title, stuff not displayed in the page
    • <body>: all the displayed content lives in here
      • All the page content, semantic elements like <nav> <main> depending on how complicated the page is. Sometimes just a placeholder tag that scripts use insert content into.
      • <script> Usually right at the end of body load scripts, the idea being let the HTML render first.
1 Like