HTML Reading Assignment

  1. HTML is a coding language.
  2. It is used for building web pages…
    3.Because we will need t o be able to create simple websites
    4.Tags are kind of commands that the browser will read and display accordingly
    5.Opening TAG + closing TAG - <…> + </…>
  3. Attributes are extra informations that you don’t want to appear in the content.
    7.< !DOCTYPE html>
    < html>
    < head>
    < meta charset=“utf-8”>
    < title>
    < body>
1 Like
  1. Hypertext Markup Language is a code used to structure a webpage and its contents.

  2. HTML is used to structure a webpage and its contents.

  3. To understand the fundamentals of the computer language.

  4. HTML tags are hidden keywords within a webpage that define how your web browser must format and display the content.

  5. The structure of an HTML tag is the code which very website must have.

  6. Attribute allows you to customize a tag and are defined in the opening tag. They are also used to assign a value using the equal sign.

  7. Definition - Identifies the beginning and ending of a document

Header - Contains information about the document that will not appear on the actual webpage.

Title - The title tag defines the title that will appear in the title bar in your browser.

Body- The body tags contain all the information and other visible content on the web page.

1 Like

What is HTML?
Html is a markup language that defines the structure of your content.

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

Why are we learning HTML?
To better understand how programming language works and function as it’s good basic for beginners programming language. Then when you start to learn the more advance programming language it won’t be as hard.

What is an HTML tag?
The html tag is an element that wraps all the content on the entire page and is sometimes known as the root element.

What is the structure of an HTML tag?
It has the opening tag, the content then closing tag, together it forms an element

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

7.What is the anatomy of any HTML document?
The anatomy any HTML document has these main parts of elements

1 Like
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    HTML is a markup language that defines the structure of content, consisting of different elements (part of a webpage), and tags that enclose the content of an element so that it appears and/or acts in a certain way. For instance, the tags can italicise a word, or make a hyperlink to a different webpage.

  3. Why are we learning HTML?
    HTML is considered a fairly simple language consisting of elements, which means it is more beginner friendly than others. Additionally, it is the foundation of the web, since the language is used to guide the web browser in identifying different parts of a website. Understanding the rudimentary aspects of programming will help in comprehending the more complicated ones further down the line.

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

  5. What is the structure of an HTML tag?
    Tags consist of opening and closing tags that surround the element (which includes the content). The name of the element is wrapped in opening and closing angle brackets.

  6. What is an attribute?
    Attributes are ‘hidden’ information pertaining to the element. They do not appear in the content per se. The attribute contains the attribute name and the attribute value.

  7. What is the anatomy of an HTML document?
    The anatomy consists of a preamble, the html element, hidden text such as key words, character set, page title, and the body of visible content.

1 Like
  1. What is HTML?
    Hypertext Markup Language, the code used to structure a web page and its content. It is a markup language that defines the structure of your content.
  2. What is HTML used for?
    To structure a web page and its content.
  3. Why are we learning HTML?
    To build our own dapps and website and not just rely on and pay others to bring ideas to fruition.
  4. What is an HTML tag?
    A tag is what is used to create an element. Consists of an element within opening and closing angle brackets.
  5. What is the structure of an HTML tag?
    Opening tag and closing (assuming some content inside, which makes it an element).
  6. What is an attribute?
    An attribute changes an element’s behavior or provides metadata.
  7. What is the anatomy of an HTML document?
    Plaintext document structured with elements surrounded by matching opening and closing tags.
1 Like
  1. Hypertext Markup language

  2. Defines the structure of web based content.

  3. Decentralised Applications need to be presented on web pages therefore we need to know
    how web pages are constructed.

  4. Encloses the content of an element.

    • Opening tag: States where the element begins or starts.
      Consists of the name of the element wrapped in opening and closing angle brackets
  • Closing tag: States where the element ends or finishes and includes a forward slash before the
    element name wrapped in opening and closing angle brackets.
  1. Contains extra information about the element but will not appear in the actual content.

    • Opening tag: States where the element begins or starts.Consists of the name of the
      element wrapped in opening and closing angle brackets
  • Closing tag: States where the element ends or finishes and includes a forward slash before the element name wrapped in opening and closing angle brackets.
  • The content: which may be just text.
  • The element: consisting of opening tag, closing tag, content and can also have attributes.
