HTML Reading Assignment

1. What is HTML?
it is a markup language* that defines the structure of your content.
2. What is HTML used for?
used 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?

  1. to be able to construct an application that can interact with the smart contract
    4. What is an HTML tag?
    it shows the start and end of elements
    5. What is the structure of an HTML tag?
    opening tag, content, closing tag
    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?
    its wraps up the basics of individual HTML elements, but they aren’t handy on their own. Now we’ll look at how individual elements are combined to form an entire HTML page.
1 Like
  1. Hypertext Markup Language, a language to create webpages.
  2. HTML is the skeleton of a webpage. It is used to structure content.
  3. It’s a useful first step that can come in handy later when dealing with frontend.
  4. It’s what identifies an element, its bounds and how it behaves.
  5. Opening and closing tags using angle brackets. They can be wrapped around content or not.
  6. An attribute is additional information about the element.
  7. The tells the browser its dealing with an HMTL file.
    The wraps all the content of the file
    The element wraps all the content that is not visible to the user but it’s useful for
    SEO, declaring a character set, etc. sets a character set for uniform display across browsers. sets the page title which appears on the browser tab and in bookmarks wraps all the content that is visible to users.
2 Likes
  1. What is HTML?
    It is a markup language, not a programming language.

  2. What is HTML used for?
    Formatting text/graphics/hyperlinks in a web page.

  3. Why are we learning HTML?
    Because it is a fundamental building block for learning JavaScript, Solidity and other computer languages used in crypto.

  4. What is an HTML tag?
    Opening and closing tags are used as the start and end points of formatting.

  5. What is the structure of an HTML tag?
    The name of an element wrapped in left and right angle brackets.

  6. What is an attribute?
    Additional information that does not show up in the content, like a hidden note to be used as a reference.

  7. What is the anatomy of an HTML document?
    Docktype
    Root element
    Head element
    Character set
    Title element
    Body

1 Like

HTML is a markup structure that defines the structure of content. HyperText Markup Language.

HTML is used for structuring websites and their contents. It is not a programming language.

Because it is a good introduction to creating things digitally. We can use this to create an application to interact with a smart contract.

An HTML indicates the opening of or closing of an element, I.E. a paragraph. Looks like

for open and

for close.

An attribute contains information about an element which isn’t intended to be included in the website. Can be used to class different types of information etc.

The anatomy of an HTML document are tags that define HTML. These can be .

1 Like
  1. Hypertext Markup Language - code used to define the structure of a web page
  2. It is a programming language used to display text and images on web pages.
  3. To give us a foundation to build on when learning more complex programming languages, and to allow us to apply our knowledge to working tools on the internet.
  4. A tag is used to create an HTML element (e.g. the paragraph tag: <p>).
  5. An HTML tag contains the name of the element along with any attributes, wrapped in angle brackets.
  6. An attribute contains extra info about the element (e.g. class, alt, etc.).
  7. Basic anatomy:
    <DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8">
        <title>My test page</title>
      </head>
      <body>
        This is where you include all the actual content of the webpage.
      </body>
    </html>
1 Like

What is HTML? Hypertext Markup Language.
What is HTML used for? Creating web page content.
Why are we learning HTML? So we can make web pages that we can write code to interact with.
What is an HTML tag? A tag is used to create an element type.
What is the structure of an HTML tag? It must have an opening tag <> and closing tag </>.
What is an attribute? Contains extra information about the element and how you would like it to appear.
What is the anatomy of an HTML document?

  1. helps to make sure that the document behaves properly.
  2. HTML Also known as the root element because it wraps all the content on the page.
  3. HEAD Shows the content that you want to be picked up by search engines, but does not show on your page to your viewers. It is like a container for the information that is not shown on the page.
  4. Used to for the character sets you want to use on your page. UFT-8 is a good choice because it includes most character sets.
  5. TITLE Sets the title of your that will appear in the browser tabs. It will also be used in bookmarks.
  6. BODY Shows all the content of your page. Images, text etc.
