HTML Reading Assignment

  1. What is HTML?
    –> " HTML is a markup language that defines the structure of your content. HTML consists of a series of elements "
  2. What is HTML used for?
    –> “, 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 learn how to structure text or other static data on a web site.
  4. What is an HTML tag?
    –> " This consists of the name of a element, wrapped in opening and closing angle brackets . This states where the element begins/ends or starts to take effect."
  5. What is the structure of an HTML tag?
    –> An opening tag and a closing tag, like so: <element>content</element>
  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?
    –> * <!DOCTYPE html> — doctype. It is a required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However these days, they don’t do much and are basically just needed to make sure your document behaves correctly. That’s all you need to know for now.
  • <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.
2 Likes
  1. What is HTML? Hypertext Markup Language
  2. What is HTML used for? HTML defines the structure of your web page layout. It makes your web page appear or act in a certain way.
  3. Why are we learning HTML? It is the foundation of a web page.
  4. What is an HTML tag? Tags open and close the content that is being put into a webpage.
  5. What is the structure of an HTML tag? The structure of an HTML tag includes and opening tag <p> this is where the element takes effect, and the closing tag </p> this is where the element ends.
  6. What is an attribute? Attributes contain extra info about the element that you do not want to appear. i.e. style information, identifier info.
  7. What is the anatomy of an HTML document? The anatomy of a HTML is a combination individual HTML elements that make up a basic web page.
1 Like
  1. What is HTML?
    Hypertext 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?
    Describing the structure of Web pages

  3. Why are we learning HTML?
    Learning how to code allows you to bring out your personality on your own website, enables you to stand out from the crowd, contribute to projects better, helps you understand and explore other languages and provides you with an opportunity to transition into a different career.

  4. What is an HTML tag?
    An HTML tag is commonly defined as a set of characters constituting a formatted command for a Web page . At the core of HTML, tags provide the directions or recipes for the visual content that one sees on the Web

  5. What is the structure of an HTML tag?
    header
    navigation bar
    main content
    sidebar
    footer

  6. What is an attribute?
    Attributes contain extra information about the element that won’t appear in the content.

  7. What is the anatomy of an HTML document?
    The anatomy of HTML element is the opening tag, followed by content, followed by the closing tag.

1 Like
  1. What is HTML?
    HTML is a Mark up language . HTML =Hyper Text Mark up language

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

  3. Why are we learning HTML?
    HTML allows you to build websites and understand the back end code for websites. learning this will and java script will enable plugging in smart contract code at a later date but understanding the base functionality is key to enable this.

  4. What is an HTML tag?
    An HTML tag is the name of an element which is encased in opening and closing brackets which tells us where the element starts and ends.

  5. What is the structure of an HTML tag?
    The structure of an HTML tag is an opening tag in in angular brackets then followed by content followed by closing tag which must contain a forward slash within the angular brackets. content
    This structure is called an comprises an Element

  6. What is an attribute?
    An attribute is addittional information that you do not wish to appear in the content to be displayed on the web page.
    An attribute should always be in the form outlined below.
    A space between it and the element name (or the previous attribute, if the element already has one or more attributes)
    The attribute name followed by an equal sign.
    The attribute value wrapped by opening and closing quotation marks.
    E.G this opeing tag of an element

  7. What is the anatomy of an HTML document?
    An HTML page starts with the tag and ends with
    contained within this is the head which encapulates the meta and tile elements
    following the head is the body which contains the content of the web page.

this is always required open HTML tag open head tag which contains meta and title meta element sets the characters your document will accept My test page title element will appear in the search bar close head tag open body tag content of website is inbetween open and closed body tags closed body tag and finally closed HTML tag
3 Likes

What is HTML?
HTML stands for Hyper Text Markup Language.

What is HTML used for?
It is used to give structure to webpages.

Why are we learning HTML?
We are learning HTML because we need to learn how to make a front end for our apps.

What is an HTML tag?
A tag is a way to give behavior to the text or images on your web page.

What is the structure of an HTML tag?
Opening tag, Content, Closing tag

What is an attribute?
Attributes contain extra information that doesn’t appear in the actual webpage content.

What is the anatomy of an HTML document?

3 Likes

HTML is hyper text markup language and is used to code and format web pages. We are learning HTML so that one day we might be able to construct an interface to WEB 3 apps that we code using solidity.

An HTML tag is used to specify a part element of the HTML document and is opened with angle brackets containing a letter and closed similarly but with a forward slash before the letter e.g.

to open and

to close. The tags may contain attributes which specify extra information such as formatting.

An HTML document must include must include a number of elements, specifically a doctype preamble, root element, head, charset, title and body.