1 Like

What is HTML?
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.

What is HTML used for?
HTML is used to define the structure of your content.

Why are we learning HTML?
In order to understand the basics of web design.

What is an HTML tag?
An HTML tag states where the elements begin and end.

What is the structure of an HTML tag?

  1. The opening tag.
  2. The closing tag.
  3. The content.
  4. The element.

What is an attribute?
Attributes contain 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, head, meta charset, title, and body.

1 Like

Hello,

Here are my ans:

  1. What is HTML?

ANS: HTML stands for Hyper Text Mark up Language. It is the code used to structure a webpage and its contents.

  1. What is HTML used for?

ANS: HTML is a coding language that defines the structure of content on your webpage. It contains elements that are used to enclose or wrap i.e. structure content so it appears in a certain way on your webpage. In this sense, HTML is the basis of a webpage.

  1. Why are we learning HTML?

We are learning HTML to get a basic understanding of web design and website creation.

  1. What is an HTML tag?

An HTML tag specifies the beginning and end of a paragraph text. It basically encloses or wraps the text and can be used to italicize, change font , bold or perform other aesthetic changes to the text. In summary the HTML tag indicates where the element begins and ends.

    1. What is the structure of an HTML tag?

The structure of an HTML tag is as follows:

Opening tag: This contains the name of the element such as p for paragraph, and it consists of opening and closing angle brackets. This shows where the element begins and starts to take effect e.g. if it is a paragraph the angle brackets in the opening tag will look like this

The closing tag: This is similar to the opening tag but the difference is it consists of a forward slash in its angle bracket that indicates the end of an elements so e.g. for a paragraph end the closing tag will be

The content: This is the content of an element which could be text, image, graphics etc

The element: Basically it is the Opening Tag + Closing Tag + The Content

    1. What is an attribute?

ANS: Attribute contains extra information about an element that you don’t want to appear in the content. An attribute should have the following features 1) There should be a space between the attribute and the element name 2) The attribute name followed by an equal sign (=) and 3) the attribute value should be enclosed by opening and closing quotation marks. Hence if the element value is p for paragraph then an attribute could be

    1. What is the anatomy of an HTML document?

The anatomy of an HTML document is the following:

!DOCTYPE html: A required preamble. Needed so the document behaves correctly.
html/html: The element that wraps all the content on the page
headhead: Includes all the stuff that needs to be included but not shown as content on the webpage.
meta charset=“utf-8” : Character set thet identifies most languages used throughout the world.
Title : Title tag used to identify the webpage in the browser tab. It is the title of the page that appears in search engines e.g. Google for Google.com.
Body: Shows all the content that needs to be shown to the website visitors e.g. graphics, images, texts etc.

1 Like
  1. What is HTML?
    HTML is HyperText Markup Language

  2. What is HTML used for?
    Is the code to structure a webpage and its content

  3. Why are we learning HTML?
    HTML is a beginner friendly language that is useful towards building skills and practical for web development

  4. What is an HTML tag?
    Tags are code that specify function of the content

  5. What is the structure of an HTML tag?
    The structure of a tag is the opening tag (<" “>) and closing tag (</” ">).

  6. What is an attribute?
    An attribute contains additions information of an element that isn’t shown in the actual content

  7. What is the anatomy of an HTML document?
    An HTML document will have a doctype, html element, head element, title element, body element

1 Like

