HTML Reading Assignment

What is HTML?

HTML is a markup language that defines the structure of your website, paragraphs, headers and so on.

What is HTML used for?

HTML is used to structure a web page and its contents

Why are we learning HTML?

I didn’t see the answer in the article, but from all the previous material, it seems important to learn HTML

  • As a foundation for learning JS, C++ and on to programming smart contracts
  • There is no point in programming smart contracts if we have no way for others to access them! Therefore it is important to be able to build a coherent front end as well as the back end.

What is an HTML tag?

A tag is the portion of an element that defines it. Some tags have open and closing tags in order to create the completed element, other tags are open, like the <img tag used to embed images.

What is the structure of an HTML tag?

From what I understand, most tags are structured as follows, , there are other elements that don’t have the closing part, and can look like this <example content=”hello world”>

What is an attribute?

An attribute is information that you don’t want to appear in the final rendering, but gives value to an element, such as giving a name to a class for later stylization.

What is the anatomy of an HTML document?

At the very top, the doctype is defined

Next is the which wraps the entire document

Then there is the header which contains the meta charset and title

Outside the header there is the body of the document

  1. HTML is a markup language which helps in designing web pages.
  2. HTML is used to present web page in a structured form.
  3. We learn HTML to create simple web page that are required for the front end to interact with the backend.
  4. Tag is used to define web element using angular brackets.
  5. Structure of HTML looks like content
  6. Attribute adds additional values to element to recognize it or describe it
  7. The HTML document starts with a <!doctype html> followed by tags like /,, etc. All tags need to be nested inside or outside of another tag and cannot be mixedup.
  1. What is HTML?

    HTML=HyperText Markup Language: define the structure of page.

  2. What is HTML used for?
    Give the base structure of web page.

  3. Why are we learning HTML?

    The first step to know how the website functions.

  4. What is an HTML tag?

    An HTML tag define how the browser format and display the content.

  5. What is the structure of an HTML tag?

    The opening tag, attribute, content, the closing tag (if it has).

  6. What is an attribute?

    Attribute provides additional information about html elements. An attribute made up of two parts: a name + a value.

  7. What is the anatomy of an HTML document?

    Declaration of type of document

… … …
  1. What is HTML?
    Hypertext markup language.
  2. What is HTML used for?
    Not a codebase per say, but a way to format information contained on a web page.
  3. Why are we learning HTML?
    Being able to easily interact with a smart contract running on a blockchain is most easily done through a webpage. So it is important to learn the building blocks starting at the simplest level before moving on to applying these fundamentals to more complex ideas.
  4. What is an HTML tag?
    Tags are used to format and properly layer the overall page and each element in it. The HTML tag itself tells a browser to read the information contained as a webpage for instance.
  5. What is the structure of an HTML tag?
    <> </> The tag opens and closes with less than and greater than symbols, with a forwards slash to end the tag. Some tags like does not have a close tag because it embeds the image itself and is self contained.
  6. What is an attribute?
    An attribute is used to create additional information in a set format along with a tag. Each tag has specific attributes that can be used to alter or add to it.
  7. What is the anatomy of an HTML document?
    The overall document can be typed up in lines that are most easily manipulated by the creator, but it must adhere to specific requirements for opening and closing tags, and putting them in a particular order to create the desired effect.
  1. What is HTML? Hyper text markup language is the tech that is used to structure a web page
  2. What is HTML used for? HTML is used to structure a web page by using certain elements to make it appear in a certain way.
  3. Why are we learning HTML? Because in future episodes we will be learning how to connect a web page to the blockchain.
  4. What is an HTML tag? Elements that wrap or enclose different parts of text.
  5. What is the structure of an HTML tag? open < tag > close < tag />
  6. What is an attribute? Attribute contains extra information about the element that can be altered.
  7. What is the anatomy of an HTML document? The core structure, doctype, heading, title and body using tags and attributes to create a web page.
  1. Code with the purpose of structuring elements of a web page.
  2. Structuring how to present content to a web page´s visitors.
  3. It is the basic language when dealing with web content. If you need to publish something online you will probably need html.
  4. The parts you use for opening and closing an element. You also have empty elements which do not have closing tags
  5. Opening and closing tag. The closing tag is the same as the opening with the addition of an “/”. Example:

    some text

  6. Additional information relating to the element which you do not wish to present in the actual content.
  7. The anatonomy:
  1. Doctype
  2. The type of coding like html
  3. Head
  4. Body

Hi!

