HTML Reading Assignment

Starts with an opening tag and ends with a closing tag

!DOCTYPE html
html
head
/head
body
/body
html

1 Like
  1. What is HTML? it 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? You use it 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? It is a first introduction to a programming language which will be used on the front-end of development.

  4. What is an HTML tag? The tag opens and closes all content and are the start and end of the element

  5. What is the structure of an HTML tag? Opening tag, content, closing tag

  6. What is an attribute? They contain extra information about the element which will not appear in the content

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

2 Likes
  1. What is HTML?
    The markup language of all websites.
  2. What is HTML used for?
    For structuring webpages.
  3. Why are we learning HTML?
    So that we can show off our dapps etc and ineract with the visable. webb.
  4. What is an HTML tag?
    It is tells what someting is in a web page.
  5. What is the structure of an HTML tag?
    Opening tag, attribute closing tag.
  6. What is an attribute?
    It specifies what kind of content is coming and where to put it.
  7. What is the anatomy of an HTML document?
    html tag
    head tag
    body tag
    and all sorts of defining tags within it.
2 Likes
  1. It stands for HyperText Markup Language.
  2. It is the standard protocol used in creating websites.
  3. HTML is necessary for the front-facing part of the cryptocurrency world, for creating a pleasant user interface in dealing with cryptocurrency.
  4. It is to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
  5. It contains four things:
    i. the opening tag
    ii. the closing tag
    iii. the content
    iv. the element
  6. An attribute contains extra information about the element that you don’t want to appear in the actual content.
  7. It should be made up of:
    i. <!DOCTYPE html> — the doctype which is just there at the start of all html documents due to legacy and not for any real purposes.
    ii. - the element which wraps all the content on the entire page and is sometimes known as the root element.
    iii. - the element which 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.
    iv. <meta charset="utf-8"> - the element which sets the character set as UTF-8 which includes most characters from the vast majority of written languages.
    v. - the element which sets the title of your page, which is the title that appears in the browser tab the page is loaded in.
    vi. - the element which contains all the content that you want to show to web users when they visit your page.
1 Like
  1. HTML stands for HyperText Markup Language.
  2. HTML is the code that is used to structure a web page and its content.
  3. HTML is a basic programming language for web development and design. Once you understand it, it is easier fo you to learn other languages as well, such as Java.
  4. In HTML, a tag is used for creating an element.
  5. Opening and closing tag are within angle brackets. forward slash is needed for the closing tag as well.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
  7. html
    head
    body
1 Like

1. What is HTML?
HTML = HyperText Markup Language

It is NOT a programming language, it is a MARK UP language, it defines the structure of your content.

2. What is Html used for?
Html consist of a series of ELEMENTS, which you use to ā€œencloseā€ or wrap different parts of the content to make it appear or act in a certain way.

3. Why are we learning HTML
HTML is in the browser and it shapes, defines how a website looks and feels like to a user; the front end, with buttons, text pictures videos, that interact with code from back end from developer.

4.What is HTML tag?
The enclosing ā€œtagsā€ can make a word or image ā€œhyperlinkā€ to somewhere else;it can ā€œitalic-izeā€ words, can make the ā€œfontā€ bigger or smaller and so on.

5. What is the ā€œstructureā€ of an HTML tag?
In HTML, a tag is used for creating an element.
An HTML element has a name like p = paragraph
an has angle brackets beside it.

Structure is :

  1. < p>
  2. content
  3. < /p >

1 = is for opening
3 = is for closing.
2 = is content inbetween

6. What is an attribute?
Attributes contain extra information about the element that you don’t want to appear in the actual content. Only viewable to developers, not front end users.

attribute is :
class=ā€œeditor-noteā€

so this part in the full line is not visible to the front end user.

full line is:
< p class=ā€œeditor-noteā€>My cat is very grumpy< /p>

extra:
ā€œclassā€ is the attribute NAME
ā€œeditor-noteā€ is the attribute VALUE

ā€œclassā€ is a ā€œnon-uniqueā€ identifier that can be used to TARGET ā€œitā€ (and any other elements with the ā€œsame class valueā€) with style information and other things.

like in M-words you can use find and replace function and look for a word, replace that word or replace every other instance in the document where that word was used - so it means TARGET and do something to it.

7. What is the anatomy of an html document?

My cat is very grumpy

  1. < p> = opening tag

  2. < /p> = closing tag

  3. My cat is very grumpy = content

1+2+3 = element

1. The opening tag: it has angle brackets = <>
and inside is the element ā€œnameā€ , here it is = p - for paragraph

  full =  <p>
  use  = shows where paragraph begins

by the way, the grey box I think is the ā€œparagraphā€ in action

2. The closing tag: it starts with 1 angle bracket = < , a forward slash = / ,
the element name = p , then another bracket = >

  full = </p>
  use  = shows where paragraph ends
