HTML Reading Assignment

  1. What is HTML?

Hypertext Markup Language

  1. What is HTML used for?

Is is the code that structures the content of a webpage.

  1. Why are we learning HTML?

It is the most basic building block of any webapge.

  1. What is an HTML tag?

It assigns a spefific attribute to a piece of content in the code.

If you want to make string a paragraph you write

The string on its own

  1. What is the structure of an HTML tag?

Opening tag, Content, Closing tag
6. What is an attribute?

IT give extra information motion about an element that you do not want to see on screen.

  1. What is the anatomy of an HTML document?
1 Like
  1. What is HTML?
    HTML is a markup language that will allow your website to appear a certain way, or act a certain way.

  2. What is HTML used for?
    HTML is used to build websites in a formatted way.

  3. Why are we learning HTML?
    We have to understand the basics and build websites so that we can later learn to have smart contracts interact with them. A smart contract linked to a website would make it more user-friendly.

  4. What is an HTML tag?
    A tag is used for creating an Element. You would use a tag at the beginning of an element and then you would close the tag at the end.

  5. What is the structure of an HTML tag?
    An example for a paragragh you would use < p > then add text and close with < /p > the forward slash would signify the end of the element and paragraph in this case.

  6. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content. An 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 value, with style information, and other things.

  7. What is the anatomy of an HTML document?

WITHOUT THE SPACE AFTER EACH

< !doctype html >
< html >
< head >
< title > Insert Title Here < /title >
< /head >
< body >
< p > Insert Paragraphs here < /p >
< /body >
< /html >

1 Like
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    HTML is used to structure a web page and its content, organized into paragraphs or bulleted points, or using images and data tables.

  3. Why are we learning HTML?
    We’re learning HTML because it is the vehicle for us to essentially advertise ourselves and any dapps we develop.

  4. What is an HTML tag?
    An HTML tag is a modifier that will create elements in code, such as p to denote the beginning of a paragraph and /p to signify the end of the paragraph. In actual HTML though, the tags would have angle brackets < and > around them.

  5. What is the structure of an HTML tag?
    An opening tag contains both angle brackets < and > as well as the name of the element, such as p for paragraph, which is wrapped in the brackets. A closing tag is identical to the opening bracket, except it also contains a forward slash before the element name.

  6. What is an attribute?
    An attribute is a component that contains extra information that the developer doesn’t want to appear in the actual content. For example, you can use the ‘class’ modifier to assign a non-unique identifier to the element, which allows it and any other of the same class to be targeted by other pieces of code.

  7. What is the anatomy of an HTML document?
    With angle brackets around each line below, HTML documents are typically as follows:

!DOCTYPE html
html
head
meta charset=“utf-8”
title > Title Here </title
/head
body
img src=“Imagelink.png” alt=“This Image”
p> Words and other text </p
/body
/html

1 Like
  1. What is HTML?
    Html is hypertext markup language. It is a code used to structure a web page and its content.

  2. What is HTML used for?
    It is used for structuring a website.

  3. Why are we learning HTML?
    We are learning html to create the foundation of programming.

  4. What is an HTML tag?
    A tag is used for creating a element.

  5. What is the structure of an HTML tag?
    The structure of an html tag consists of a opening tag, content, and then the closing tag.

  6. What is an attribute?
    A 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?
    The anatomy of an html document consists of

1 Like
  1. What is HTML?

HTML stands for hypertext markup language and is code used to structure a static webpage and its content.

  1. What is HTML used for?

HTML is used to define the structure of the content of a webpage.

  1. Why are we learning HTML?

Because it is foundational to creating a static website. Without the ability to create a static webpage, we won’t be have the ability to make it dynamic and programmable.

  1. What is an HTML tag?

An HTML tag is used for creating an element, a series of elements are used to structure your content with HTML.

  1. What is the structure of an HTML tag?

You have an opening tag and a closing tag for an element. Take the name of an element and place it within the opening tag , followed by the element and the closing tag’s name is preceded by a slash .

  1. What is an attribute?

An attribute contains extra information that you don’t want included in the actual content. Attributes have an attribute name and an attribute value.

  1. What is the anatomy of an HTML document?

The anatomy of an HTML document is the elements that need to be included and combined to create an HTML page. This includes the doctype, html tags, head and body.

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?
    It is used to structure a web page and it’s content.

  3. Why are we learning HTML?
    Because we need to develop a front end or user interface to our programs. This will be needed for DApps and smart contracts.

  4. What is an HTML tag?
    A pair of identifiers usually consisting of an opening and closing pair, that structures a certain piece of content, like a header, a list element, etc. Sequences of tags together structure the content of a document.

  5. What is the structure of an HTML tag?
    The opening, content, and closing. All together make up the element.

  6. What is an attribute?
    An attribute is a way to add extra info to the element with some nesting. The first inner element is the head and it describes the webpage. After this comes the body which contains the main content.

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

