HTML Reading Assignment

  1. HTML (Hypertext Markup Language)
  2. it is a markup language that defines the structure of your content.
  3. To Learn how to structure language
  4. A tag denotes the start or end of a section in HTML.
  5. <> </>
  6. Attributes give the tags more identity or features
1 Like
  1. Hypertext Markup Language
  2. A way to control how your web page content is presented, allowing you to format, embed images and more
  3. So we can create a basicwebsite that connects to the blockchain later, but provides a user interface
  4. Markup language element for specifying things like paragraphs, hypertext links, lists, tables, etc.
  5. An HTML tag has a beginning and ending tag, except for empty ones like , that include the tag name and attributes, with the content in between.
  6. An attribute is a piece of information that is specified in the beginning tag that allows you to target that element with CSS to control the styling of the element
  7. An HTML document consists of the doctype specification, the HTML wrapper, including the head where title and meta information is defined, and the body which is the content that will be displayed on the page
1 Like

What is HTML?
HTML stands for Hypertext Markup Language.

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

Why are we learning HTML?
To build a simple website to be able to react with a blockchain and have user inputs.

What is an HTML tag?
HTML tags are the hidden keywords within a web page that define how your web browser must format and display the content.
Most tags must have two parts, an opening and a closing part. For example, is the opening tag and is the closing tag. Note that the closing tag has the same text as the opening tag, but has an additional forward-slash ( / ) character. I tend to interperet this as the “end” or “close” character.

What is the structure of an HTML tag?
An HTML document has two* main parts:
1 head. The head element contains title and meta data of a web document.
2 body. The body element contains the information that you want to display on a web page.

What is an attribute?
The attributes are special words used inside the opening tag to control the tag’s behaviour. HTML attribute is a modifier of an HTML element type. An attribute either modifies the default functionality of an element type or provides functionality to certain element types unable to function correctly without them. In HTML syntax, an attribute is added to an HTML start tag.

What is the anatomy of an HTML document?
Each document has a head and a body, delimited by the and tags. The head is where you give your HTML document a title and where you indicate other parameters the browser may use when displaying the document. The body is where you put the actual contents of the HTML document. This includes the text for display and document control markers (tags) that advise the browser how to display the text. Tags also reference special-effects files including graphics and sound, and indicate the hot spots (hyperlinks and anchors) that link your document to other documents.

2 Likes
<!DOCTYPE html>
<html>
<head>
    <title>Reading assignment - HTML, not so serious answers Magnus</title>
</head>

