HTML Reading Assignment

  1. What is HTML?
    hypertext markup langauge

  2. What is HTML used for?
    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?
    it’s the 1st step of coding

  4. What is an HTML tag?
    The tag represents the root of an HTML document

  5. What is the structure of an HTML tag?
    An HTML document is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body , which contains the document’s actual content.

  6. What is an attribute?
    An attribute should always have the following:

    1. A space between it and the element name (or the previous attribute, if the element already has one or more attributes).
    2. The attribute name followed by an equal sign.
    3. The attribute value wrapped by opening and closing quotation marks.
  7. What is the anatomy of an HTML document?
    open & close tag content and element

1 Like
  1. What is HTML?

A hypertext markup language.

  1. What is HTML used for?

HTML is used to layout the structure of a website and fill it with content.

  1. Why are we learning HTML?

HTML, and JavaScript, will help us to build a Frontend for our dApps.

  1. What is an HTML tag?

A HTML tag is an element that allows us to bring in different content into our website. For example paragraphs or images.

  1. What is the structure of an HTML tag?

opening <sometag, someattributes>content

  1. What is an attribute?

Elements can have different attributes. Through an attribute we can for example insert an alternative Text to an image element.

  1. What is the anatomy of an HTML document?
<!DOCTYPE HTML> //makes sure the code is interpreter the right way
<HTML> //will hold all code
  <head> // here we define title and what charset to use...
    <meta charset="utf-8">
    <title>My test page</title> //title of the site
  </head>
  <body> //holds all content like paragraphs and images
    <img src="images/firefox-icon.png" alt="My test image">
  </body>
</html>
1 Like
  1. What is HTML? It is code - Hypertext Markup Language… A markup language means this language is not shown it is only used to format that which will be shown.

  2. What is HTML used for? It is used to define the way your content will display. You use it to “wrap” different parts of content (chunk of data, chunk of text, image(s) or nothing) to make it appear a certain way.

  3. Why are we learning HTML? To know/learn the basics of coding and the language that is used in coding/programing.

  4. What is an HTML tag? A tag is used in the creation of an element.

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

  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
    I had to edit this section as the code I typed was screwing it up… so I am writing them without the tags.

!DOCTYPE html - this is required

html- root element wrapping the entire content on the page

head - container for all the stuff you want to include on the page that isn’t the content you are showing the viewers

meta charset=“utf-8” - sets the character set your documents should use to UTF-8… which is the most widely used way to represent Unicode text in web pages

title - sets the title of your page… the title that appears in the browser tab the page is loaded in as well as what shows when the page is bookmarked

body - this contains all the content that you want to show the web users when they visit your page

1 Like
  1. Hypertext Markup Language

  2. It is used to structure a web page and its content

  3. As an introductory to program to use in conjunction with JavaScript. Also for a repository for future projects.

  4. A tag wraps content to appear or act in the way specified by the tag.

  5. Opening tag, name of element and closing tag. The opening tag consists of opening and closing angle brackets. The closing tag consists of an opening angle bracket, forward slash, element name and closing angle bracket.

  6. An attribute contain extra information about the element you don’t want to appear in the content. It can be unique or non-unique and you are able to target the attribute for style info and other effects.

  7. • Used to set what type of document it is and make sure the HTML document behaves correctly
    • All content on the page is contained between this tag
    • Includes the meta data and other rulesets for functionality, stylistic features and other info which is not displayed on the page
    • sets the character the HTML document uses to utf-8
    • sets the title of the page which is displayed in the browser tab
    • contains all the content which is displayed on the HTML page

1 Like

1.) Hypertext Markup Language

2.) HTML is a markup language that defines the structure of ones 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.) We learn HTML because it is the code that we use to structure web contents and give it meaning and purpose. For example, is my content a set of paragraphs or a list of bullet points? Do I have images inserted on my page? Do I have a data table? Ect.

4.) 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.) Open < > and close </> tags

6.) Attributes contain extra information about the element that you don’t want to appear in the actual content.

7.) The opening tag, closing tag, content, and the element.

1 Like

1.HTML is a markup language that defines the structure of our content.
2.It use to enclose or wrap different types of content in order to appear in a specific way that we want.
3. Because is a way to organize and depict your content you want to provide.
4.the tag includes the content that we want to demonstrate.
5. the structure is denominated to the element that includes the content.
6.An attribute is an extra information of the element that you don 't want to be appeared in the content.
7.It wraps all the individuals elements.

1 Like

1. HTML is Hypertext markup language.

2. HTML is used as a coding language to create contents on websites and designing it.

3. learning HTML would help us understand how to create the front end of a website.

4. HTML tag is one of the element of many other elements in HTML

5. HTML tag has an opening tag: and an ending tag:

6. Attribute is consist of attribute name and attribute value, attributes contain information of an element that won’t be included in the front end of a website.

7. HTML document anatomy consists of;

* <!DOCTYPE html> this element ensures the html works as correctly and following a good coding procedures.
* <html></html> this element is essential and it has to wrap the entire code in it as nesting.
* <head></head> this element we set the headline of the page.
* <meta charset="utf-8"> this element ensures that all the written language characters are supported. 
* <title></title> the element will name the title of that page of the website's tab.
* <body></body> this element will include the body of the sentence or paragraph.
* <img src="" alt=""> this adds photos and images to the webpage.
* <ul></ul> unordered list.
* <li></li> listing items.
* <ol></ol> ordered list.
* <a> is the anchor element that will attach hyperlinks to it.
1 Like
  1. What is HTML?

HTML (Hyper text markup language)

it’s a markup language that let’s you see contents in your browser.

It describes the structure of Web pages using markup.

  1. What is HTML used for?

It is used to program websites with a fixed content.

  1. Why are we learning HTML?

It’s good to learn HTML as a foundation for web development and blockchain development.

  1. What is an HTML tag?

A tag denotes the start and end of a section in HTML, like a heading, paragraph, table…

  1. What is the structure of an HTML tag?

For beggining is the name of the element wrapped in opening and closing angle brackets

and for the ending same as begining but with forward slash before the element.

  1. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content.

  1. What is the anatomy of an HTML document?

It has a head that contains information on what your web page will be displaying,

a body that will include all of your websites content. And there are bunch of other elements that are used to create web page.

1 Like
  1. What is HTML?
    HTML is a code that defines the function and visualization of a web page

  2. What is HTML used for?
    It structures the webpage, give options to arrange text, graphics, tables and assign attributes like hyperlinks to them.

  3. Why are we learning HTML?
    HTML is the basic layer of each webpage. To interact with smart contracts, a user interface is needed. HTML is the essential base layer to create new tools to interact with the blockchain.

  4. What is an HTML tag?
    A tag is a definition of an element in the HTML code.

  5. What is the structure of an HTML tag?
    Each HTML element is defined by an opening tag followed by attributes and content and a closing tag with a forward slash at the end.
    example

    hello world

  6. What is an attribute?
    Attributes define the invisible properties of an element, for example a hyperlink

  7. What is the anatomy of an HTML document?
    The HTML code is structed in to several parts:

document type definition root element that wraps the whole webpage wraps the information that doesn't belong to the content itself, like keywords this is the visible content of the web page
1 Like
  1. HTML is a programming language used to code websites.

  2. HTML is used for displaying on a website the contents we want in a proper manner through code.

  3. Because we need to know how to set the front page that will talk with our crypto system or our API.

  4. They are “commands” that are used to modify some parameters of the text or information shown.

  5. An opening command between brackets i.e.

    for opening a paragraph, then the content “I love crypto” and then the closing command between brackes adding a forward slash

    .

  6. An attribute adds additional information that we do not want to be displayed on our website. compound by name and value.

  7. The anatomy is the estructure and order needed in our code to create a website that shows what we want.

1 Like

1: HTML is a Hyper text Markup Language…it is the code used to give structure and organize the elements of a web page.

2: HTML is used to structure the contents of a web page. The elements of the content are manipulated to look and behave a certain way, using tags and attributes for example.

3: The structure of the HTML language will allow my brain to start to integrate the logic of programming, and apparently JavaScript and other languages are built with the same principles.

4: An HTML tag is a way to define the look placement or behavior of an element.

5: Open the tag

close the tag

6: An attribute is a way to define the element with information that will allow you to target the element with various style information etc.

7: <DOCTYPE! html> is the first thing that should appear, followed by opening the html with

can be an beginning element, it is a header this allows the character set our document can access to be as broad as possible This would be the title of my header to indicate the main part of my document

This would be the content inside the body of my document

ps when i publish this comment, none of the html shows up…hmm i must be missing something about how to give examples of html in this …post box?

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
  1. What is HTML?

HTML, means Hipertext Markup Language, is a language to build a webpage, or website, structure.

  1. What is HTML used for?

HTML is used to strucure web pages.

  1. Why are we learning HTML?

Because it is a very good and simple way to have a first contact with code, and web pages are very useful ways to interact and present information from the blockchain.

  1. What is an HTML tag?

An HTML tag is an instruction to insert a certain element on the page, for example, the tag

can be used to insert the paragraph element.
  1. What is the structure of an HTML tag?

The structure of an HTML tag consists of an Open Tag, the content of the element, and a Closing Tag.

  1. What is an attribute?

