HTML Reading Assignment

1.What is HTML?
It is a markup language (Not a programing language)
2.What is HTML used for?
It defines the structure of your content
3.Why are we learning HTML?
It allows you to interact the Front end part with the Backend
4.What is an HTML tag?
It is to enclose or wrap a content that can a word or an image etc.
5.What is the structure of an HTML tag?
The structure is an opening tag and a closing tag. Inside the tag you have the content
All togheter it is an element. The content can have an attribute.
6. What is a attribute?
It provides extra information about an element It as The following structure
opening tag name=“value” closing tag
7. What is the anatomy of an HTML document?
It is the structure of a document
Here an example of an anatomy

My Header page Title

Text Paragraph 1

Text Paragraph2

1 Like

1.HTML is Hypertext mark up language, this is the code used to structure a web page and its content
2.It consists of a series of elements which you choose to enclose or wrap different parts of the content to make it appear a certain way, or act in a certain way.
3.We are learning html as it is the basic language used for web pages on the internet and will visually interpret the contents of the site code you are creating.
4.this is the type or name of the element you are using.
5.An open tag the content and a closing tag.
6.An attribute is extra information about the element that wont appear in the content.
7.Anatomy of an HTML document:
a)doctype- to make the document behave correctly.
b)The element for example -this wraps the entire content on the page, sometimes know as the root element.
c)The head element -acts as a container for the information you are not showing on the html page.
d)An element class that sets the the character set your document should use.
e)A title element which sets the title of your page, which will appear in the browser tab.
f)Body element which is all the content you want to show to the end user, text, images, videos , games or anything else.

1 Like

1.HTML is not a programming language its a mark up language
2.used to programm websites with content
3.for web and blockchain development
4.browser recognise which type of content it has to show and in which way
5.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.
6. Attribute provides extra information for the element.
7.