1 Like
  1. What is HTML?
    HyperText Markup Language.

  2. What is HTML used for?
    HTML is not a programming language, it is a markup language that defines the structure of the 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?
    HTML is useful to make the a simple web page

  4. What is an HTML tag?
    it is the boundaries of an element in the page.

  5. What is the structure of an HTML tag?
    it consists of the name of the element (like p for paragraph) wrapped in opening and closing angle brakets.

  6. What is an attribute?
    an attribute is used in order to add extra information that you dont want to appear in the front, for example the text type. An attribute should always have the following:

  7. A space between it and the element name (or the previous attribute, if the element already has one or more attributes).

  8. The attribute name followed by an equal sign.

  9. The attribute value wrapped by opening and closing quotation marks.

  10. 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>
3 Likes
  1. Structure language for web.
  2. HTML is used to tell what program should look like and how to behave.
  3. It is simple language that gives nice positive feelings of success to start and basic front end for blockchain to work on.
  4. Shows program what happens and where.
  5. is start tag, with different letters giving different results.

    is end tag, tells where started element ends. If you forget to end elements or any code some strange things will happen so ALLWAYS end your commands and code straight away!!!
  6. Basically comment for element, helps access from elsewhere in code.
  7. Doctype, head where key words and other stuff user don’t need is stored. And body where goes everything user will be shown.
2 Likes

HTML Reading Assignment

  1. What is HTML?
    A: HTML is a markup language to organize and display content as a static webpage.

  2. What is HTML used for?
    A: To organize and display content on a static web page.

  3. Why are we learning HTML?
    A: By learning HTML we’ll get our minds used to writing and reading code and we’ll be able to build a simple website to display our blockchain work once we that far.

  4. What is an HTML tag?
    A: A tag is the name of the HTML syntax used to affect elements on your static page.

  5. What is the structure of an HTML tag?
    A: There are an opening and closing to each tag which encapsulates the element.

  6. What is an attribute?
    A: Attributes are used to add additional styling to the tag, for example, size, padding, and CSS classes or IDs.

  7. What is the anatomy of an HTML document?
    A: !doctype html ( declares the type of document and was used in the beginning to verify the standardization and quality of a website, now it’s just a legacy artifact that’s still included), html (wraps like the first tag of the webpage and is considered the root HTML tag), head (encloses all the things you want in your page like keywords or stylesheets that are displayed to viewers), body(encloses all of the elements of your web page that are displayed to viewers).

1 Like

[quote=ā€œivan, post:1, topic:3055ā€]

  • What is HTML?
    Is a markup language that defines the structure of the content.

  • What is HTML used for?
    Is used to structure the web page and its content

  • Why are we learning HTML?
    It is the fundamentals and basics of also other programming languages.

  • What is an HTML tag?
    An html tag is a set of characters constituting a formatted command for a Web page

  • What is the structure of an HTML tag?
    The opening tag:
    The closing tag
    The content
    The element

  • What is an attribute?
    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?
    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.

1 Like
  1. What is HTML?
    Hypertext Markup Language is the code that is used to structure a web page and its content

  2. What is HTML used for?
    It is used to give an order, shape and structure to text and images.

  3. Why are we learning HTML?
    It is an easy way to start getting used to the way information is encoded and structured

  4. What is an HTML tag?
    A tag gives a format to an element and encloses the text and gives the classification and structure needed inside the HTML document

  5. What is the structure of an HTML tag?
    It consists of an opening tag and a closing tag. For examaple. < p> content < /p >

  6. What is an attribute?
    It’s an element that contains extra information, it adds a name and a value that it’s only visible for the coder.

  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. 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?
    Web pages can be an interface for dApps
  4. What is an HTML tag?
    An HTML tag is used to define content.
  5. What is the structure of an HTML tag?
    A tag consists of the name of the element, wrapped in angle brackets, closing tag has a forward slash before the name.
  6. What is an attribute?
    An attribute contains extra information about the element but does not appear in content.
  7. What is the anatomy of an HTML document?
    Doctype, html element, head element - contains info not displayed to viewers, meta charset=ā€œutf-8ā€ element - denoting character set, title element - title of page, body element - all content
1 Like

You can use the ā€œPreformatted Textā€ Button to encapsulate any kind of code you want to show.


function formatText(){

let words = ā€œI’m a preformatted Text box, Please use me wisely!ā€

}

prefromatted_text-animated

Carlos Z.

2 Likes

Great answers. It’s easy to understand. Great work. :clap:

