Reading Assignment – HTML

  1. HTML is a kind of coding language used to structure a web page.

  2. HTML is a tool you can use to code webpages.

  3. Learning HTML is important because it introduces the basic & fundamental parts regarding code.

  4. An HTML tag is a character you use to open and close elements in an HTML document.

  5. The structure of an HTML tag can look as follows:

    Here comes the text you want to put in the page

  6. Attributes can be used to give certain pieces of code some extra information without it being visible in the actual content.

  7. The anatomy of an HTML document includes the things you need to write for the code to work. Opening & closing tags, content etc.

2 Likes

1.Hyper Text Markup Language
2.To create websites in the way we want to
3.To develope websites
4.It’s a keyword, used to write titles,paragraphs and create designs website
5.Example head contains opening tag and closing tag
6.Attributes are functions with certain properties
7.docttype
html element
head
title
body

1 Like
  1. Hyper Text Markup Language - defines the structure of your content.

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

  3. It’s how we develop our web page/application.

  4. 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.

  5. Opening tag, Content, Closing tag. All together make an element.

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

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
    <img src="images/firefox-icon.png" alt="My test image">
  </body>
</html>```
1 Like
  1. Use element to appear or act in certain way.
  2. Use to put content together for a web page.
  3. To understand how code is used for organizing content and how it is stored on the web. To better read code.
  4. Tags are used to tell program how to read what you want done in the code.
  5. Element of tag with the content, opening and closing tags.
  6. Is extra information about the element.
  7. Element
    Heading
    Character set
    Title
    Body
  • What is HTML?
    It is the code (hypertext markup language) that defines the structure of the content of a web page.

  • What is HTML used for?
    HTML is used to build web pages on the internet.

  • Why are we learning HTML?
    We learn HTML in order to be able to build and understand web pages by ourselves or modify some pages created by automatic tools

  • What is an HTML tag?
    An HTML tag is the code used to include an element in a web page (like a paragraph, a picture, etc.).

  • What is the structure of an HTML tag?
    An HTML tag (or HTML element) is composed by:

  • An opening tag (which can include attributes)
  • Some content
  • A closing tag
    Some HTML elements are “empty” and don’t contain content and don’t have a closing tag.
  • What is an attribute?
    An attribute is extra information about the tag that doesn’t appear in the actual content.
    It gives for example style information.

  • What is the anatomy of an HTML document?
    An HTML document is composed by:

  • The doctype
  • The “html” tag / element in which we have all the content of the web page:
    • The “head” tag / element in which we have all the information that is not shown to the viewer:
      • The “meta” tags / elements used to set meta data for the web page
      • The “title” tag / element used to set the title of the page shown on the browser’s tab
    • The “body” tag / element which contains all content that will be showed to the viewer
1 Like
  1. HTML is a language that is use to created and structure a basic website page. It uses a series of tags/elements to affect the size, positioning, link of a word or image.

  2. HTML is used for creating and editing website pages

  3. HTML is a fundamental building block that is necessary to understand Javascript, CSS etc. It’s the first step because it’s the basic web interface that is required for anythign that comes next.

  4. HTML tag consists of an opening and closing tag with an element that affects the text or reference withing the tag boundaries.

  5. Tags contain opening tags, closing tags, and content. Together this is referred to as an “element”

  6. An attribute is extra information that affects the element. It is written and expanded into the opening tag. Attributes don’t appear in the content, but affect the content. They contain a name and a value

  7. HTML documents must contain a document type tag tell a browser what the document is. Then, it has to have the html tag which wraps all the content and other elements/tags. This tag has a language attribute. THen a head tag with meta data (that sets the elements for the page including title tag), then the body, paragraph, hearder tags etc follow by the closing tags

1 Like
  1. What is HTML?
    Is a markup language that determines the strucure of content.
    It gives us the ability to make our content appear a certain way.

  2. What is HTML used for?
    This is the code that is used to structure a web page and its content.
    We can enclose (or wrap) different parts of the content to make it appear or act a certain way.

  3. Why are we learning HTML?
    We’re learning HTML as the foundation of coding.

  4. What is an HTML tag?
    Tags can make a word or image hyperlink to somewhere else, can italicize words, can make the fonrt bigger or smaller etc.
    It is what defines the characteristics of our content.

  5. What is the structure of an HTML tag?
    content </closing tag>
    The opening tag, the closing tag, and the content together comprise the element.

  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?

<!DOCTYPE html> makes sure that the document works properly.
<html> </html> wraps all the content on the entire page - this is the root element
<head> </head> acts as a container for all the stuff I want to include on the HTML page that isn't the content I want to show to my viewers. incl. keywords and page descriptions that I want to appear in search results, CSS to style content, chracter set declarations etc.
<meta charset="utf-8"> sets the character set.
<title> </title> sets the title of the page, which appears in the browser tab the page is loaded in.
<body> </body> contains all the content - text, images, videos, games, playable audio tracks
2 Likes
  1. HyperText Markup Language
  2. HTML is used to structure and design a web page and its content
  3. To create webpages that can connect to blockchain and work with smart contracts
  4. HTML tag is used to create an such as paragraph, image etc
  5. The tag is named within angle brackets. It has an opening tag and except in case of an empty element, such as image, it has a closing tag as well where tag’s name is preceded by a slash character
  6. An attribute contains extra information about the element that we don’t want to appear in the actual content. An attribute always has an attribute name and attribute value.
  7. An HTML document has the doctype preamble, the html element, the head element, the title element and the body element. The elements are not limited to these and can include more.
1 Like
  1. What is HTML?
  2. What is HTML used for?
  3. Why are we learning HTML?
  4. What is an HTML tag?
  5. What is the structure of an HTML tag?
  6. What is an attribute?
  7. What is the anatomy of an HTML document?

a.) Hyper Text Mark-up Language (HTML), is a coding language that the computer can read to display information (text, image, links etc.) and structure the content that we see on the screen (Web pages).
b.) HTML is a way to communicate to the computer to display content to the operator of a website.
c.) HTML is one of the more foundational coding languages which has a place on every website that displays any form of text, pictures or links.
d.) A tag is the opening and ending of a element and also specifies it.
e.) There is always an opening and a end tag. Both are build the same with one exception, the end tag is signalised with a “/” (<html></html>), these are meant to be either h1, p1, body etc to be within the bigger/smaller symbol.
f.) A attribute provides extra information to the element that are not meant to be seen on the display with rest of the information.
g.) The anatomy always starts with<!DOCTYPE html> makes sure your document is identified correctly and behaves the way it should.
Followed by <html> tag, the root of the HTML doc placed after the first and end tag as last. <head> characterizes everything you want to have in the Doc, but not displayed, <meta charset="utf-8">, to acknowledge most languages, but sometimes not used, <title></title> is whatever appears in the tab of the browser as in this very page you can read something like “Reading Assignment[…]” on the tab, and last is the <body></body> with all the content one wishes to display followed by the html end tag.

2 Likes

Hey all,

My answers for the assignment:
What is HTML?
HTML (HyperText Markup Language) 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 it appear a certain way, or act a certain way.

What is HTML used for?
HTML is a markup language used for structuring pages and writing content.

Why are we learning HTML?
We are learning HTML because it is an essential part of web development to display content and provide structure on the World Wide Web.

What is an HTML tag?
An HTML tag is an essential element of HTML that encodes encapsulated content so the browser knows what to do with it.

What is the structure of an HTML tag?
The structure of an HTML tag is an opening and tag with the contents in between which together are “the element.”

What is an attribute?
An attribute is HTML tool that is part of an HTML element’s opening tag. It is used to provide extra information about the element that doesn’t appear in the actual content, but used to assist the browser to further structure and or render the page.

What is the anatomy of an HTML document?
An HTML document is made up essential elements such as doctype tag, html tag, a head tag, a meta character tag, a title tag, and a body tag. The doctype tag: , is required along with the html tags to wrap the whole document and communicate to the browser the contents of the file is an HTML document.

2 Likes
  1. HTML is the code used to structure and display content on web pages.
  2. used to design web pages
  3. i’m not sure but i think its because it is the easiest to teach to learners and so acts as a building block for other languages.
  4. A tag defines which type of element some content is. For example, is it a heading or part of the body of a paragraph.
  5. tags have an opening and closing tag with the content within the two. It would be nice to somehow differentiate each tag by separate colours so it would be easier to identify the beginning and end of some particular element.I guess i might figure this out in time?
  6. Attributes are extra descriptors about how you want to display or arrange elements. This information is not displayed in the result but is clearly stated in the code.
  7. typing ! and clicking tab generated a template anatomy with tags, different elements that set the character set and attributes that all help organise the content of your webpage as needed.
2 Likes

[quote=“AdamFortuna, post:1, topic:41717”]

  • What is HTML?
  • What is HTML used for?
  • Why are we learning HTML?
  • What is an HTML tag?
  • What is the structure of an HTML tag?
  • What is an attribute?
  • What is the anatomy of an HTML document?
  1. HTML is a language used for creating the content of a website
  2. To create websites
  3. Its a simple way to create content for a webpage
    4.A tag signifies the type of content that the element will hold.
  4. Opening tag: < p> and closing tag <\p>
  5. An attribute is something added to a tag to describe more about the element.
  6. The anatomy is the way that it is organized.
2 Likes
  1. What is HTML?
    Hypertext Markup Language

  2. What is HTML used for?
    Used to structure web pages and its content

  3. Why are we learning HTML?
    It is the foundation that is necessary when learning how to code

  4. What is an HTML tag?
    There are 2 parts: the opening tag and the closing tag- defines the type of content that will be inserted

  5. What is the structure of an HTML tag?
    Opening tag <; element name; /> Closing tag

  6. What is an attribute?
    Attributes contain extra information about an element that does not appear in the actual content

  7. What is the anatomy of an HTML document?
    Doc type, html element, meta charset, element, title element, body element. Can include image elements, heading elements, paragraph elements, unordered/ ordered list elements and link elements.

2 Likes
  1. What is HTML? HTML 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 the language for describing the structure of Web pages . HTML gives authors the means to: Publish online documents with headings, text, tables, lists, photos, etc. Retrieve online information via hypertext links, at the click of a button.
  3. Why are we learning HTML?Learning how to code allows you to bring out your personality on your own website, enables you to stand out from the crowd, contribute to projects better, helps you understand and explore other languages and provides you with an opportunity to transition into a different career.Sept 18, 2020
  4. What is an HTML tag? An HTML tag is a piece of markup language used to indicate the beginning and end of an [HTML element]
  5. What is the structure of an HTML tag? An HTML tag consists of a left angle bracket (<), a tag name (such as “h1”) and a right angle bracket (>) . Tags are usually paired so that you have a tag at the beginning and the end of a section of the document (

    and

    for example.)
  6. What is an attribute? * All HTML elements can have attributes
  • Attributes provide additional information about elements
  • Attributes are always specified in the start tag
  • Attributes usually come in name/value pairs like: name="value"
  1. What is the anatomy of an HTML document?An HTML Document is mainly divided into two parts: HEAD: This contains the information about the HTML document. For Example, the Title of the page, version of HTML, Meta Data, etc. BODY: This contains everything you want to display on the Web Page.
1 Like
  1. HTML stands for Hypertext Markup Language.

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

  3. We are learning HTML so that we can create well-structured websites that can serve as the front end of dapps.

  4. An html tag is an element you use to enclose different parts of content to make them appear in a certain way or act in a certain way.

  5. The opening tag consists of the name of the element, e.g. p for paragraph, wrapped in opening and closing angle brackets. It shows where the element begins. Next is the content to be displayed. At the end is the closing tag. This is the same as the opening tag, except it includes a forward slash before the element name. It shows where the element ends.

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

  1. Doctype is needed to make sure your document behaves correctly. The html element wraps all the content of the whole page. The head element is for things you want to include on the page that isn’t in the content you’re showing the page’s viewers. The meta charset element sets the character set your document should use. The viewport element ensures the page renders at the width of the viewport. The title element decides what appears in browser tab the page is loaded in. The body element contains all content you want to show to web users such as text, images, videos, games, audio etc.
2 Likes
  1. What is HTML?
    HyperTextMarkupLanguage

  2. What is HTML used for?
    Coding to structure the foundation of a website

  3. Why are we learning HTML?
    A good foundation is always important, I think by learning HTML you’ll have a better understanding of more advanced programming.

  4. What is an HTML tag?
    There are opening and closing tags that wraps around elements in the code. Stating when it’s starting and ending.

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

  6. What is an attribute?
    Assigning things within an element with Attributes. Creating classes.

  7. What is the anatomy of an HTML document?

1 Like
  1. What is HTML?

Mark up language to format text on web pages

  1. What is HTML used for?

Creating content on web pages

  1. Why are we learning HTML?

Javascript is embedded in web pages

  1. What is an HTML tag?

Greaterthan then tag lessthan then text and a greaterthan slash lessthan

  1. What is the structure of an HTML tag?

Greaterthan then tag lessthan then text and a greaterthan slash lessthan

  1. What is an attribute?

A formatting element inside a tag

  1. What is the anatomy of an HTML document?

Doctype, head, body, close doctype

2 Likes
  1. HTML is a markup language that is used to structure a web page and its content
  2. HTML is used to structure the content on the webpage within a set of paragraphs, bulleted points, images and data tables.
  3. HTML is the basic language/tool to structure a webpage
  4. An HTML tag is a piece of markup language used to indicate the beginning and the end of an HTML element in a HTML document. it is the container of for all other HTML elements.
  5. It is made of a left angle bracket, a tag name, and a right angle bracket.
  6. An attribute is a piece of extra information about the element to give the latter a non-unique identifier that can be used to target it (and that you don’t want to appear in the actual content)
    7.doctype, html element, head element, meta elements (including viewport), title, and body
1 Like

What is HTML?

HTML is acronym for Hyper Text MarkUp Language.

What is HTML used for?

It’s used to create content, to insert text, images, lists etc.

Why are we learning HTML?
Because we need HTML to create content on our webpages.

What is an HTML tag?

Tag is first and the last part of the element. There is an opening and closing tag.

What is the structure of an HTML tag?

Opening tag contains less than sign, name of the element and greater than sign. Closing tag is the same thing just with slash after “less than” sign.
What is an attribute?

Attribute is the part of the element that provides more information about element itself that you don’t want to show up in the content that’s available for use. It’s made of attribute’s name and attribute’s value.

What is the anatomy of an HTML document?

It’s doctype element, html element, head element and body element.

1 Like
  1. “Hyper Text Markup Language” - A language designed to structure web pages.

  2. To code the structure/text of a web page.

  3. We are learning HTML because it is the basic structure of all web pages and is a simple language for beginners to get their bearings.

  4. An HTML tag is a signal to the page on how a certain element should be displayed. For example indicates the portion of content that should be displayed to the viewer.

  5. The structure of a tag is the opening tag

    followed by the content and then the closing tag

  6. An attribute is extra info about an element you don’t want to appear in the content.

  7. The anatomy of an HTML document is an opening tag, content, and a closing tag.

1 Like