What is HTML?
Code to structure a web page
a markup language that defines structure of content
What is HTML used for?
for creating the code for a website
Why are we learning HTML?
to create a website
What is an HTML tag?
an HTML tag gives structure to your content for a website
What is the structure of an HTML tag?
“<>” and some attribute in the middle
What is an attribute?
extra information that guides your code to be more than plain text
What is the anatomy of an HTML document?
opening tag, content, closing tag

followed by words you want displayed

1 Like

What is HTML?
Is a markup language which defines the structure of the content

What is HTML used for?
Simple said to display your content.

Why are we learning HTML?
Beause every single simple and complex page uses HTML. It it the key for builing things which could be used by others.

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

What is the structure of an HTML tag?
Each element begins wich an opening and ends with a closing tag. As example

<p>My cat is very grumpy</p>.

What is an attribute?
You can give your element an additional attribute for additional element.
Simple said adding an attribute to an element allow you to add magic to your page :slight_smile:

What is the anatomy of an HTML document?
You can combine individual elements together to create an entire HTML page.
But in general each HTML doc will have a doctype, html element, head element, title element, body element

1 Like
  1. HTML is a markup language that defines the structure of content in our code.
  2. HTML is used for structuring a web page and its content.
  3. We learn HTML because every single web page uses HTML.
  4. An HTML tag is used for creating an element.
  5. Each element starts with an opening and ends with a closing tag.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. Doctype, HTML, head, title ,body.
1 Like
  1. A markup language that defines the structure of your websites content.
  2. To structure a web page and its content
  3. Get a basic understanding of coding and how webpages are made
  4. Used to create elements and make them act a certain way.
  5. </element end>
  6. Attributes contain info about element that you don’t want appearing in the content. The attribute gives the element non-unique ID that be used to target it with different editing preferences.

7.

1 Like
  1. HTML is a mark-up language
  2. It is used to convey information on a webpage that you wish
  3. Because it is needed to use the web, a baser un7.derstanding is relevant for being able to put the info you need in the right place
  4. A HTML tag ie.

    is the basis of the code itself for what is shown on the webpage

  5. <?> the structure on basis is that
  6. An attribute contains extra information about an element
  7. Opening tag, content, closing tag… all wrapped up as part of an element
1 Like
  1. A programming language.
  2. It´s used for programming simple websides displaying paragraphs, images and links.
  3. Because it will help us to understand a more advanced programming language.
  4. Tags are instructions (enclosed in angle brackets), which are used to determine when and how an element is displayed.
  5. Opening tag =

    , Closing tag =

  6. An attribute can be included in a opening tag. It will give information on the content and isn´t displaied on the actual webside. It consists of a name and a value.
1 Like
  1. A markup language that defines the structure of the content to go on the webpage.
  2. To code web pages.
  3. To practice application of code and familiarise ourselves with coding in general.
  4. Written in <> they define the element and states where the element begins <> and ends </>
  5. Opening Tag

    closing tag

  6. It gives the element a non-unique identifies that alllows us to target all elements with the same identifier easily.
... ...
1 Like

@Mike_Hughes, @Cryptomonk, @CharlieMo

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


function formatText(){

let words = “I’m a preformatted Text box, Please use me wisely!”

}

prefromatted_text-animated

Carlos Z.

3 Likes

Thanks for letting me know :grinning:

1). Its an abréviation for Hyper Text Markup Language,
2) It is a code program that is used to populate a web page with content.
3) Its a simple way to start programing that does not have too much complexity.
4)Tags are a set of symbols with a letter in between that come before and after a text phrase. They wrap up the phrase or series of text in order to show where they start and where they stop.

  1. The symbol less than then a letter and then the symbol for greater than on the opening tag, on the other side of the phrase is the closing tag which is the less than symbol than the letter followed by forward slash and the symbol greater than.

  2. Attributes are identifiers that give the text that comes after them a certain value or quality.

  3. An HTML document consists of Elements, attributes and content arranged in the series one following the other. They use special characters to insert each code construct and when they are all put together they function as a program.

1 Like