1 & 2. HTML is a markup language that is used to indicate the structure of a web page. I see it as the skeleton of a web page or app.
HTML stand for: Hypertext Markup Language
3. To be able to expose our work online and show case what we have created.
4. An HTML tag is used to wrap the elements in a html page.
5. There’s a opening tag, content, closing tag. All this make
an element
6. Attributes are contained inside the opening tag and are used to modify/define certain aspects on an element like its class, the size or its positioning and much more.
7. A head and a body, There’s the doctype. Then in the head there’s meta tags, scripts, css and in the body there’s the content displayed to the user.

  1. HTML is a mark up language that defines the structure of your content. It consists of a series of elements used to enclose or wrap different parts of your content to look or act a certain way.

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

  3. We are learning HTML so that we have a foundation on how to build a basic web page which is the front end for any program.

  4. An HTML tag states where an element begins or starts to take effect.

  5. The structure of an HTML tag is with the name of the element wrapped in closing and angle brackets (opening tag) and the (closing tag) is the same except there is a forward slash where the element name begins.

  6. An attribute is extra parts of the element that you do not want included in the content.

the root element that wraps all the content on the entire page. This element sets the characters and sets the document should use to UTF-8 and this includes most characters from the majority of written languages. Sets the title of your page. Which is the title that appears on the web browswer tab your page is loaded in. Contains all content on your web page you want people to see when they visit ; games, text, audio, images.

What is HTML?

  • HTML stands for HyperText Markup Language.

What is HTML used for?

  • It is a markup language, not a programming language like Python that is used to render a web page and its content how you want it to look.

Why are we learning HTML?

  • We are learning HTML to help us know and create simple websites that will later allow us to interact with our blockchain programming.

What is an HTML tag?

  • Tags can make a word bigger or smaller, bold, etc. They can break up paragraphs of text. Be used to create links and place images in our web page.

What is the structure of an HTML tag?

  • It has an opening and a closing. If we have < p > indicating a new paragraph then we have to close this paragraph of text when we are done by using < /p >. Otherwise, if we don’t use this, our text on the web page will look like one giant block of text!

What is an attribute?

  • They are extra bits of information that can live within the tags. They are all made up of two parts, a name and a value.

What is the anatomy of an HTML document?

  • You have your !Doctype which is a required beginning from the early days of the Web. Next you have what is called the root element HTML and /HTML where all of the content on the web page will be in between. Next is HEAD and /HEAD which is keywords and a description of the web page. In between HEAD and /HEAD are the Meta Charset which tells the web page to include most characters from most written languages as well as TITLE and /TITLE which is where you place the title of your web page. Lastly is the BODY and /BODY which contains all of the content of your web page.
  1. HTML is not a programming language; it is a markup language that defines the structure of your content.
  2. HTML is used for enclosing, or wrapping, different parts of the content to make it appear a certain way, or act a certain way.
  3. Because we should be able to create a website (HTML) that interacts with the blockchain
  4. A HTML tag is a set of characters constituting a formatted command for a Web page.
  5. opening tag, closing tag, content and element
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. Head and body elements

Html is a markup language for programming the base foundation of a web site. We are learning html so we can get started with programming as it is the base for starting to learn to program and learn about Js Cpp and other programming languages used to make websites, games, smart contracts and more.

  1. What is HTML?
    HTML is the acronym for Hyper Text Markup Language. It is a form of programming language that is used to make web pages on the internet view-able; it is a markup language that defines the structure of your content.

  2. What is HTML used for?
    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. Why are we learning HTML?
    Because It’s the fundamental technology behind everything you see in a web browser, and it’s used (alongside other tech like JavaScript and CSS) to build everything from simple web pages to complex web applications and services.

  4. What is an HTML tag?
    An HTML element usually consists of a start tag and an end tag, with the content inserted in between:

Content goes here...

The HTML element is everything from the start tag to the end tag: 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. 1. 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.
  1. What is the structure of an HTML tag?
    1 – angle brackets (< >), which enclose HTML codes, and
    2 – the forward slash (/), which is used to “close” HTML expressions

  2. What is an attribute?
    Attributes contain extra information about the element that you don’t want to appear in the actual content.
    An attribute should always have the following:

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

  4. The attribute name followed by an equal sign.

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

  6. What is the anatomy of an HTML document?

My test page My test image The basic structure of an HTML document is referred to as the DOM, or the Document Object Model: — the doctype. It is required preamble 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. — the element. This element wraps all the content on the entire page and is sometimes known as the root element. — the 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. — 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. — the 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/favourite it. — the 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.

HTML is Hypertext Markup Language

HTML is used to display the content of a website

We are learning HTML to create websites and front ends of apps