<body>
<ol>
<li> <p>What is HTML?</p>
<p>Something without the cool what you see is what you get functionality.</p></li>
<li> <p>What is HTML used for? </p>
<p>To set the look of text and pictures displayed in browsers of this so called internet.</p></li>
<li> <p>Why are we learning HTML? </p>
<p>To brag later on.</p></li>
<li> <p>What is an HTML tag?</p>
<p>A specific ascii art that is recognized as a certain format command by the browser.</p></li>
<li> <p>What is the structure of an HTML tag?</p>
<p>smaller than ; some content ; larger than</p></li>
<li> <p>What is an attribute?</p>
<p>Something you want to hide from the viewers.</p></li>
<li> <p>What is the anatomy of an HTML document?</p>
<p>The grammar for the html language.</p></li>
</ol>
<br>
<p>Check out any online HTML editor (e.g. <a href="https://html-online.com/editor/">https://html-online.com/editor/</a>) to visualize the result of this code.
</p>
<br>
<br>
<p>By the way, does someone know what code this forum uses? It seems not to be the common BB-code I am used to.</p>
</body>
</html>

Check out any online HTML editor (e.g. https://html-online.com/editor/) to visualize the result of this code.



By the way, does someone know what code this forum uses? It seems not to be the common BB-code I am used to.

Well ist seems to be html, but I don't get the code from the forums editor.
2 Likes
  1. HTML is a markup language that is used to structure a web page and its content.
  2. HTML is used for making web pages work and look a desired way.
  3. We are learning HTML so we can know how to show our blockchain application alongside with javascript which will add logic and interactivity. Its crutual to know this as it will be our front end to our main program.
  4. Tags start and end an HTML element and can add atributes and its value to our text content.
  5. Paragraph example: It looks like this

    Text

  6. Attribute changes the way our text will look in the webpage.
  7. !DOCTYPE html
    html
    head
    meta charset=“utf-8“
    title>Coding</title
    /head
    body
    img src=“sourcefile“ alt=“a file“
    /body
    /html
2 Likes
  1. Hypertext Markup language.
    2 It is the code used to structure a web page and its content.
  2. learning it so we can build our own web page.
  3. HTML tags are what is contained in a Element. There are opening and closing tags.
  4. adfd

    .
  5. Attributes add extra info about the element.
  6. its starts with , then there is we then can include a stuff stuff then last thing is
1 Like
  1. Hypertext Markup Language
  2. It is used to programme on top of Web Browsers to create websites
  3. So that eventually websites can interact with our programmes to be usable
  4. HTML tag is the bit of code that defines and encloses our website information that we want to use in our website in a specific way.
  5. Opening and closing Tags enclose Content, which ultimately is the Element
  6. An attribute is an assignment of a defined piece of code which will be used in the HTML to configure how the text or visual will be displayed in the website. It is an addition to the information that you want for the element
  7. Contains all the characteristics that are required to create a website. But it also needs to be structured in a consistent format to make it understandable. The format is the following:
My test page My test image
1 Like
  1. What is HTML?
    Html is a markup language.
  2. What is HTML used for?
    HTML is used for formatting content on a page
  3. Why are we learning HTML?
    HTML is needed to build an interface.
  4. What is an HTML tag?
    An HTML tag is an operator acting on the content.
  5. What is the structure of an HTML tag?
  6. What is an attribute?
    An attribute adds extra information about an element that does not appear in the actual content.
  7. What is the anatomy of an HTML document?
My test page “My
1 Like
  1. Hypertext Markup Language.

  2. HTML is a markup language make up of a series of elements, which are used to define the structure for your website content.

  3. We are learning HTML to have a basis for connecting our dapps to a website

  4. HTML tags comprise elements, and allow you to add things to the website such as text, etc.

  5. element

  6. An attribute specifies additional properties of the content inside a tag.

  7. ... ...
1 Like

What is HTML?

HTML is a Hypertext Markup Language. HTML is NOT a programming language but rather a way to structure content.

What is HTML used for?

HTML is used to structure web pages and the content displayed in web interface.

Why are we learning HTML?

We are learning HTML because it enables arbitrary code that enables to be displayed easily on the web interface. It is also the first step in learning the abilities of how the smart contracts can be displayed visually.

What is an HTML tag?

An HTML tag indicates the beginning and end of the element. Within the HTML tag is content in text.

What is the structure of an HTML tag?

The structure of an HTML tag is the name of the element, enclosed with angle brackets. The closing tag requires an additional forward slash to indicate the end of the element.

What is an attribute?

An attribute is additional information about the element that will not appear in the actual content.

What is the anatomy of an HTML document?

The anatomy of the HTML document is as follows:

My test page My test image
2 Likes

What is HTML?
Hypertext Markup Language
What is HTML used for?
To make web pages and now with blockchain
Why are we learning HTML?
Blockchain smart contract needs a web page (HTML) / app for users to be able to interact with when doing a smart contract.
What is an HTML tag?
it tells the browser its a HTML document ig


What is the structure of an HTML tag?
It consists of the head and body w/ elements in order to text to behave a certain way ig bold, italics, nesting.
What is an attribute?
it defines or either modifies the default functionality of an element type property of an element.
What is the anatomy of an HTML document?
the document type, html element the attribute, html wrapper,

1 Like
1. What is HTML?
  HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. 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?
   It is used to construct web pages and its content

3. Why are we learning HTML?
   To be able to create a front-end and have the user interact with the block chain through a UI like a website.

4. What is an HTML tag?
   Tags bring formatting to the content, they can make a word or image hyperlink, italicize, bold, bigger or smaller font, etc. it is a fundamental part of an element, the name.

5. What is the structure of an HTML tag?
   Opening and closing tag with content in the middle makes up an element. <p>content</p>

6. What is an attribute?
   It is extra information about an element that is not visible to the user. It is used on the opening tag before the closing >. Example: <p class=”editor-note”>text content</p>

7. What is the anatomy of an HTML document?
   An HTML page always starts with the root element <html> and ends with </html> it also contains a <head></head> and <body></body> elements. It should have a lof of elements in between.
1 Like
  1. Hypertext Markup Language.
  2. It is the code that is used to structure a web page and its content.
  3. Its positive to learn HTML because it is a foundation for web development. We need it for to connect our block chain programming.
  4. They refer to the markup to write HTML.
  5. Tag structure consist of an an opening and a closing.
  6. Contain extra information about the element you don’t actually want to appear on the content.

Structure of an HTML Document
HTML Tags
Document Content
HTML Document Elements
The Document Header
The Document Body

1 Like

1.What is HTML?
A language used to create the stucture of a web page
2.What is HTML used for?
To create the structure of a web page to present your content
3.Why are we learning HTML?
To create a frontend that presents the DAPPS we will create
4.What is an HTML tag?
A container for an element name that is used to present and format content on your web page
5.What is the structure of an HTML tag?
The name of the element encased in opening and closing angle brackets - it can contain other inforamtion
6.What is an attribute?
It is placed in the opening tag of an element and contains extra information about an element
7.What is the anatomy of an HTML document?
It can contain as little as 1 HTML opening tag (but should also contain a HTML closing tag) and some text you want to display. It is usually more complex, containing multiple elements defined in tags (html, head, body, img)

1> HTML is a code to bring together a set of elements in a constructive way which makes a web-page.
2> HTML is used for creating web page content
3> To interact with block chain we need to create a web page.
4> HTML tag a element to wrap around a content, there are basically two type opening and closing tags.
5> Opening tag then content and then closing tag, all three together makes an element.
6> Attribute contains extra information about the content that will not be appear with the content. and it can be used as a variable.
7>It is the combined form of entire HTML format. Kind of like the syntax.

1 Like

<><><> HTML Assignment <><><>

  1. What is HTML?

Hypertext Markup Language.
It tells browsers to do things

  1. What is HTML used for?

Causing content to behave or display differently

  1. Why are we learning HTML?

So we can make ourselves an interface to the the internet for our blockchain project and share our macaroni ethereum art with our friends :stuck_out_tongue_winking_eye:

  1. What is an HTML tag?

some kind of instruction to the browswer that’s always enclosed in <>

  1. What is the structure of an HTML tag?

opening tag, then an attribute or straight to content, then a closing tag (forward slash) - or an element without content just intructions within <>

  1. What is an attribute?

additional isntructions to the tag enclosed in “quotes”

  1. What is the anatomy of an HTML document?

Like this
but without the space after the < less than sign

< !DOCTYPE html>
< html>
< head>
< meta>
< title>
< /head>
< body>

< /body>
< /html>

1 Like

What is HTML?
-It stand for Hypertext Markup Language
What is HTML used for?

  • its used to build a website and organize its contents
    Why are we learning HTML?
    -b/c we need it to build a website that will act as the ux for our smart contracts.
    What is an HTML tag?
    -they are elements used to make content appear or act a certain way on a website
    What is the structure of an HTML tag?
    -There is the Open Tag at the beginning of the Content followed by the Closing Tag which makes the whole structure a full Element.
    What is an attribute?
    -an attribute is extra information in the element. It doesn’t show on the regular page.
    What is the anatomy of an HTML document
  • the body has 7 parts. first is the used to make the whole structure work. Next is which wraps content of whole page.Followed by this contains content the viewer doesn’t see like key works and discriptions etc. Then there is the which works as the character set for the text. There is the elelment that set what shows in the browser tab. And finally there is the which has the path to the image file and gives a description of the image.
1 Like
  1. What is HTML?
  • It is a markup language that defines the structure of your content.
  1. What is HTML used for?
  • It controls the presentation of the content to better communicate to the audience.
  1. Why are we learning HTML?
  • We need to interface with users who cannot on their own
    directly send and receive the raw data.
  1. What is an HTML tag?
  • It is an element that encloses or wraps various parts of the content in
    order to control its appearance or behaviour.
  1. What is the structure of an HTML tag?
  • An element consists of an opening tag and a closing tag.
  • A tag begins with “<” and ends with “>”
  • A closing tag also has a slash after the “<” as “</”
    and the triangular brackets enclose the name of the HTML tag.

    eg. <p>A paragraph.</p>
  1. What is an attribute?
  • An attribute is like a phrase within a sentence, that is inside the HTML tag.

    eg. alt="My test image" is an attribute of the following paragraph tag.

    <img src="images/firefox-icon.png" alt="My test image">
  1. What is the anatomy of an HTML document?
  • Begins and ends with <html> tags, which may have descriptive elements.
  • It may have a <head> element, which should contain a <meta> tag with
    one or more attributes, such as keywords and a description of the page, which
    will likely be picked up by search engines like Google, and a <title> element
    wrapping the title of the document, to be displayed in the title bar of the
    browser.
  • The actual content of the document should all be encapsulated by the <Body>
    element.
  • Scripts and Cascading Style Sheets are programming elements that
    should be within the <head> element.
  • Image elements, along with text, paragraphs and tables, when needed, will be
    within the <body> element.
2 Likes

Well my answers are :slight_smile:
1-What is HTML?

HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
2-What is HTML used for?
It used to create documents on the World Wide Web.
Why are we learning HTML?
Although HTML editors are supposed to do the necessary HTML coding, you have to remember that that they are not perfect and can make mistakes. This is the main reason why you have to learn HTML. You have to make adjustments when the HTML editors put in unnecessary codes and do your own HTML coding in case they crash. Sometimes, you may also face situations where the editor does not provide what you seek. When this happens, you can work to reach your desired solutions if you know HTML.

If you dont learn HTML, you have to either be content with what the editor gives you or find someone who knows HTML and pay them for their HTML coding services. The best thing to do is to learn HTML, so that you can create the perfect web page for yourself, without having to pay others for it.
What is an HTML tag?

An HTML tag is commonly defined as a set of characters constituting a formatted command for a Web page. At the core of HTML, tags provide the directions or recipes for the visual content that one sees on the Web.
What is the structure of an HTML tag?
An HTML document is a file containing Hypertext Markup Language, and its filename most often ends in the .html extension. An HTML document is a text document read in by a Web browser and then rendered on the screen.basic-html-tags
What is an attribute?
Attributes contain extra information about the element that you don’t want to appear in the actual content. Here, class is the attribute name, and editor-note is the attribute value. The class attribute allows you to give the element an identifier that can be later used to target the element with style information and other things.


What is the anatomy of an HTML document?
Every HTML document consists of two elements:
-Head elements – provides page title and general page formatting commands
-Body elements – put the main HTML text in this part.
for example the Paragraph element The main parts of our element are:

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.
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 end of the paragraph is. Failing to include a closing tag is one of the common beginner errors and can lead to strange results.
The content: This is the content of the element, which in this case is just text.
The element: The opening tag, the closing tag, and the content together comprise the element.

1 Like
What is HTML?- Hyper Text Markup Language consisting of elements used to wrap or enclose different parts of the content to make it appear or function in different ways.
What is HTML used for? It's used to make websites and alter functions within the pages of the site.
Why are we learning HTML? So we can integrate webpages into our code and have a place to display our work.
What is an HTML tag?

It’s the starting or ending point of an element.
What is the structure of an HTML tag?
(element contents </closing tag> element) * element not displayed.
What is an attribute?
element name and value. should always have a space between it and the element name, followed by an = and “” around the value.
What is the anatomy of an HTML document?

Coding Academy

How’d I do?
-Satoshi Spockamoto

1 Like