HTML Reading Assignment

What is HTML? Markup language
What is HTML used for? To structure a webpage
Why are we learning HTML? Its the base for all webpages so we need to understand the foundation
What is an HTML tag? It is used to open and close elements
What is the structure of an HTML tag? Opening tag, content, closing tag
What is an attribute? Not shown in the content but is used to define a specific value
What is the anatomy of an HTML document?

2 Likes
  1. What is HTML? Hyper text Markup language.
  2. What is HTML used for? To structure the web page and it’s content.
  3. Why are we learning HTML? It’s a good place to begin learn to write code.
  4. What is an HTML tag? It’s a way of specifying where you want your content to start and end
  5. What is the structure of an HTML tag? Has an opener and a closing with attributes within it.
  6. What is an attribute? Extra information you have but don’t want the reader to see.
  7. What is the anatomy of an HTML document?
    You have the specific doc type, followed by the HTML. Then the head which is what will show up when you search the page. Then tittle and body.
1 Like
  1. Hypertext Markup Language. It is not a programming language; it is a markup language that defines the structure of your content.

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

3)To be able to build webpages/websites and it’s a good place to start when learn programming.

4)HTML tag is used to name and construct elements by using different HTML tags.

  1. Opening and closing bracket, name of element, it can also contain attribute within in it and has forward slash for closing tag.

  2. Attribute contains extra information about elements.

  3. Anatomy of HTML consists of different element tags. HTML documents first is labelled with followed by root element that contains or wraps rest of elements on this page.

1 Like
  1. HTML is a Markup language that defines the structure of your content.
  2. HTML is used to structure web page and its content.
  3. We are learning HTML because we should be able to show our work. A lot of Dapps will use HTML on the front end of the site. So it will be useful to know to build in the front end and back end.
  4. A tag is a structure for defining elements.
  5. The structure of tags are these <>.
  6. An attribute is a way to have information that you do not want to appear on screen.
  7. Images, Marking Up Text, and Links.
1 Like
  1. What is HTML? Its not a programming language, more of an accent to a language.
  2. What is HTML used for? Making stuff fancy on a web page.
  3. Why are we learning HTML? Probably a foundation to help understand java or c++
  4. What is an HTML tag? Lets a browser read the source code and imbed special things.
  5. What is the structure of an HTML tag?

    xxxx</p?

  6. What is an attribute? Attributes are internal to the structure.
  7. What is the anatomy of an HTML document? Heads and bodies, additional structure can be added.

Brings me back to making my Myspace page look different from everyone elses. Adding bold and colored text, images, music etc.

1 Like

Html Basics

  1. What is Html?

Html stands for Hypertext Markup Language that defines the structure of a content. Html consists of elements that you can use to enclose, or wrap, various parts of the content to make it appear a certain way or act a certain way.

  1. What is Html used for?

Html is the code that is needed to give structure to a web page and its content, such as a set of paragraphs, a list of bulleted points, or images and data tables.

  1. Why are we learning Html?

We are learning Html so we can build an application that interacts with our smart contract.

  1. What is an Html tag?

An Html tag defines how your web browser formats and displays content. An Html tag usually has an opening and closing angle brackets.

  1. What is the structure of an Html tag?

The structure of an Html tag is as follows:

Some text goes here!

The text identifies our content that is being wrapped by our tag. I am using the paragraph tag as an example. When you combine all these components, we get an element.
  1. What is an attribute?

An attribute acts as an add-on to the tag and provides additional information to the element.

  1. What is the anatomy of an Html document?

The following is the anatomy of an Html document.

My test page My test image
1 Like

Continuing the discussion from HTML Reading Assignment:

What is HTML? (Hypertext Markup Language)

What is HTML used for? A code used for Structuring a web page and content.

Why are we learning HTML? To understand basis elements which can be use to endorse or wrap different parts of content and change in which to act and appear.

What is the structure of the opening tag! Names of element wrap in closing and opening angle brackets. Where it begins and starts. Closing tag. Content. Element.

What is Attribute? Contain extra information about the element that you don’t want to appear in content.

What is anatomy of an HTML document? HTML - Head - Meta set – Title --Body.

1 Like
  1. What is HTML?
  • HYpertext markup language
  1. What is HTML used for?

-used to structure a web page and its context.

  1. Why are we learning HTML?
  • to create web pages to launch dapps.
  1. What is an HTML tag?

-this is the center of how web pages are formatted.

  1. What is the structure of an HTML tag?

-opening tag, closing tag, content, element

  1. What is an attribute?

-contain extra info of the element that you dont want to appear in the actual content.

  1. What is the anatomy of an HTML document?
1 Like
  1. Hypertext Markup Language - it is a markup language that defines the structure of content.
  2. It is used to structure a web page and its content.
  3. To get started to learn other programming languages.
  4. In HTML, a tag is used for creating an element.
  5. Name used in angle brackets (< p>) and end tags name is preceded by a slash character (< /p>).
  6. It’s a part of element that extends it changing its behavior or providing metadata.

< !DOCTYPE html>
< html>
< head>
< meta charset=ā€œutf-8ā€>
< title>text
< /head>
< body>
< img src=ā€œsourseā€ alt=ā€œalternativeā€>
< /body>
< /html>
!Without the space after brackets!

1 Like
  1. What is HTML?

    HTML is a markup language that defines the structure of your content.
    
  2. What is HTML used for?

    We use it for structured a web page, paragraphs, a list of bulleted points, images or data tables.
    
  3. Why are we learning HTML?

    I think because to learn how to code, we need to know how to correctly write the code.
    
  4. What is an HTML tag?

    It is for utilicize words, it can make font bigger, maller, and so on.
    
  5. What is the structure of an HTML tag?

     It is the opening tag, the closing tag and the elements.
    
  6. What is an attribute?

    It is the extra information obout the element that you don't want to appear in the actual content.
    
  7. What is the anatomy of an HTML document?

    First we have <!DOCTYPE/html>, <html></html , <head>,<meta charset="utf-8>, <title><title>, <body>