My test page My test image ```
1 Like
  1. Hypertext Markup Language.
  2. Is the code used to structure a web page and its content.
  3. So we can better utilize the knowledge of building Smart contracts. When we know both (Smart contracts and building web pages) we can create Dapps.
  4. HTML Tag is part of HTML element. It consist of name of the element and also marks where the element begins and ends.
  5. Angle brackets <> and a name, example:

    , etc. End tag also contains /, example

    , …
  6. Attribute contains extra information about the element that we do not want to be visible in the actual content.
1 Like
  1. Hyper Text Markup Language that defines the structure of your content.

  2. Used for creating the building blocks which uses a series of elements to enclose or wrap different parts of your content.

  3. Because it is the basic knowledge needed to start learning web dev.

  4. A tag is the element used to wrap a piece of information so that it appears on a webpage in a certain way.

  5. Opening and then to close.

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

  7. The anatomy of an html document are the basic building blocks of a webpage, almost akin to that of an essay in some ways. You have the title or html element, head, paragraphs, and body elements to construct with.

1 Like
  1. HTML is the hypertext markup language used to program web pages

  2. HTML is used to give structure to a website or web page

  3. We are learning HTML because it is used in conjunction with making blockchain related applications

  4. And HTML tag is used to make any particular content behave a certain way on an html page

  5. An HTML tag is sctutured with the opening tag and close tag

  6. An attribute specifies some additional chacteristics
    Pertaining to the content in the tag

  7. HTML TAGS BODY TAGS ETC ETC ETC

1 Like
  1. HTML(Hyper Text Markup Language) is the code that is used to structure a web page and its content.

  2. HTML is used for defining the structure of content in a web page.

  3. We are learning HTML because it’s a basic language that is easy to start with before going into more complicated programing languages. And of course it’s also just practical to know, so that you have another tool in the tool box.

  4. An HTML tag is:

    1. 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. 2. 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.

  5. The structure of an HTML tag is

    < p > < /p >

  6. An attribute is text that contains extra information about the element that you don’t want to have appear in the actual content.

  7. The anatomy of an HTML document is:

    < !DOCTYPE html >

    < html >
    < head >
    < /head >
    < body >
    < /body >
    < /html >

1 Like

DonMichelin Questions

  1. HTML is a mark up language used to define the structure of content.
  2. HTML is used to design how the content is to be presented publicly and behind the scenes.
  3. Because it is essential when learning Javascript.
  4. An HTML tag is used to define the beginning and end of an element.
  5. There is an open and close to the HTML tag and sometimes they contain attributes.
  6. An attribute contain extra information that you don’t want to appear in the actual content.
  7. The Anatomy is , , , "meta charset=“utf-8”>, , and
1 Like
  1. HTML is a markup layer that defines the structure of the created content.

  2. HTML is used for if you have a series of elements which enclose (wrap) parts of the content to make it “appear” a certain way, visually. Also includes links to send you to other pages.

  3. We are learning HTML because it sets the foundation for coding. Everything is built on and from HTML, so learning how to do it ourselves is important.

  4. an HTML tag defines parts of the anatomy of the HTML document, whether its specifying the start/end of a paragraph, italicizing/bolding text, linking, imaging, etc.

  5. The HTML tag is basically

    or

  6. An attribute isn’t visible in the actual content, but serves as “non-unique identifiers” for navigating the code a bit. It especially works when linking another link, as the actual link used will be inserted as the “value” in an attribute

  7. The anatomy of an HTML document is, for example,

text

1 Like
  1. It is the Hypertext Markup Language.
  2. It used to program how websites display information.
  3. Because it is important to know how building a website from the backend works if you want to work in the online space. You will know how to do it, and also you will know how to hire someone to do it properly. Also gives you a better understanding of how websites interact with each other from the backend.
  4. An HTML tag identifies the beginning or end of a command. For example, if you want to show a paragraph on the website you would use paragraph tags to do this. :

    I like pie

  5. You have an opening tag which will start your command, , then the ending tag which will end your command
  6. An attribute is added information that you don’t want to be displayed to the website’s users. For example, it can organize some commands into classes.

a.) It starts with the HTML tag which signifies the beginning and end of your document.
b.) Then you have the Headers Tag which holds the page title as well as the page formatting commands.
c.) Then you have the Body tag which holds all of the text and general info that will be displayed to all website users.
d.) All of the tags must be open and closed properly, otherwise, you will get errors in your website’s appearence.

1 Like
  1. What is HTML?
  • Hypertext Markup Language
  1. What is HTML used for?
  • It’s used to structure the web page and its content.
  1. Why are we learning HTML?
  • So that we’re able to make small websites that interact with the blockchain.
  1. What is an HTML tag?
  • The tag wraps the content of the element. Shows the name of the element and where it ends.
  1. What is the structure of an HTML tag?
  • Opening tag - shows the name of the element
  • Closing tag - shows where the element ends.
  1. What is an attribute?
  • Attributes contain extra information about the element.
  1. What is the anatomy of an HTML document?
  • One HTML document has this elements in its structure:

    • < !DOCTYPE html>
    • < html > < /html> - wraps the content of the entire page
    • < head></ head> - container for the things, that are going to be included in the html page.
    • < title></ title> - sets the title of the page
    • < metacharset = “utf-8” - contains most of the characters we know.
    • < body></ body> - all the content, that you want to show.
1 Like
  1. What is HTML?
    HTML is a markup language which defines the structure of content.

  2. What is HTML used for?
    It is the programming basis for all websites in existence currently.

  3. Why are we learning HTML?
    To help enable us to be able to create front-ends accessible via internet.

  4. What is an HTML tag?
    HTML tags contain the element names assigned to it.

  5. What is the structure of an HTML tag?
    e.g.: <ename attrib="attribute info">Content content content</ename>

  6. What is an attribute?
    It contains extra information about the element that you don’t want to appear in the viewed content.

  7. What is the anatomy of an HTML document?
    HTML documents contain the following:
    a) doctype
    b) html element
    c) head element
    d) character set element
    e) title element
    f) body element

1 Like

1- hyper text markup language.
2- protocol used to create, as well as display and share information on the internet through a website.
3- to be able to build and construct the front end of the project that interacts with the backend "code:
4- is a group of characters that contains a set of rules or formats for displaying the information on the website
5- an opening tag such as

text… and then wrapped by a closing tag such as


6- is extra information on an element that you do not want to appear in the actual content.
7- opening tag , content, closing tag…@filip could you please clarify this point
1 Like
  1. What is HTML?
    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.

  2. What is HTML used for?
    HTML is used to create electronic documents (called pages) that are displayed on the World Wide Web. Each page contains a series of connections to other pages called hyperlinks

  3. Why are we learning HTML?
    To have learn to Build and Understand the Fundamentals of the Web. HTML are the basic for web development and design. And within the crypto-ecosystem, we will need to interact with smart contracts and having a web interface is the way to do it.

  4. What is an HTML tag?
    It is used to create an element on a web page, it can contain text, images or links to other information.

  5. What is the structure of an HTML tag?
    The basic structure is opening tag> Content</closing tag>
    An opening tag telling the page what to display, the information you want displayed and a closing tag. (It indicates the start and end of elements)

  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 to form an entire HTML page.

etcetera.

1 Like
  1. HTML is code which tells a browser what to display.
  2. It is used to program websites.
  3. It’s very easy to understand basics of programing?
  4. A tag is what makes the browser recognise what type of content it has to show and in what way.
  5. An opening tag and closing
  6. An attribute specifies some additional properties regarding the content included inside a tag.
  7. Doctype, html element, head element, body element.
1 Like

1: it means Hypertext Markup Language

2:you can code websites

3:because it’s good to know the basics about the things you interact with.i also believe that it will be helpful when learning programming languages.

4:the start and/or end of a HTML element

5:in my understanding a tag would be the start end of this element(with a < in front of p): p>insert conten here /p>

6:an attribute can contain extra info which aren’t visible to the user within the tag

7:an HTML document consists of different elements written in a certain way and order. There are different elements for different commands that are executed in written order. This would be an example(with > at the end of each line and without the dots in front of each line):

.<!DOCTYPE HTML .<html .<head .<meta charset="utf-8" .My test page</title
.</head
.<body
.<img src=“images/firefox-icon.png” alt=“My test image”
.</body
.</html

1 Like
  1. HTML is Hyper Text Markup Language, consisting of different elements that make your content appear or act a certain way with an end result of a webpage. It is not a programming language.

  2. HTML is the main protocol used to create hopefully friendly user experiences through webpages to display information.

  3. We are learning HTML to know how to create front-end websites for user experiences that will eventually be able to communicate and interact with smart contracts. It will also help realize similarities between different programming languages.

  4. An HTML tag tells the browser the DocType. The tag has both an opening and closing tag that can do many different things to enhance the appearance of what you’re trying to display.

  5. The structure contains an opening and closing tag that are similar in appearance. The opening tag holds the name of the type, and the closing tag has a forward slash to signify the closing of the element.

  6. An attribute holds extra information about the element that isn’t displayed in the actual content or webpage

  7. It contains a DocType at the start determining that it is HTML. There is then , , and , all with their respective and corresponding enders. There are many further complexities you can introduce such as lists, images, and headers within those functions.

1 Like

1.HMTL is a language for website coding
2.html is used for base coding on websites
3.to learn the function of both code and internet
4.The structure of an HTML tag has a title, header, followed, by a body, and also a start and end
5.structure of an html tag is used by putting a code basically which is (< >)in between the word “html” and for the code to work it needs two pieces of “html” code, one contiaing a slash that is on the bottom, and one on top without the slash.
6.an attribute is a tool to add more info on a element or tag
7.Head elements and body elements are the two elements, a head element provides scripted elements for the top of text/web

1 Like
  1. HTML stands for Hyper Text Markup Language.

  2. Used to define the structure of your content.

  3. HTML is a good language to learn for beginning programmers for it is not a programming language but many attributes might be able to be translated.

  4. An HTML tag is called an element.

  5. < Opening Tag> Content </Closing Tag>

  6. Attributes contain extra information about the element that you don’t want to appear in the actual content. Attributes allow you to give the element a non-unique identifier that can be used to target it.

  7. The anatomy of an HTML is an index.

1 Like
  1. HTML is a markup language.
  2. Used to create a static basic functioning website.
  3. To understand some basics first, also build a functioning site that can interact with our smart contracts/ blockchain.
  4. The opening and closing of an element.
  5. for example inserting a paragraph

    open and close content.
  6. additional functions added to an element.
  7. opening tag, closing tag, content and element.
1 Like