1 Like
  1. HTML (Hypertext Markup Language) is a programming language.
  2. HTML is used to structure a web page and its content.
  3. Because without a proper front-end we wouldn’t be able to show our dapps on the web.
  4. An HTML tag is a piece of code that defines the kind of content.
  5. <‘tag> “CONTENT” </tag’>
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. An HTML document is composed of HTML elements that are composed by: Tag (opening and closing), Content, Atributes.
1 Like
  1. What is HTML?
    HTML is the standard language for displaying text and other media on websites.

  2. What is HTML used for?
    Determining how different content on websites appears and behaves.

  3. Why are we learning HTML?
    Websites are a huge gateway to information, and it’s important that all developers know how they work. In our case, as we learn about programming smart contracts, the website will act as the front end and therefore we need to understand its operation.

  4. What is an HTML tag?
    An instruction which tells a website how to display content.

  5. What is the structure of an HTML tag?
    …content…

  6. What is an attribute?
    Extra information about and HTML element which is not displayed in the content itself.

  7. What is the anatomy of an HTML document?
    Tags stating that it is, in fact, an HTML document, head elements which provide general formatting and title options, and all the elements that display the content of the page.

2 Likes

1: What is HTML? HTML is a markup language the defines the structure if your content. It consists of a series of elements.

2: What is HTML used for? We use HTML to close or wrap different parts of the content to make it appear a certain way of act a certain way.

3: Why are we learning HTML? We are learning HTML so that we can structure our content in the way that we want our readers to see or experience our content.

4: What is an HTML tag? A tag is used for creating an element. The name of an HTML element is the name used in angle brackets such as

for paragraph. Note that the end tag name is preceded by a slash character

and that in empty elements, the end tag is neither required nor allowed.

5: What is the structure of an HTML element? <p> Hello this is me!</p>

6: What is an attribute? An attribute is extra information about the element that you don’t want to appear in the actual content.

7: What is the anatomy of an HTML doc?

<!DOCTYPE html>
<html>
     <head>
          <meta charset="UTF-8"
          <title>hello everyone, my first line of code!</title>
     </head>
     <body>
          <img src="images/photo.png" alt=this is a photo of my in a New York Yankees hat dressed in a black t-shirt and jeans">
</body>
</html>
1 Like
  1. What is HTML?
    HTML is a type of code language (a markup language).

  2. What is HTML used for?
    HTML is markup language used to structure content in a webpage

  3. Why are we learning HTML?
    Because webpages are the front-end that people will utilize to interact with apps created on the blockchain

  4. What is an HTML tag?
    Tags are the names of the element types that will encase the content we are structuring.

  5. What is the structure of an HTML tag?
    < tag > content

  6. What is an attribute?
    An attribute is the characteristic associated to an element.

  7. What is the anatomy of an HTML document?

  • <!DOCTYPE html> — doctype. It is a required preamble. In the mists of time, when HTML was young (around 1991/92), doctypes were meant to act as links to a set of rules that the HTML page had to follow to be considered good HTML, which could mean automatic error checking and other useful things. However these days, they don’t do much and are basically just needed to make sure your document behaves correctly. That’s all you need to know for now.
  • <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.
2 Likes
  1. What is HTML? HTML is Hyper Text Markup
    Language in which consists a series of
    programmed code elements / tags : paragraphs ;
    a list of bulleted points ; images ; data tables ;
    Links.

  2. What is HTML used for? HTML is used for the
    structuring of a web page and its content.

  3. Why are we learning HTML? We are learning
    HTML in order to incorporate Web 1 & 2 into Web
    3, as to determine the functionality / utility of
    Protocol / Dapp.

  4. What is an HTML tag? An HTML tag is used to create an element, opening and closing the element / DOM.

  5. What is the structure of an HTML tag? The structure for an HTML tag is

    Bitcoin Rocks

  6. What is an attribute? An attribute is the extra
    information about the element that you don’t want
    to appear in the actual content. <p Gold”
    Solomon’s-note”>Bitcoin Rocks

  7. What is the anatomy of an HTML document? The anatomy of an HTML document is :

: Documents Preamble : Wraps all the pages content - Opening : Describes the Data of, in, and, or on the Webpage - Example: Key words /Search : Sets the documents character language. Compatible to vast majority of all written languages.
<title>My test page</title> : Sets the Web 
          Browsers title page ; Bookmark / Favorite 
: container of all stuff included on the HTML page that is not shown viewers. Keywords ; Page Description appearing in Search results ; CSS to style our content ; character set declarations, Etc. : All of Content that is Shown to the User.

: Imbedding of Image.

: Content Shown to User. : Wraps all pages contents - Closing
1 Like

Great work! I read this and learned a bit. Very extensive work. Keep it up!

2 Likes
  1. **What is HTML?
    hypertext markup language is a programming language for the web
  2. **What is HTML used for?
    to build all websites
  3. **Why are we learning HTML?
    to be able to display your projects on a website
  4. **What is an HTML tag?
    a direction for the browser so the information you want to put out gets showen correctly
  5. **What is the structure of an HTML tag?

