HTML Reading Assignment

  1. HTML is a markup language.
  2. Used build web pages that can be viewed with a browser
  3. To understand some basics first, also build a functioning site that can interact with our smart contracts/ blockchain.
  4. Tags <> are used to create elements.
  5. opening tag: closing tag:
  6. additional functions containing extra information about the element that you don’t want to appear in the actual content.
    1. Doctype, HTML element, Head Element, Character Set, Title Element, Body Element
1 Like

This is the basic anatomy for an HTML code:

<html>
  <head>
    <title>This is my title!</title>
  </head>
  <body>...</body>
</html>

If you have any more questions, please let us know so we can help you! :slight_smile:

Carlos Z.

1 Like

1.- HTML stands for Hyper Text Markup. It’s a code used to build web pages. Might be structured within a set of paragraphs, a list of bulleted points or using images and data tables

2.- HTML is not a programming language, it’s a markup language that defines the structure your content

3.- We are learning it in order to learn how to build an front end to interact once we code and create the backend with the smart contracts

4.- an HTML tag is a tag that is the name of an element used to wrap a content.

5.- There are opening and closing tag. Ex.

for opening

is used to close

6.- Attributes are additional information we don’t want to show up in the content. ex: class=“editor-note”

7.- Anatomy of an HTML document is the whole structure of the document which includes all the elements.

1 Like
  1. HTML = Hypertext Markup Language. It’s a code used to structure the web page and content of that page. Not a programming language, just a way to define the structure of the content.
  2. HTML is used to make a content to appear in a certain way.
  3. It is an easy code to learn and understand for beginners and provides basic understanding of coding that can be upgraded.
  4. Tag is a part of code that we put at the beginning and end of an HTML element. These are instructions on hot the content of the element will be displayed.
  5. Tag is a pair of an opening tag and a closing tag.
  6. Attribute is extra information inside tag about the element, that we don’t want to appear.
  7. HTML document is a series of elements.
    DOCTYPE html preamble
    html element
    head element
    meta element
    title element
    body element
1 Like
  1. HTML is a markup language that defines the structure of your content. It consists of a series of elements which you use to enclose or wrap different parts of the content to make it appear in a certain way, or act in a certain way.
  2. HTML is a code that is used to structure a web page and its content.
  3. Learning HTML helps you design and structure your own website without any help.
  4. An HTML tag is the main part of an element, and contains two parts: opening tag and closing tag.
  5. A tag starts with an opening tag , has usually an attribute inside and always closes with a closing tag
    6.Attributes are used to provide extra information in the element, and are not intended for the user to see. It only appears in the back end.
  6. The HTML document contains a doctype, a title, a head, and body.
1 Like

Html is Hyper Text Markup Language.
2. Html Is used to structure a webpage and its content.
3.We are learning Html Because it is one of the Fundamental building blocks for coding.
4. A tag is the name of the element wrapped in angle brackets.


5.The structure of a HTML TAG is different for the opening and closing tag, the opening tag starts with a angle bracket then the element name then a closing angle bracket, the closing tag starts with an angle bracket then a forward slash then the name of the element followed by a closing angle bracket.
6. An attribute specifies extra info about the element you dont want to appear in the actual content
7. Html documents begin with , then there are the headings followed by the body.
1 Like
  1. HTML is the code/language used to structure web pages and its content
  2. It is used to structure web pages and content as well as link web pages together.
  3. So that we can build web pages to later on add smart contracts/java scripts to. To be able to test/use our programing as well as a means to view and interact with things.
    4)An HTML tag is the element that wraps the entire content of the entire page and is sometimes know as the root element.
  4. The structure is with an opening tag, and always a closing tag
  5. An attribute is context that is added but not viewable on the web page. This information can be used to later look up easily as well as makes the code more consistent and understandable
    7)The anatomy of an HTML document is doctype, html (opening) , head (opening), meta charset=“UTF-8”, tittle, head (closing), body, img src, body(closing), html (closing)
1 Like
  1. HTML - hypertext market language.

  2. Its used for structure a web page and its content.

  3. So we are able to build the “front end” for a smart contract.

  4. HTML Tag is a hidden keyword that defines how your web browser format and displays content.

  5. Opening tag - <…>

    Closing tag - </…>

  6. Atributes provide extra information of the element that dont appear in the actual content.

  7. !DOCTYPE html
    html
    head … /head
    body … /body
    /html

For answer 7 i removed the angle brackets as was not showing my answer.