1 Like
  1. HTML is Hypertext Markup Language

  2. HTML language code is used to write/ display the front end (UX) of most websites. HTML Language is very easy to Understand and interpret.

  3. We are learning HTML Because we want to learn how to design simple web pages and hence we can create the front end of De-fi apps running on the Ethereum Blockchain.

  4. An HTML tag is the name of the Element of which the tag is a part of, it defines the element.
    5.The structure of the Tag is that it has a starting and closing tag, for example when creating a Paragraph in HTML we use the opening

    tag and also the closing

    tag.

  5. An attribute provides additional information about the element. For ex. if some of the text in the paragraph element needs to be in bold, then we can have a attribute prefixed to that word which needs to be shown in “Bold” and later suffixed by the closing attribute marking the end of the words to be shown in “Bold”

  6. The Anatomy of the HTML document consists of Composition of the element. it contains generally Tags, Content, Hypertext ref, images, audio lists, headings etc…

1 Like
  1. What is HTML?
    HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content.
  2. What is HTML used for?
    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. The enclosing [tags] can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
  3. Why are we learning HTML?
    Learn some fun front end :slight_smile: which can come in handy
  4. What is an HTML tag?
    Opening and closing tags are used as the start and end
  5. What is the structure of an HTML tag?

and <

  1. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content. <p Class = naskjbfjsahcikjabsdcjh> the Class is the attribute

  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
  1. Hypertext Marking Language
  2. To enclose or wrap different together and make it look a certain way.
  3. To understand the basics of how the web works, to be able to build frontend and see results.
  4. Where elements start or begins to take effect.
  5. It contains an open and closed brackets and to close one aswell after the open bracket it has a forward slash. In the middle of the brackets is always the name of the element.
  6. It is extra information for the element that is value. Written after an equal sign that is after the name, and the value itself is wrapped in opening and closing quotation marks.
  7. Individual HTML elements wrapped together to an entire page of HTML elements.
1 Like
  1. Hypertext markup language
  2. Html is used to make websites
  3. You write in the blockchain using this and its a good start for programming
  4. The html tags are whats used to give instructions to and describe the layout of the website
  5. An html tag has opening < > and closing </> brackets
  6. The attribute describes the tag, like for href the attribute is the website
  7. An html document starts and closes with they also have a title, body, paragraph, list, image, ect
1 Like
  1. HyperText Markup Langue- is is a markup language that defines the structure of your content.
  2. Is used for building web sites
  3. To understand how to create a web page
  4. The Html tag represents the root of an Html document
    5.Is the opening tag, closing tag and the content (text) and all together comprise the element
    6.Attributes contain extra information about the element that you don’t want to appear in the actual content
    7.That wraps up the basics of individual HTML elements, it combine the entire HTML page.
1 Like
  • What is HTML?
    formally is not a program language is a markup language that define the structure of the websites.
  • What is HTML used for?
    create websites
  • Why are we learning HTML?
    we need to communicate HTML with blockchain.
  • What is an HTML tag?
    create and enclosing something for example a phrase or hyperlink
  • What is the structure of an HTML tag?
    “< x > < /x > x = p, head, body, img etc”
  • What is an attribute?
    extra information of the content for a tag.
  • What is the anatomy of an HTML document?
    “< html > < head > < body >”
1 Like
  1. Hypertext Markup Language
  2. It is the standard markup language for documents designed to be displayed in a web browser.
  3. To create web pages that will be the front end of our application which will connect to our back end smart contract.
  4. Used to create an element in html
  5. open tag, content, closed tag
  6. Attributes contain extra information about the element
  7. HTML, Head Element, Body Element
1 Like
  1. Its the code that is used to structure a webpage and its content
  2. It is a markup language that is used to structure the content and display it in different ways
  3. So that we can make front ends effectively
  4. It can make words hyperlink to other websites, make words bigger or smaller, separate phrases from others, and make content bold or italicized
  5. The opening tag has 2 angled brackets with the name of the element, and the closing tag has 2 angled brackets with the name of the element and a forward slash
  6. They are other qualities in the tag that you don’t want appearing in the content itself
  7. < html > < head > and < body >
1 Like
  1. Hyper Text Markup Language
  2. Develops the structure and content of a webpage
  3. Because we need to write an interface for the programs that we build.
  4. Keywords the define how your web browser must display content for your webpage.
  5. An opening bracket followed by a keyword, followed by a closing bracket.
  6. Attributes content extra information about the element but are not displayed.
  7. Starts with the doctype, then the HTML tag wraps the head and body.