2 Likes

1.What is HTML? Hypertext Markup Language!
2. What is HTML used for? A code used for structuring a web page and content
3. Why are we learning HTML? To understand base elements which can be use to endorse, or wrap different parts of content and minipulate to act and appear a certain way!
4. What is the structure of the opening Tag?
Names of element wrap in closing and opening angle tags…
Where it begins and starts. Closing tag, Content, and element.
5. What is Attribute? Contain extra information about the element that you don’t want to appear in content.
6. What is Anatomy of an HTML document?
HTML - Head - Meta Charset - Title - Body. .

1 Like

1.hypertext mark up language, its the foundation of every website
2.a way to place tasks, code, pictures, instructions or connecting to the database
3. its basic scripting language that connects with browsers
4.HTML- a tag that defines the element of usage required by the programmer
5.Open>Content
6.Attributes are added information about the element that doesn’t appear in the content
7.There are 2 elements
Head elements - gives page title and page formatting commands
body elements - add the HTML here.

1 Like
  1. What is HTML?
    HTML is not a programming language; it is a markup language that defines the structure of your content.
  2. What is HTML used for?
    Every web page you see on the Internet is written using HTML code.
    HTML ensures the proper formatting of text and images so browser may display them as
    they are intended to look.
    HTML also provides a basic structure of the page.
  3. Why are we learning HTML?
    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. What is an HTML tag?
    Something to define what type of content we have on the website. HTML tags are at the center of how Web pages are formatted.
  5. What is the structure of an HTML tag?
    A tag starts with an opening , has usually an attribute inside and finishes with a closing
  6. What is an attribute?
    Attributes r for example classes or ids that give tags the opportunity to give them more features / make them more individual.
  7. What is the anatomy of an HTML document?
    The way to wrap website code, like . Individual elements combined to form an entire HTML page
2 Likes
  1. markup language
  2. modifying and defining content
  3. to help understand the basic fundamentals of code
  4. tags are specific modifiers
  5. to open to close
  6. attributes contain information that is not viewed as content
  1. What is HTML?
    HTML is Hyper Text Markup Language that defines the structure of a webpage and its content.

  2. What is HTML used for?
    HTML is used to structure a webpage and its contents. To basically build the way it looks and functions.

  3. Why are we learning HTML?
    to familiarize us to programming code.

  4. What is an HTML tag?
    HTML tag is a marker that defines where an element begins and where it ends.

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

  6. What is an attribute?
    An attribute is extra information about the element that does not appear in the actual content, but gives the element a non-unique identifier that can be used to target it and other elements with the same category value for style information or other things.

  7. What is the anatomy of an HTML document?
    Doctype
    HTML
    HEAD
    Character set to be used inside HEAD
    TITLE
    BODY

  1. What is HTML? Hypertext Markup Language is the code used to structure a webpage.
  2. What is HTML used for? It defines the structure of your content.
  3. Why are we learning HTML? We want to enclose or wrap parts of content to make it appear or act the way we want to.
  4. What is an HTML tag? Tags enclose the elements in HTML to make a word or image link somewhere, italicize words, make font bigger or smaller, etc.
  5. What is the structure of an HTML tag? The structure consists of the opening tag, closing tag, content and element.
  6. What is an attribute? An attribute gives the element a non-unique identifier that can be used to target it with style information.
  7. What is the anatomy of an HTML document?
required preamble root element - wraps page content container for stuff that isn’t content you want others to see allows to handle any text content sets title of page content you want to show web users required preamble
1 Like
  1. What is HTML?
    HTML is a Hypertext Markup Language (it is not a programming language) which structures and designs the content (for example web site).

  2. What is HTML used for?
    It is used for structuring and designing the content (for example web site).

  3. Why are we learning HTML?
    We need to know how the frontened works. It is a basic language to learn. From that we can learn javascript easily which is a basic language for most other programming languages (for example solidity) - in other words we can learn other languages faster.

  4. What is an HTML tag?
    Tag is a tool how to divide the part of the text from other text and give it certain characteristics (for example make a paragraph, change colour, etc.)

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

  6. What is an attribute?
    Attribute is an extra information added to the element, for example identifier.

  7. What is the anatomy of an HTML document?
    doctype - document type
    html - wraps the content of HTML
    head - all that is not content for the users, for example title, keywords, etc.
    meta - what set of characters to use
    title - title of the page
    body - content

1 Like
  1. HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

  2. HTML is not a programming language; 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. 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. We will need to know HTML in order to demonstrate things we’ve done on the backend. You’ll need to be able to make a simple interface for your prototype.

  4. HTML tags state where the element begins or starts to take effect, also it defines what kind of element it is.

  5. The opening tag ā€œ<ā€œpā€>ā€ 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 ā€œ<"/ā€œpā€>ā€ 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.

  6. Example: class=ā€editor-noteā€ Attributes contain extra information about the element that you don’t want to appear in the actual content. Here, class is the attribute name and editor-note is the attribute value. The class attribute allows you to give the element 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.

  7. !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 — This element wraps all the content on the entire page and is sometimes known as the root element.

head — 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 — 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 — 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. it is a mark up language that defines the structure of your content .
    2.used to enclose or wrap different parts of the content to make it appear a certain way or act a certain way.
    3.are needed to make sure your document behaves correctly
  2. instructions to structure content

6.attribute contains extra information about the element that you don’t want to appear in the actual content.
7.html, head, body.

1 Like
  1. instructions to structure content

1 Like