1 Like
  1. What is HTML?
    It is not a programming language but a markup one. It is the building blocks of the web, the code used to structure the contents of a webpage. It is the bridging language between humans and computers. It is the solid foundation on which everything else is built.

  2. What is HTML used for?
    It is used to define the content of a webpage. It is used to build the foundation of the webpage, the markup, the code/language behind the web. It tells where things are. It marks up the content of a site.

  3. Why are we learning HTML?
    Because we will be building websites (front end) that can interact with the applications we will build. We will eventually learn how to build an application that can interact with the smart contracts (back end).
    Also it is essential and helpful to learn HTML before learning JavaScript. And before learning Solidity.

  4. What is an HTML tag?
    A tag is used for creating an element (parts of the page). There are starting tags and closing tags. It tells the computer what certain parts of the code (elements) are. It gives definition to the content.

  5. What is the structure of an HTML tag?
    There are opening tags and closing tags.
    An opening tag is consisted of: a less than symbol/angle bracket (<) a letter/name of the tag or combination of letters followed by a greater than symbol/angle bracket (>). Ex: <p>
    A closing tag has the same attributes of an opening tag but also a forward slash after the less than symbol/angle bracket. Ex: </p>
    Tags are part of the syntax of the HTML language. They define what a certain content is.

  6. What is an attribute?
    Attributes are extra pieces of information that can be added/attached to elements but that will not appear in the actual content. They extend the element, providing it metadata and changing its behavior. Attributes always have an identifier (name) and a value associated with it: name="value"
    However, you may see attributes without the equal sign or a value.

  7. What is the anatomy of an HTML document?
    An HTML document (or page) is formed of combined individual elements. It is made up of elements nested inside elements. The hierarchy and structure of all this elements is called a DOM Tree (Document Object Model Tree).
    The document is made up of:
    — The Root element <html></html> which wraps up the content:
    — The Head element <head></head>, which acts as a container for all the stuff I want to include in the page that will not show up to the viewers. It included keywords, CSS, etc.
    — The <meta charset="utf-8"> element, which sets the character set that my document should use to UTF-8 which includes most characters from the vast majority of written languages.
    — The Title element <title></title> It sets the title of my page, which is the title that appears in the browser tab the page is loaded in. It is also used to describe the page when I bookmark/favorite it.
    — The Body element <body></body> which contains all of the content that I want to show to web users when they visit your page, be it text, images, videos, games, playable audio tracks, etc.

1 Like
  1. What is HTML?
    The first step to becoming billionaires. Joke. A programming language to create and rearrange content on a website.
  2. What is HTML used for?
    HTML will be used for creating the front part of a given website with the intention of connecting it later to a blockchain mechanism.
  3. Why are we learning HTML?
    We’re learning it cuz we have to. Joke, it’s dope. It’s the foundation that will enable us to create larger programs.
  4. What is an HTML tag?
    HTML tags is a language piece giving you access to choose from any specific feature to display on your website creation. Can’t give examples yet. Forgive me.
  5. What is the structure of an HTML tag?
    Well, the structure of an HTLM tag consists a combination of elements that guarantees the foundation for the content display of the website.
  6. What is an attribute?
    An attribute is an detailed specification for an element.
  7. What is the anatomy of an HTML document?
    The anatomy co sost of the head and body element reference: from i_am_rp
1 Like
  1. Html is a markup language that defines the structure of content on a website.
  2. Html is used to lay out/ structure the content of a website.
  3. We are learning html because we will be building websites on javascript and C++ and this is the base of it all.
  4. Html tags are hidden keywords on a webpage that define how a web-browswer must format and display content on a website.
  5. Html tag states where and element begins and ends with

    and

    .
  6. An attribute is extra information about the element that doesn’t apper in the content.
  7. Anatomy of Html consists of , , , ,,
1 Like
  1. What is HTML?
    HTML ( H yper t ext M arkup L anguage) is the code that is used to structure a web page and its content

  2. What is HTML used for?
    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.

  3. Why are we learning HTML?
    In effort to visualize, share and promote our projects using JavaScript

  4. What is an HTML tag?
    The tag states where the element begins or starts to take effect and ends.

  5. What is the structure of an HTML tag?
    The opening tag 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 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 paragraph ends. Failing to add a closing tag is one of the standard beginner errors and can lead to strange results.

  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?
    The individual elements are combined to form an entire HTML page

1 Like
  1. What is HTML?

HTML stands for H yper t ext M arkup L anguage, and is a markup language that defines the structure of your content.

  1. What is HTML used for?

It is used to define the structure of your content.

  1. Why are we learning HTML?

We will need to interact with our smart contracts and having a web interface is the way to do it.

  1. What is an HTML tag?

HTML tags are at the centre of how Web pages are formatted. An HTML tag consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag.

  1. What is the structure of an HTML tag?

The basic structure is opening tag> Content</closing tag>

  1. What is an attribute?

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

  1. What is the anatomy of an HTML document?

