HTML Reading Assignment

  1. What is HTML?

Stands for Hyper Text Markup Language to construct a design in an internet browser.

  1. What is HTML used for?

Construct webpages, design architecture for the content.

  1. Why are we learning HTML?

We need an interface of our applications to communicate with the user, HTML helps us to build our webpage with presenting our content, let the user interact on an interface.

  1. What is an HTML tag?

An DOM element in composition of the interface.

  1. What is the structure of an HTML tag?

Encapsulated with less-than sign (<), and greater-than sign (>), includes attributes, opening and closing rules with slash symbol. i.e. <html> ... </html>

  1. What is an attribute?

An attribute in an html tag allows us specifying the tag, with its style, title, source path of an image etc… Besides, attributes are like the keys to front-end to be used by scripts or back end programming languages to generate the compositions or interact the information on the interface, like getting an email address of a user or setting a new text inside of the tag.

  1. What is the anatomy of an HTML document?

According to The World Wide Web Consortium’s open standards an HTML documents, today* must start with a preamble that defined the type of the language of the document about to be rendered by the browser with <!DOCTYPE html> string. <html> follows it as the first tag and we need a header definition of our document with <head> string. Then <body> comes and encapsulation of the front end, the interface begins. Our all design gets written in body element and we finish that nested architecture with the right syntax as weve seen in anatomy of an element, and the definite rule of writing and composition in languages nested objects better be indented byt TABS ^^ :white_heart:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>Infiltrate the Enthusiasm</title>
	</head>
	<body>
		Hello, friends! Let's build it!
	</body>
</html>

(*) HTML version 5