HTML tags tell the content what to do

The structure of an HTML tag is: opening tag, closing tag, content, and element

An attribute applies additional properties to the content inside of the tag.

The anatomy of an HTML document is always

<html>
<head> Content </head>
<body> Content </body>
</html>
  1. HTML (HyperText Markup Language), is a markup language that defines the structure of the content.

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

  3. We learning HTML, because it´s a basic language to build a web page, which interacts with the customer in the front and runs a program in the back-end.

  4. An HTML tag shows where the element starts and ends to take effect.

  5. The structure of an HTML tag:
    Element= Opening tag + Content + Closing tag

  • (Opening tag)

    Content) My name is

    (Closing tag)
  1. An attribute contains extra information about the element, but isn´t show in the actual content.

  2. What is the anatomy of an HTML document?

  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    to scructure a webside

  3. Why are we learning HTML?
    to create interfaces in the end

  4. What is an HTML tag?
    A formatted command to structure a webpage

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

  6. What is an attribute?
    Is a property setting in the tags


  7. What is the anatomy of an HTML document?
    The names of a skeleton for a webpage, You have for example etc…

  1. What is HTML?
    HTML is an Markup language - not a programming language. It defines the structure of a Website.
  2. What is HTML used for?
    HTML is used to organize the content on a website and how it should be displayed.
  3. Why are we learning HTML?
    Because it is the outlook and the interface the user is confronted with.
  4. What is an HTML tag?
    Tags define what is happening with the wrapped content. Should it redirect to somewhere else or just stand as itself?
  5. What is the structure of an HTML tag?
    First you open it. And then you have to close it again with a foreward slash. < p> … < /p>
  6. What is an attribute?
    An attribute can be added inside a tag to specify the content inside. You can name it and refer to all the contents with the same attributes.
  7. What is the anatomy of an HTML document?
    element = Tag (Content) Tag
  1. What is HTML?

Code to organise the web page.

  1. What is HTML used for?

It is used to organise content, describe page.

  1. Why are we learning HTML?

To be able to create simple web page.

  1. What is an HTML tag?

Tag is a pointer when particular section starts and ends.

  1. What is the structure of an HTML tag?

It has opening and closing structure.

  1. What is an attribute?

It is extra information about the content that it belongs to, which can be used multiple times instead write it every time we need it from scratch.

  1. What is the anatomy of an HTML document?

It contains: and which wraps eveything else, , in the head section there are & , then there is for content like ,

, etc.

HTML INTRO

What is HTML?

Hyper Text Markup Language

What is HTML used for?

Defines the structure of your content

Why are we learning HTML?

To have a full understanding of how to build a webpage from scratch.	

What is an HTML tag?

Defines the name of the element, and dictates where the element begins.	 

What is the structure of an HTML tag?

<"name of element">...(content)...<"/name of element">

What is an attribute?

Contains extra information about the element that you don't wish to appear in the content itself.

What is the anatomy of an HTML document?

The doctype, <html> element, <head> element, <meta charset=""> element, <title> element, and <body> element.

	<!DOCTYPE html> Ensures document behaves correctly.

	<html></html> Wraps all content on the entire page, also known as "root" element.

	<head></head> Where you include all information not being shown on the webpage.

	<meta charset=""> Sets the character set your document uses, commonly <meta charset="UTF-8"> as it includes most characters from the majority of written languages. 

	<title></title> Sets the title of your page which appears on the browser tab, along with titling the bookmark for the page.

	<body></body> Contains all the content you wish to show users on your page.
  1. What is HTML? HTML is the code, a markup language that defines the structure of your content.
  2. What is HTML used for? It is used to structure a web page and its content.
  3. Why are we learning HTML? We should be able to build a website that interacts with blockchain and the smart contracts we create.
  4. What is an HTML tag? The < html > tag tells the browser that this is an HTML document. The < html > tag represents the root of an HTML document.
  5. What is the structure of an HTML tag? It has an opening tag, a closing tag and with content in-between.
  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 has the following elements: The doc type, , head, meta charset, title and body.
  1. *What is HTML?
    Hyper text markup language
  2. *What is HTML used for?
    Define formatted documents
  3. Why are we learning HTML?
    It is the foundation of creating well applications
  4. What is an HTML tag?
    A tag defines a type of element in a document.
  5. What is the structure of an HTML tag?
    CONTENT</TAG NAME>
  6. What is an attribute?
    An attribute defines a property of an element/tag
  7. What is the anatomy of an HTML document?
    HTML TAG
    HEADER
    BODY
    HTML CLOSE TAG