It consist of basic elements: the doctype (old school something), like root element (all others inside it), element – didn’t visually appear in page, but contains useful information about page,element – contains all content that you want to show, main element, sets usable characters, element – sets title of page, seen in browser tab the page is loaded in.

1 Like
  1. Hypertext Markup Language
  2. HTML is used to make a webpage more interactive
  3. So we can provide interactive elements to our projects
  4. An HTML tag is a way to tell the browser how to treat what’s enclosed in the tag. So like italicize these words or link to this.
  5. There’s a sandwich, the bread is the opening/closing tags. The opening tag is eclosed with these<>, closing is similar like this <> The meat is the content like text or an image. Together you have a tasty sandwich called an element.
  6. An attribute is a unique identifier for the tag that dictates how that tag will be displayed.
  7. The anatomy of an HTML document is how all the elements fit together to provide the specific functionality your looking for.
1 Like
  • A markup language - that defines structure - Not a programing language

  • use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way

  • We will need to interact

  • Displey content

  • Open tag - Closing tag - head - body -

  1. HTML stands for HyperText Markup Language and is a means of describing the structure of a web page. Hypertext is the means of linking one piece of content on the web to another based on the semantic connection between the two pieces of content. Markup is the method of tagging a piece of content with specific markers that can alter the presentation of the content of a web page, such as marking it as a paragraph or as a list and more.

  2. HTML is used for creating web pages for display in a browser, where text and rich media such as video and images can be set out in a structured manner by the author.

  3. We are learning HTML so that we can present and display the data created by our code. Code output requires markup to display it in a structured manner.

  4. An HTML tag is a means of marking the content of a web page to give the content structure. Specific pieces of content can be marked with different tags to allow control over the presentation of the content within the context of the page.

  5. The structure of an HTML tag is an opening angle bracket < followed by an html element name e.g. p. After whitespace, mandatory and/or optional attributes that adjust the properties of the tag can be added, depending on the element. A closing angle bracket > completes the tag. To complete an HTML element following the opening tag and the content, the corresponding closing tag is added. This is an opening angle bracket followed by a forward slash, followed by the name of the tag and then a closing angle bracket.

  6. An attribute is a mandatory or optional property of an html tag that can adjust the presentation or functionality of the content marked up by the attribute containing tag.

  7. The HTML document anatomy is as follows:

A <DOCTYPE> tag which declares the type of markup used to structure the content to the browser
An <html> tag which encapsulates the whole of the document after the <DOCTYPE> tag
Inside the <html> tag there are two other tags:

The <head> tag which encapsulates scripting code if used and additional meta data tags not for display but typically hints to the browser on how to display content.

The <body> tag which encapsulates the content to be displayed. It may contain other html elements to further structure the content.

1 Like

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

Great answers. It’s easy to understand. Great work. :clap:

Carlos Z.

1 Like

1. What is HTML?

HTML is a HyperText Markup Language

2. What is HTML used for?

HTML is used to structure a web page and its content.

3. Why are we learning HTML?

We are learning HTML because it’s important to understand the basics as solidity has things that will remind me of javascript and also because we need to be able to code a static web page to interact with dapps.

4. What is an HTML Tag?

An HTML tag allows you to write text, italicize words, make words bolder and structure the website of its looks.

5. What is the structure of an HTML Tag?

The structure of an HTML tag is an opening and closing tag which can also include attributes.

6. What is an attribute?

An attribute allows you to create non-unique identifiers in html tags, for example if you want three different sentences to be blue, bold and italic, instead of adding all of those features into each single one, you can simply create an attribute that would do all those 3 things to make things simpler, easier and faster to apply to text you want.

7. What is the anatomy of an HTML document?
The anatomy of an HTML document is used as the skeleton frame of every website.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
  </body>
</html>
1 Like
  1. What is HTML?

Hypertext Markup Language. It’s a the language that communicates to the browser to display the parts of a website in the way the writer desires.

  1. What is HTML used for?

To format how the user experiences a website.

  1. Why are we learning HTML?

So we can have a toolkit and the fundamental building blocks to move into even more complex languages instructions for computers.

  1. What is an HTML tag?

The opening and closing of an element that alerts the program reading it the type of element when and element begins and ends.

  1. What is the structure of an HTML tag?

  1. What is an attribute?

Something that you want to exist but you don’t want the end user to see/experience directly.

  1. What is the anatomy of an HTML document?

Header of the website and a container for all the stuff you don’t want people to see (SEO words, Style you’ll use, formatting etc.)

Title of website

all the stuff in the body of the website

Closes out the whole document as an html document.`Preformatted text`
1 Like