1 Like
  1. It is a markup language

  2. it is used for defining the structure of a web page

  3. to build a webpage

  4. it is an element of the language that makes the page appear or act in a certain way

  5. the structure consist of content between the opening tag and the closing tag

  6. is a piece of the element with information that you don’t want to appear in the actual content

  7. html, head, /head, body, /body, /html (sorry for my ignorance but if i try to write the structure with the < > it does not appear

1 Like
  1. HTML is not a programming language, it is a markup language that defines the structure of your content.
  2. HTML is used for to enclose or wrap different parts of the content to make it act a certain way.
  3. to understand the basics of making a webpage
  4. part of the anatomy of a HTML element
  5. A tag starts with an opening tag, an attribute an then finished with a closing tag.
  6. an attribute is used to denote special features of an element or tag
  7. opening tag, content , closing tag; together it is an element
1 Like
  1. HTML is the language to program the front end of a application or website.
  2. see nr. one
  3. Its just good to have a sense for frontend and backend… (if you know what i mean…) :slight_smile:
  4. Its a introduction into a codeline. So the browser knows whats to be displayed.
  5. Opening tag in <> - Text - Closing tag in </>
  6. A link can be an attibute or a picture.
  7. It should be well structured but it does not have to be.
1 Like
  1. HTML (Hyper Text Markup Language) is the code that is used to structure, organized and make a static webpage visible.
  2. To create a static webpage, pictures and text
  3. Because help us understand how a webpage work and to use in future for make more complex codding
  4. Is used for defines a part of structure of an webpages
  5. open and close tag and between usually a text:
  6. Attributes contain extra information about the element, which is put inside a beginning tag to not appear in the actual content.
  7. In very basics explanation is the form of HTML code: inside HTML tag we have elements: head tag, body tag, img tag .
1 Like
  1. HTML is hyper text markup language
  2. HTML is used for websites that have text images and hyperlinks but not much else
  3. we are learning html because it is the basis of building websites and then using javascript and other languages to add ontop of that to make interactive websites.
  4. Html tag is the root element and wraps the content under one tag
  5. opening tag, content, closing tag
  6. information in an element you dont want to appear in the content
  7. doument type, html element, head, body
1 Like

7. What is the anatomy of an HTML document?

Indeed sir(s), you can check this example so you can have a better picture on the HTML anatomy: HTML Anatomy example.

Remember you can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.


function formatText(){
    //wow such comment
    let words = "I'm a preformatted Text box, Please use me wisely!"
}

Hope this gives you a clear view of the subject, keep learning! :slight_smile:

Carlos Z.

2 Likes
  1. What is HTML?
    hyper txt makrup language
  2. What is HTML used for?
    its the protocol for how information is displayed on your browser
  3. Why are we learning HTML?
    its a good basic starting point for learning programing and everything viable on you browser /web is based on it.
  4. What is an HTML tag?
    its a command that defines an element.
  5. What is the structure of an HTML tag?
    its a opening and a closing tag marked by an “/” letting html know the end of the content
  6. What is an attribute?
    an attribute contains extra information, it controls the elements behavior.
  7. What is the anatomy of an HTML document?
    < !DOCTYPE html>
    < html>
    < head>
    < meta charset=“utf-8”>
    < title>
    < /head>
    < body>
    < /body >
    < /html>
1 Like
  1. HTML is a markup language not programming language
  2. It is used to wrap content in a certain way
  3. Because it defines the structure of a web page
  4. A tag defines a content where it should positioned and how it should be displayed
  5. opening tag, content, closing tag; together this is called element
  6. attribute assigns an additional information to the element which nobody can see.
  7. doctype html, head, meta, title, body
1 Like

What is HTML?
HTML (Hypertext Markup Language) is code.

What is HTML used for?
It is used to structure web pages and its contents.

Why are we learning HTML?
Design a web page to interact with a smart contract.

What is an HTML tag?
A tag is used to create an element.
They are placed at the beginning and end of an element.

What is the structure of an HTML tag?
A starting tag followed by an attribute and its value with text or just text with an ending tag.

What is an attribute?
Element identifier.
An attribute is a name with a value which is applied after a beginning tag and before the element. Its purpose is to advise which properties the element acquires.

What is the anatomy of an HTML document?

Consists 6 components

 <!DOCTYPE html> (Complies with HTML standards)

 <html>  (A element which wraps all the content on the entire page)     

 <head>  (Keywords/page description for browsers search results)  
                 
 <meta charset="utf-8"> (Encoding HTLM doc, Unicode for browsers) 

 <title>  (Title of the page, what appears in the browser) 

  <body> (All content to be shown, text/images/videos etc)
1 Like

What is HTML?

HTML ( H yper t ext M arkup L anguage) is code.

What is HTML used for?

It is used to structure web pages and its contents.

Why are we learning HTML?

Design a web page to interact with a smart contract.

What is an HTML tag?

A tag is used to create an element.

They are placed at the beginning and end of an element.

What is the structure of an HTML tag?

A starting tag followed by an attribute and its value with text or just text with an ending tag.

What is an attribute?

Element identifier.

An attribute is a name with a value which is applied after a beginning tag and before the element. Its purpose is to advise which properties the element acquires.

What is the anatomy of an HTML document?
Consists 6 components

<!DOCTYPE html>   (Complies with HTML standards)
 <html>        (A element which wraps all the content on the entire page)         
 <head>        (Keywords/page description for browsers search results)  
 <meta charset="utf-8">       (Encoding HTLM doc, Unicode for browsers)       
 <title>         (Title of the page, what appears in the browser) 
 <body>           (All content to be shown, text/images/videos etc)
1 Like
  1. HTML stands for HyperText Markup Language and consists of a series of elements
    which you can use to make content appear or act in a certain way.

  2. HTML is the code used to define the structure of a web page and its content.

  3. We are learning HTML to give us an understanding of how to create a web page.

  4. HTML tags are the building blocks of a HTML page.
    Tags provide the directions for the visual content that one sees on the Web. Enclosing tags can make
    a word or image hyperlink to somewhere else and can change font style or size etc.

  5. A HTML tag is any text enclosed between less than (<) and greater than signs (>).
    Most of the HTML tags require a start Tag and an end tag, end tag differs with the opening tag by a slash “/”.

  6. Within the element there can be attributes. Attributes contain extra information about the element that you dont
    want to appear in the actual content. The attribute allows you to give the element an identifier that can
    be used later to target the element with style information and other things.

  7. A HTML document consists of the following elements; doctype, html, head, meta, title and body.

1 Like
  1. What is HTML?
    HTML(HyperTextMakeupLanguage) is a makeup language used to define the structure of the web page and its content.
  2. What is HTML used for?
    It’s used for web page structure and its content.
  3. Why are we learning HTML?
    HMTL is the front end of Ethereum.
  4. What is an HTML tag?
    It is the name of the element.
  5. What is the structure of an HTML tag?
    Usually an HTML tag includes the opening tag and closing tag. the opening tag consists of the name of the element, wrapped in opening and closing angle brackets. the closing tag is as same as the opening tag, except that it includes 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?
    a. – the doctype
    b. – the element
    c. - the element
    d. - the element
    e. - the character set element
    f. - the element
1 Like

HTML Reading Assignment.

Welcome to the discussion about the first assignment.

Leave your answers to the questions below in this thread. If you have any questions or you want to discuss something connected to the assignment feel free to do it in this thread as well, but please everything to the topic of HTML!

What is HTML and What is HTML used for?

1/2. HTML also known as Hyper Text Markup Language, is a programme language that allows you to set Structure to your content. For example HTML has something called a Series Of Elements that can make content appear a curtain way or even act a certain way. Some examples are Hyperlink a text or image to somewhere else of the website or simple task like changing Font size Big or small.

Why are we learning HTML?

  1. HTML the language that is used to be able to build our websites on. Having the basics understanding of HTML will allow us to move on to Java script and make to Websites we built on HTML more dynamic and be able to interact with the website in not a static way.

What is an HTML tag?

  1. A HTML tag is part of the Series Of Elements that is used to structure the content however you like. When you wish to make a text stand out a type a way, you would write in code how you want it to be. This is were tags come in. Before and at the end on your content you would have an opening tag an a closing TAG. The HTML language will understand what you imputed and execute your action.

What is the structure of an HTML tag?

  1. The structure of an HTML tags are as follows. For example if you wanted to structure you content a type of way before you line you would be inserting a Open Tag which would consist for example < p> my cat is very happy < /p>, at the very end you would be input a Close Tag. No the Opening and Close tags look very similar, but in order to get your desired effect at the closing tag you must place a / (forward slash) for the code to correctly give you the desired effect you wanted. When you have an opening Tag, your context and closing Tag combined together is called Elements.

What is an attribute?

  1. Now to make this interesting, an attribute allows the developer to input more information, within the Opening and Close Tags, but this will not show up on the changes that the developer wanted to make on the content. Attribute also as similar to Open & Close Tags but Instead called Attribute NAME and Attribute Value. The attribute name must have a space between it and if present the Opening tag. The attribute Value must be “wrapped” with a quotation marks. To separate the Attribute Name & Value a = is place between the two but with no space.

What is the anatomy of an HTML document?

  1. When combine all your series of elements to form a HTML web page, Anatomy Structure is how is best described in HTML code.
    Here are some of the elements that is used to make up a web page.
  • List item

< !DOCTYPE html >, this is used as i understand insure that your Document behaves in the right way in the HTML protocol. There is no close tag for this element as i understand (Correct me if am wrong :relaxed:)
2. < html> < /html >, This element wraps up ( or groups all your entire elements) your elements into 1 and is what would form your HTML web page. It is also none as a Root Element.
3.< head > < /head>, this element creates a bubble for all the attributes that you want to place in there, i.e information for search engines, page descriptions and also keywords, that you don’t want to show on the actual page. This element will keep that separate from the others elements.
4. < meta charset=“utf-8”>, this element which has attributes in it, allows the character set your documents uses. It has a wide verity of understanding different programme languages. It is said best to us this element as it will allow to handle any textual content you might input.
5. < title>< /title>, this element set the as it say’s the title of the page. This can also be used to bookmark/favourite a web page.
6. < body>< /body>, this element groups all the content that you want to show on you web page. This is any type of content that you want text, image, videos, etc that you want the user to see and experience with.

This what Anatomy of HTML web page would contest of.
P.S i know the elements don’t have spaces between them, this was done on purpose so it could show on the homework.

1 Like

7. What is the anatomy of an HTML document?

Indeed sir(s), you can check this example so you can have a better picture on the HTML anatomy: HTML Anatomy example.

Remember you can use the “Preformatted Text” Button to encapsulate any kind of code you want to show.


function formatText(){
    //wow such comment
    let words = "I'm a preformatted Text box, Please use me wisely!"
}

Hope this gives you a clear view of the subject, keep learning! :slight_smile:

Carlos Z.

1 Like
  1. Hyper Text Markup Language used by browsers to display websites to users.

  2. HTML is not a programming language, it defines the structure of content

  3. We area learning HTML because the world runs on the web. Blockchain, or a database, are interchangeable back-ends and many cases. We are learning HTML to build a front end that can interact with many different back-end structures.

  4. An HTML tag is a pattern that defines an element, it’s attributes, and it’s content. It start with a and ends with a . Everything that is wrapped in between this tag is code that details the tagged element.

  5. content

  6. An attribute is a variable that contains extra information about an element, and can be used to alter style or other things later on.

  7. The head is everything you DO NOT want to display to the page viewers. The body is all the content of the page.

1 Like

Greetings jon_m!

I appreciate your feedback and I believe I better understand now. I find myself re-reading/watching content to really grasp the concepts.

Thanks again,
AKB

1 Like
  1. It is a markup language. It helps us to structure the content of a website.
  2. It is used for webdesign. For structuring user interfaces.
  3. To be able to create a user front end to the back end that would be a smart contract for example. And to get some personal success that makes us wanna keep going.
  4. Tags mark the beginning and the end of a order/function that we want to be applied.
  5. It has a beginning and an end. Like

    content of the paragraph

  6. An attribute is additional information we add to a tag for example that is only for us to see. It doesn’t appear to the GUI user.
...... ......
1 Like

Our first assignment.
1.Hyper text markup language
2. HTML is used for Web development (making websites ect) with fixed content.
3. We are learning it so we can make websites and move forward in blocking development.
4. defines a hyperlink, which is used to link one page to any other.
5. A starts with an opening and will always have attributes inside and closes with a closing .
6. Attributes are more info for the content.
7. Everything together.

1 Like
  1. What is HTML?
    HTML is the code that is used to structure a web page and its content.

  2. What is HTML used for?
    HTML is a markup language that defines the structure of a content. It is used to make web pages on the internet viewable.

  3. Why are we learning HTML?
    Learning HTML makes it easier for us to learn other coding languages.

  4. What is an HTML tag?
    An HTML tag is defined as a set of characters constituting a formatted command for a web page.

  5. What is the structure of an HTML tag?
    In a web page, the first tag “html” indicates the markup language that is being used for the document. The “head” tag contains information about the web page. The content appears in the tag.

  6. What is an attribute?
    An HTML attribute are special words used in the opening tag to control the element’s behavior.

  7. What is the anatomy of an HTML document?
    The two main parts of an HTML document are the head and the body. Each section contains specific information. The head contains information that is useful to the web browser and search engines (not visible to the reader). The body section contains the information that web users can see.

1 Like