1 Like
  1. What is HTML?

Hypertext Markup Language

  1. What is HTML used for?

HTML is used to structure a webpage.

  1. Why are we learning HTML?

To eventually be able to create web based applications that interface with smart contracts.

  1. What is an HTML tag?

It names and element and signifies where an element begins and ends.

  1. What is the structure of an HTML tag?

Opening and closing tags. Opening tags consist of an opening bracket followed by the name of the element followed by any attributes followed by a closing bracket. Closing tags consist of an opening bracket followed by a forward slash followed by the name of the element followed by a closing bracket.

  1. What is an attribute?

Extra information you want to include in the element but not in the content

  1. What is the anatomy of an HTML document?
    (Had to remove brackets to get the text to appear)
    !DOCTYPE html
    html
    head
    meta charset=“utf-8”
    title /title
    /head
    body /body
    /html
1 Like
  1. Hypertext Markup Language .
  2. It is used to structure a web page and its content
  3. We are learning because we will be writing smart contracts for which the front end will be the website our smart contract interacts with
  4. Tags define how the content appears on the website, eg,

    (paragraph)

  5. A tag opens and closes
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy of a HTML document - <!DOCTYPE html> - doc type - the HTML element - sets the character your doc should use to UTF-8- title element` - body element
1 Like
  1. Hypertext Markup Language is script language that is a set of symbols/codes inserted into a file to display on the internet.
  2. Used to structure a webpage and its content
  3. It used to design the user/reader area of the website so that ideas can be accessible and communicated. A good starting coding language to learn general structure
  4. Tags are at the beginning or end of an element. They allow formatting such as bold, italic, tables, paragraph etc
  5. Tags are enclosed in angular brackets
  6. Attributes contain extra information about the element you don’t want in the actual content
    The DOMS, document object model displays the actual page. The elements are used to enclose different parts of the content to make it appear or act a certain way
1 Like
  • What is HTML?
    Html is a markup language that defines the structure of your content
  • What is HTML used for?
    HTML is used to structure a webpage and its content
  • Why are we learning HTML?
    to have the tools needed to build a website that can interact with the blockchain
  • What is an HTML tag?
    Tags enclose your content to make it appear a certain way
  • What is the structure of an HTML tag?
    <“TagStart”></“TagEnd”>
  • What is an attribute?
    attribute contains extra information about the element that you don’t want to appear in the actual content
  • What is the anatomy of an HTML document?
    doctype, html element, head element, title element, body element.
1 Like
  1. What is HTML?
    HTML stands for Hyper Text Mark up language. Mark up language in computer text processing is used for annotating a document in a way that is visually distinguishable from 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.
  2. What is HTML used for?
    Its most widely used for web page development to structure websites. The 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.
  3. Why are we learning HTML?
    I want to get into blockchain coding as a creator and therefore i want to learn .HTML is the foundation for understanding computer language so I can program the language or code to enable the compute to do what i want it to do .
  4. What is an HTML tag?
    An HTML tag is part of the elements that define the starting and closing of content. An HTML element is defined by a starting tag. If the element contains other content, it ends with a closing tag The enclosing can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, etc
  5. What is the structure of an HTML tag?
    A tag starts with an opening , then content and finishes with a closing tag
1 Like
  1. What is HTML?
    HTML is a markup language that defines the structure of your content.

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

  3. Why are we learning HTML?
    HTML allows us to build a website which can interact with smart contracts.

  4. What is an HTML tag?
    A tag encloses the content to create an element. For example it can make it so the content is a paragraph, or a hyperlink and so on.

  5. What is the structure of an HTML tag?
    An HTML tag consist of an opening tag and a closing tag. It is the name of the element (ie ‘p’) wrapped in opening and closing angle brackets (

    ), with the closing tag having a forward slash before the element name (

    ).

  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?
    Individual elements combined form the anatomy of an HTML document.

2 Likes

Hyper Text Markup Language-code to structure content and webpag, a serie of elements

A code used to get info from the internet on your pc screen

Becaused it is the language you need to know to get things on you screen

A tag creates an element

Opening tag, Atribute Closing tag

Attribute - extends the element and has 2 parts- attribute name and the attribute value. It contents extra info

<!DOCTYPE html>
<html>
<head>
<meta charset>
<title>
<body>
2 Likes

What is HTML?
HTML stands for Hyper Text Mark Up Language which describes the structure of Web Pages using markup. Hypertext means that it is the text which contains link to other texts and Mark up means that the web would be a web of documents was the early thought for the web since the web was primarily used for research documents.
What is HTML used for?
HTML is us HTML is used to create electronic documents called pages, they are displayed on the Internet. Each page contains a series of connections to other pages called hyperlinks. Every web page you see on the Internet is written using one version of HTML code or another.
What is HTML Tag?
The HTML Tag represents the root of the HTML Document.
The Tag is Container for all HTML Documents.
What is Structure of an HTML Tag?
An HTML document is composed of three parts:

  1. a line containing [HTML version information
  2. a declarative header section (delimited by the HEAD element),
  3. a body, which contains the document’s actual content. The body may be implemented by the BODY element or the FRAMESET element.
    What is an attribute?
    An Attribute is a specification that defines the specific value of propert of an object, element or file.
    What is the anatomy of the an HTML document?
  4. 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.
  5. 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.
  6. The content: This is the content of the element, which in this case, is just text.
  7. The element: The opening tag, the closing tag, and the content together comprise the element.
1 Like
  1. What is HTML?
    HTML stands for HyperText Markup Language
  2. What is HTML used for?
    It is used to structure a webpage
  3. Why are we learning HTML?
    It is one of the main basics and is needed to understand how everything works
  4. What is an HTML tag?
    It consists of the element, wrapped by opening and closing angle brackets, and is used to indicate from where to where the element begins or starts and ends to take effect.
  5. What is the structure of an HTML tag?
    It starts with an opening angle bracket, followed by the element and a closing angle bracket. Followed by the content and ending with an opening angle bracket, a forward slash, the element and a closing angle bracket.
  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?
    It is starting with the doctype, followed by the root element , potential , the character set with , the title with and last but not least the body with .
1 Like
  1. Hypertext Markup Language.
  2. It defines the structure of content in a web page. It is used for enclosing,or wrapping different parts of the content to make it appear a certain way or act a certain way.
  3. WE need to learn how to structure a web page as a basic part of our Blockchain programming training.
  4. It is a part of HTML used to create an element. It specifies where the element begins and ends.
  5. Element:
  • opening tag- content - closing tag
  1. It is a part of HTML that contains extra information about the elment that you don’t want to appear in the actual content.
  2. Anatomy of HTML Doc:
  • doctype: required preamble
  • html: wraps all content on entire page
  • head: contains things you want to include but not show.
  • meta charset: characters
  • title: title of page
  • body: all the content you want to show.
1 Like
  1. What is HTML? Hypertext markup language. Web pages are written in HTML, and web browsers render the code into a page.
  2. What is HTML used for? It’s used to build basic frame of web page.
  3. Why are we learning HTML? It’s fundamental building block in web development and web pages are important.
  4. What is an HTML tag? <h1> This is a tag </h1>
  5. What is the structure of an HTML tag? <p> Like that </p>
  6. What is an attribute? It’s a parameter/property for an element. It does not render as part of the web page.
  7. What is the anatomy of an HTML document?.
    <!DOCTYPE HTML>
    <html> <head> <title> </title> </head> <body> </body> </html>
1 Like
  1. HTML stands for Hypertext markup language and it is a markup language that allows you to structure a webpage and its content.

  2. HTML is used to design webpages and structure the layout of the websites content.

  3. We are studying HTML to learn how to design and interact with the front end of our smart contracts and set a foundation for the rest of the course.

  4. An HTML tag is part of an element that delineates some content and instructs the computer as to how the content it contains should be displayed.

  5. The structure of an HTML tag consists of angle brackets, the name of the element, and the closing tag has a forward slash to represent the end of the element.

  6. An attribute is an addition made to the element tag that contains extra information about the element it is added to.

  7. An HTML document begins with “!DOCTYPE html” followed by the “html” element that wraps the content on the entire page. Inside of which is usually elements such as “head”, “meta charset”, “title”, “body”, and “img” to structure the content and decide which characters to allow in your document.

2 Likes

1)HTML stands for Hyper Text Markup Language .

2)HTML is the code that we use to structure a web page as we want to.

3)we are learning html to be able to make our own graphical user interface once we finish coding our own Dapps . and as Ivan said : to flex :stuck_out_tongue:

4)the tag is a special syntax we use to structure our elements in the web page as we want , it consists of a name written between angular brackets.

5)the beginning tag is the name written between angular brackets , while inn the endig tag we add a slash -/- before the name.

6)the attributes are additional information about the elements , it comes after the beginning tag.

7)it starts with the < html > , then the < head >its like a title , then the < body > which the content.

  1. What is HTML? Hypertext markup language
  2. What is HTML used for? code used to structure a webpage.
  3. Why are we learning HTML? To get familiar with scripting.
  4. What is an HTML tag? Code that initiates elements
  5. What is the structure of an HTML tag? Opening tag, attributes, content, closing 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
1 Like