like this for example

6. **What is an attribute? extra information inside the tags that you don't want to be shown but might need to classify the tags on your html document and be able to make changes to several tags at the same time 7. **What is the anatomy of an HTML document? the basic elements it needs to be displayed in a browser
1 Like
  • What is HTML? HTML meanning is HyperText Markup Language. Is the code use it to give structure and content to a web page
  • What is HTML used for? The HTML code define de structure of the content of the webpage
  • Why are we learning HTML? WIthout the html code we cant deploy informattion in the web
  • What is an HTML tag? The tag is the name of the element
  • What is the structure of an HTML tag? <…> and it should close with </…>
  • What is an attribute? The attribute gives extra information abput the element. But didnt appear in the webpage
1 Like
  1. What is HTML?´
    HTML is a markup language and defines the structure of content.

  2. What is HTML used for?
    It defines the xtructure of a webpage.

  3. Why are we learning HTML?
    To create webpages.

  4. What is an HTML tag?
    A tag defines how content like text or images are portrayed.

  5. What is the structure of an HTML tag?
    There are opening and closing tags. The opening tags consist of opening and closing angle bracktes with the name of the element between them. The closing tags consist of an angle bracket followed by a forward slash, the elemnt name and the closing angle bracket.

  6. What is an attribute?
    An attribute contains information which will not be shown in the actual content. They contain information about the content inside the tags.

  7. What is the anatomy of an HTML document?
    The structure is as follows:
    doctype: a required preamble, defines the ruleset of the code
    html : encloses the whole content of a page.
    head : defines content which will not be shown to viewers, such as search tags.
    meta charset: defines which set of characters can be shown.
    title : shows the title of the website
    body : inside the body is the content of the page like text and pictures.

1 Like
  1. 2 HTML is a programming language used to organize a web page.
  2. Because HTML is used at building the majority of the web pages. It is a sort of foundation for web development.
    1. A set of symbols that are defining a beginning and and end of an element. The beginning and the end look the same, with the exception of an forward slash that are marking the end of the element.
  3. An attribute is a complex feature of an element that won’t be displayed.
  4. Document type, head, body
1 Like
  1. HTML stands for Hypertext Markup Language and it is the code to structure a webpage and its content.

  2. It consists of a series of elements, which you use to enclose and wrap content to make it a certain way or act a certain way. It really is the basic structure of a webpage

  3. We are learning HTML because it is a good starting point to learn how to program because of its basic use and structure. Also it is the skeleton of webpages.

  4. The tags is where the element begins and ends.

  5. It consists of the opening and closing tags and the content of the element.

  6. An attribute contains extra information within an element that you don’t want to appear in the content.

My test page My test image
1 Like
  1. Hypertext Markup Language
  2. It is the protocol that web pages uses to display stuff from the internet
  3. HTML is essential to the web, so we have to use it
  4. A tag is what makes the browser recognize what type of content it has to show and in what way.
    5.A tag starts with an opening tag and ends with a closed ; note the / or you get weird results
    6.An attribute specifies some additional properties regarding the content included inside a tag.
  5. An HTML page always starts with the tag , it has a where all the info needed to the website that won’t appear as a content (title, descriptions, seo, scripts and so on), and finally the where all the content lies. All these tags need to be closed
1 Like
  1. What is HTML?
    HTML is a markup language which structures the content we want to display on a web page. It consists of elements which can be coded to display different styles and messages.

  2. What is HTML used for?
    HTML is the backbone of the modern web, it is how text, images, games, etc. are displayed on web pages.

  3. Why are we learning HTML?
    We are learning HTML to get a strong understanding of the basics and core of the internet in order to progress to blockchain and smart contracts. We must be able to understand the internet in order to program it.

  4. What is an HTML tag?
    A tag is used for creating an element it precedes content and encloses content.

  5. What is the structure of an HTML tag?
    It is the name of the element wrapped in opening and closing angle brackets.

    Hello, how are you doing

  6. What is an attribute?
    Attributes are modifiers and content you don’t want to display on the web page.

  7. What is the anatomy of an HTML document?

WITHOUT THE SPACES BETWEEN ANGLE BRACKETS AND TEXT

  • < !DOCTYPE html >
  • < html >< /html >
  • < head >< /head >
  • < meta charset=“utf-8” >
  • < title >< /title >
  • < body >< /body >
1 Like
  1. HTML means Hypertext Markup Language. It helps to place our content in the wright way on a web page
  2. This is a tool that translates the computer language and shows the user an understandable content. Every computer can read this code.
  3. It’s very important to know this for creating new websites
  4. A tag shows the computer that the content is writtem in HTML
  5. first is beginning and second is end
    6.An attribute is used to note special features of an element
  6. Head and body
1 Like