Carlos Z.

  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? Coding the structure of a web page and its content
  3. Why are we learning HTML? It defines the structure for the content I create enabling me to build ways of interacting and displaying said content.
  4. What is an HTML tag? A way to express content as a link or a paragraph. Helps the system to know how to display the information between the open and closing tag
  5. What is the structure of an HTML tag? Opening Tag --> ā€œsentence or linkā€ Content --> Closing Tag (all of which together is an Element
  6. What is an attribute? Information added to the opening segment of a Tag.
  7. What is the anatomy of an HTML document? Starting with the - needed to make sure your document behaves correctly
- the element wrapping all of the content on the page, known as the root element - an element that acts as a container for all the stuff you want to include on the HTML page that isnt the content you are showing. Like Key words and page descriptions for search results, CSS to style content, and more. - this element sets the character set for the document. UTF-8 contains the vast majority of written languages. sets the title of the page contains all the content that you want to show those who visit the page. Text, image, video etc
1 Like
  1. What is HTML?
    Hyper Text Markup Language
  2. What is HTML used for?
    It is used to structure a webpage and it’s content.
  3. Why are we learning HTML?
    We learn HTML in order to create a functioning webpage, to learn coding skills.
  4. What is an HTML tag?
    An HTML tag defines how the content within behaves.
  5. What is the structure of an HTML tag?
    An HTML tag consist of the name of the element wrapped in opening and closing angle brackets that also has a forward slash to close the tag.
  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?
    All this individual elements are combined to form an entire HTML page.
1 Like

HTML Answers

  1. Hypertext Markup Language (HTML) consists of different elements used to enclose or wrap different pieces of content in order for them to appear or behave a certain way.

  2. HTML is used to structure a web page and its contents.

  3. To have a functioning end product, to show your knowledge, a website can work a the front end for your dapp while your smart contract controls the back end.

  4. In HTML a tag is used for creating an element.

  5. The opening tag, the closing tag, and the content together comprise the element.

  6. Attributes contain additional information about the element that you do not desire to be seen in the actual content

  7. The anatomy of an attribute consists of space between itself and the element name, the attribute name followed by an equal sign, and the attribute value wrapped by opening and closing quotation marks.

1 Like
  1. What is HTML?

  2. What is HTML used for?
    HTML stands for Hyper Text Mark up Language and is used to structure and dress web pages. It displays information to users in a customised format by communicating to the browser.

  3. Why are we learning HTML?
    HTML is essential for building web applications as it forms the structure of it. In our context, if you want to build a smart contract and make it accessible via a relevant website, you will need to build a web application to present it, this requires you to build the foundations using HTML.

  4. What is an HTML tag?
    It is used to define text on a web page

  5. What is the structure of an HTML tag?
    The structure of an HTML tag is to have it wrapped around the text you wish to edit or organise. It must have an open tag for example:

    and be closed with the same tag except with the additional forward slash added infront of the p tag:

    . Looking like this:

    Hello

  6. What is an attribute?
    An attribute is something you can add further detail to elements that will edit it in various ways such as width thickness or other functionalities that more interaction.

  7. What is the anatomy of an HTML document?
    The structure of an HTML document starts with the DocType declaration at the top followed by the tag and then the tag closed by the html tag. This is a rough list but is approximately that.

1 Like
  1. What is HTML?
    HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content; it is a markup language that defines the structure of your content.

  2. What is HTML used for?
    HTML is used as a markup language to define the structure of content.

  3. Why are we learning HTML?
    We are learning HTML in order to learn the ā€œbasics of programmingā€ and to create visually appealing ā€œfront endā€ products from consumers.

  4. What is an HTML tag?
    HTML 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.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag consists of the opening tag and the closing tag.

    • The opening tag: This 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. i.e.- (<a>).

    • The closing tag: This is the same as the opening tag, except that it includes a forward slash before the element name. This states where the element ends. i.e.- (</a>).

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

  • <!DOCTYPE html> — doctype. It is a required preamble.

  • <html></html> — the <html> element. This element wraps all the content on the entire page and is sometimes known as the root element.

  • <head></head> — the <head> element. This element 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 keywords and a page description that you want to appear in search results, CSS to style our content, character set declarations, and more.

  • <meta charset=ā€œutf-8ā€> — This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages. Essentially, it can now handle any textual content you might put on it. There is no reason not to set this and it can help avoid some problems later on.

  • <title></title> — the <title> element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when you bookmark/favorite it.

  • <body></body> — the <body> element. 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?
  • HTLM (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content.
  1. What is HTML used for?
  • HTML is used to create electronic documents (called pages) that are displayed on the [World Wide Web] Each page contains a series of connections to other pages called [hyperlinks]
  1. Why are we learning HTML?
    To be able to have a basic understanding of how a static website is built
  2. What is an HTML tag?
    Tags are wrapped around content to change how they appear on a web site. They must have a opening tag and a closing tag.
  3. What is the structure of an HTML tag?
    -HTML tag has an opening and closed tag elements
  4. What is an attribute?
    -An attributes contain extra information about the element that you don’t want to appear in the actual content.
  5. What is the anatomy of an HTML document?
  • The anatomy of the HTML looks like this.
<!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