1 Like
  1. What is HTML?

Hypertext Markup Language

  1. What is HTML used for?
    We use HTML to structure a webpage’s content. For example, we could put content into a bulleted list, insert images, and so on.

  2. Why are we learning HTML?

Because we need to know the basics of building a webpage.

  1. What is an HTML tag?

A tag tells the a web browser how to display an element (for example: make text bold).

  1. What is the structure of an HTML tag?

Opening tag, content, closing tag
^ together, these make up an element

  1. What is an attribute?

Attributes are non-unique identifiers that target elements (and other elements with the same attribute). Using these identifiers allows you to easily target more than 1 element at once and structure them in specific ways (for example: make all p elements with attribute b bold text).

  1. What is the anatomy of an HTML document?
- close the page with the latter element; aka "root element" - here you enclose things that you want to include but isn't content that you want to show to viewers. Examples of what you'd include in the element are things, such as keywords and descriptions for search engines, CSS for content styling, and more. - sets document's character set to UTF-8. This means that your document can handle text content from most written languages. - your page's title - appears in browser tab, default bookmark title, etc. - content you want to show to viewers. This includes text, images, videos, games, audio, etc.
1 Like

What is HTML?
Hypertext Markup Language

What is HTML used for?

structure a website (webpage and its content)

Why are we learning HTML?

Because this is the base for understanding programming

What is an HTML tag?

This is the name of the element wrapped in brackets, it states where the element starts and stops

What is the structure of an HTML tag?

Opening bracket Name of the element Closing bracket

What is an attribute?

It contains extra information that doesn’t appear on the visible content, for example to make different classes with different styles.

What is the anatomy of an HTML document?

!DOCTYPE html>

html>

head>

meta charset

title></title

body></body

1 Like
  1. Hypertext Markup Language, is used to structure a webpage and its content.

  2. Every webpage on the internet uses HTML, this ensures proper formatting for the text and images on the page. This also provides a basic structure for the webpage.

  3. It is good to know HTML because you can build your own webpages and not really on someone else to do it for you. This gives more control to you as the creator of the webpage and it is overall less overhead than paying another person to do it for you.

  4. HTML tags help provide the structure of the page. A HTML tag consists of the tag name in angle brackets which generally come in pairs. There are normally beginning and ending tags to mark where the tag begins and ends.

  5. The structure of the tag includes the tag name in angular brackets at the beginning of the tag and the ending tag is the in angular brackets, with the name preceded by a forward slash.

  6. All HTML elements can have attributes, but they don’t necessarily always have to have an attribute. Attributes are used to provide additional information about an element that doesn’t appear in the actual content. Images will have sizing attributes which specify width and height of the image.

  7. Every HTML doc has a couple of elements. Head elements provide things like title and general formatting commands. Body elements include the main HTML text.

1 Like

Response:

  1. It is ‘HyperText Markup Language’
  2. HTML is used for developing the structure (look) of a webpage and its content.
  3. Learning HTML is one of the basic skills you can have in order to know how your content will appear to users. You can have an understanding of it and save money in the short term or pay someone else who is knowledgeable to get it looking how you’d like.
  4. A ‘tag’ in HTML is the action of what you would like execute on the front end.
  5. The structure of tag consists of an opening and a closing. ie: ___________
  6. I’d say ATTRIBUTES are what devs use to make themselves “notes” on what they are writing, without it appearing on the main page where others will be able to see it.
  7. The anatomy is how all the pieces of elements come together to form the HTML page.
2 Likes
  1. Hyper Text Markup Language - that defines the structure of my content
  2. HTML s used to display images or text or manipulate the site to behave a certain way
  3. Every webpage uses html elements so an understanding of html is necessary to build websites and applications.
    4.an html tag is used to wrap or enclose different parts of the content to make it show a certain way or behave a certain way
    5 the opening/closing tag </> and the content make up the element
    6 attributes contain extra information about the element, that you dont want to appear in the content but be included in the meta
    7 a basic html website is made up out of a body element and header element. They always start with !doctype.