An attribute is some extra information about the element, but it is not to appear on the element content.

  1. What is the anatomy of an HTML document?
    An HTML document anatomy is a group of elements used in a certain position and order, so the web browser can show the HTML document as a webpage according to what we want.
1 Like

so cool! Thank you :slight_smile:

  1. What is HTML?
    HTML is a markup language that defines the structure of content. HTML contains elements which are defined by tags that define each element’s function. HTML is interpreted by the DOM (document object model) API.

  2. What is HTML used for?
    HTML is used to structure the content of a document.

  3. Why are we learning HTML?
    We’re learning HTML (and JavaScript) as an introduction to programming languages. Additionally HTML and JS will later be used to build pages that will interface with the smart dapps we’ll later learn to build with dapp languages like Solidity.

  4. What is an HTML tag?
    An HTML tag is used to construct an HTML element. Tags identify an element’s attributes and the values assigned to those attributes. Tags come in pairs, an opening tag and a closing tag, except in the case of empty elements which neither require nor will accept a closing tag.

  5. What is the structure of an HTML tag?
    An HTML tag includes a less-than angle bracket <, the tag type–such as html, p (paragraph), a (hyperlink), head, and header–and a greater-than angle bracket, >.

  6. What is an attribute?
    An attribute is piece of text that extends an element by changing its behavior or adding metadata to it. Attributes have the structure name=“value”, such as class=“intro”.

  7. What is the anatomy of an HTML document?
    All HTML documents contain a doctype identifier <!DOCTYPE html>. All subsequent data will be found within tags, the former placed after the doctype tag and the latter placed at the end of the document.

Additional tags will be nested within the according to the structure of the document. Those tags include:

  • A pair of tags enclosing metadata not intended for display, which will generally include a pair document title tags enclosing the page’s name, <title></title>.
  • A pair of tags that indicate the content to be displayed
  • Various structural, formatting, and content tags, such as pairs of <p>, <h1>, <h2>, and <a href=" ">.
1 Like
  1. HTML is hypertext markup language used to code web pages - structure and content.
  2. HTML is a code to structure the content of web pages.
  3. We are learning HTML to allow us to make the front end web pages necessary to access and initiate actions of programs written in other languages such a java script.
  4. An HTML tank is the name of an element enclosed in opening and closing brackets defining a section of the code.
  5. The tag structure is the element name inside brackets.
  6. A attribute is information about an element - which information will not show up in the content.
  7. HTML document anatomy includes a header section, title section and body section with comments and images.
2 Likes

1R : ( H yper t ext M arkup L anguage) is the code that is used to structure a web page a markup language that defines the structure of your content consists of a series of elements, which you use to enclose, or wrap The enclosing tags
2R: It is the protocall that all web pages use to properly display information on your computer screen FROM the internet is used to structure a web page and its content. can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.
3R: Because without a knowledge of it you can’t put your information/crytpo/business on the web. Everything we are doing resides on the web and HTML is the language we use to maipulate this environment
4R: a tag is a tool used to specify the directions or recipes for the visual content that one sees on the Web is a set of characters constituting a formatted command for a Web page. Generally, the tag comprise the element.
5R:The opening tag: This consists of the name of the element (in this case, p), wrapped in opening and closing angle brackets . This states where the element begins or starts to take effect — in this case where the paragraph begins.
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 — in this case where the paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.
The content: This is the content of the element, which in this case, is just text.
The element: The opening tag, the closing tag, and the content together comprise the element.

6R: Attributes contain extra information about the element that you don’t want to appear in the actual content.

7R:
!DOCTYPE html>
<html> head><meta charset="utf-8">
title></head>
<body></body> /html>

2 Likes
  1. What is HTML?
    HTML is Hypertext Markup Language for create a web page.
  2. What is HTML used for?
    Use for create web page in static web
  3. Why are we learning HTML?
    Because HTML is be basic of the web page structure.
  4. What is an HTML tag?
    Something that tell the browser know how to render what the html code
  5. What is the structure of an HTML tag?
    <></>
  6. What is an attribute?
    Attribute provides extra information for the element.
1 Like
  1. HTML is a mark up language

  2. It Defines structures

  3. For the simple front end and because Solidity is easier to learn if you understand HTML

  4. A HTML tag is an action

  5. < p >

  6. An attribute is extra information

  7. The way to write website code

1 Like
  1. HTML is a markup language, HyperText Markup Language

2.It is used to make web pages and make them look and act a certain way.

  1. we need to know the basics

  2. an HTML tag is a way you define how the lets say text will look or behave.

  3. consists of the name of element enclosed in opening and closing angle brackets, it shows where the element begins and ends.

  4. atributes are extra information you don’t want to include, to be seen to user

  5. it is made of two parts, head and body, head tells us general page formating comands and in body you put everything

1 Like