HTML Reading Assignment

1.) Hypertext Markup Language

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

3.) Basic web development skills will allow us to progress onto more complex programming projects on EOS, Ethereum etc

4.) A HTML tag is the center of creating a web page and content. You must begin a tag for example a paragraph is

and you must close the tag by putting a “/” at the end or

to close a paragraph

5.) explained in 4

6.)Attributes contain extra content about the element for example bold printing for a particular word.

7.) The Anatomy of a HTML document or are all the elements inside the document that create the HTML page eg etc.

1 Like
  1. HYPER TEXT MARK UP LANGUAGE
  2. Mark up language that defines the structure of your content, structure a webpage, consisting of elements
  3. To learn the fundamentals and basics of connecting front end (websites) to the backend (blockchain)
  4. A tag is to open an element, and to close an element.
  5. Opening tag is wrapped in angle brackets and closed by angle brackets, closing tags have a forward slash before element name (after first angle bracket)
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content
  7. Individual elements that combine to form an HTML page.
<!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. What is HTML?
  • HTML is not a programming language; it is a markup language that defines the structure of your content .
  1. What is HTML used for?
  • Is used to structure a web page and its content.
  1. Why are we learning HTML?
  • It seem like the foundation or most basic element of building / programming a website. So, I guess we start there.
  1. What is an HTML tag?
  • A tag (opening & Closing) is what defines where an element takes effect.
  1. What is the structure of an HTML tag?
  • Content
  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?
    <html>
    <head>
    <meta charset=”utf-8”>
    <title> Title </title>
    </head>
    <body>
    Content
    </body>
    </html>
1 Like
  1. Hyper Text Marker Language it is a mark up language that defines the structure of your content.

  2. Consists of a series of elements , which you can use to enclose , or wrap different parts of content and make it appear a certain way .

  3. To have a base to connect our dapps with the website.

  4. A tag denotes the start and end of a section in HTML , like a heading , paragraph, table etc…

  5. An opening tag telling the people what to display . The information you want displayed and a closing tag.

  6. A quality or characteristic of a tag .

  7. HTML tags enfolding a header then a body which are both their own enfolded tags.

1 Like
  1. Hyertext Makeup Language
  2. Used to structure the web page and its content
  3. In order to be able to construct an application that can interact with smart contracts.
  4. An HTML tag represents the root of an HTML document.
  5. Opening and closing tags
  6. Attributes are specific words used inside the opening tag that control the elements behavior.
    7)< !DOCTYPE html>
    < html>
    < head>
    < meta charset=“UTF-8”>
    < title>Test Page < /title>
    < /head>
    < body>
    < p> Stuff < /p>
    < /body>
1 Like
  1. What is HTML?

HTML (Hypertext Markup Language) is code used to structure a website and web content. This content can be arranged in various ways, such as paragraphs, bullet points, images or tables.

  1. What is HTML used for?

HTML defines the structure of you content and is not a programming language, rather, a markup language. It consists of elements used to wrap different parts of content to define the way this content appears.

  1. Why are we learning HTML?

To be able to create a UI for SCs. Even though it is possible to communicate with a SC in a block explorer, UIs are required to drive usability and adoption.

  1. What is an HTML tag?

There are two types of HTML tags: Opening tags and closing tags. They define where an element starts and ends.

  1. What is the structure of an HTML tag?

In the example presented in the article the opening tag consists of angular brackets enclosing the name of the element. Closing tags also feature a back slash

  1. What is an attribute?

An attribute contains additional information about the content in the element.

  1. What is the anatomy of an HTML document?

The combination of individual elements forming a full HTML page.

2 Likes
  1. HTML is not a programming language; it is a markup language that defines the structure of your content.
  2. HTML is used for enclosure and wrapping of elements to make them appear in a certain way just like the “way” word in this paragraph.
  3. We learn HTML because everything is on the web and the programming languages are quite similar. Also it lets you learn how to code in the most popular language in the world.
  4. A has an opening < ta g> the tag is one of many and can produce different results and has different functions. it is then closed with forward slash tag again to finish it. </t ag>
  5. <?> <?/>
  6. Attributes have some more information about the element, and they don’t want to appear in the content on the HMTL website.
  7. WITHOUT THE SPACE AFTER EACH <
    < !DOCTYPE html>
    < html>
    < head>
    < meta charset=“utf-8”> (very useful and should be added everytime)
    < title>My test page
    < /head>
    < body>
    < img src=“iimage.png” alt=“image” >
    < /body >
    < /html>
1 Like
  1. HTML is a Hyper Text Markup Language used to specify web page(s).

  2. The language is used to create and build a Web page and it’s contents.

  3. To gain experience on how Web pages are constructed/function and to design them.

  4. Tags are markers specifying the layout of the content of a Web page - text for example.

  5. Tags are formed using < > pairs which enclose content to form and element. For example

    My text

    to describe the text as a paragraph.

  6. An attribute is a extension to a opening tag containing extra information that in not displayed.

  7. An HTML document contains a series of tags and tag content elements to describe the appearance of the web page. Typically tags that are included are , and etc.

1 Like
  1. HTML stands for Hypertext Markup Language.

  2. HTML is the code (markup language) that is used to structure a web page and its contents.

  3. Because it is recommended by Ivan, as one of the necessary basic frontend skills/tools we need to have in hand, a pre-requisite for future blockchain related project(s) development!

  4. In HTML, a tag is used for creating an element, which is a part of a webpage. An element may contain a data item, text set, an image or nothing. Tags begin or end an element in source code.

  5. The structure of a HTML tag consists of a opening tag, where the name of the element is wrapped in angle brackets , for example, and a closing tag, similar to the opening tag but with a forward slash before the element name, for example, .

  6. Attribute contains extra information about the element.

  7. The anatomy of an HTML document consists of the following:

  • Starts with ‘!DOCTYPE html’ tag in wrapped brackets, which document type. It is needed to make sure your document behaves correctly.
  • html element, which wraps all the content on the entire page and is sometimes known as the root element.
  • head element. This element acts as a container for all the stuff you want to include on the HTML page that isn’t the content you are showing to your page’s viewers. This includes things like keywords and a page description that you want to appear in search results and more.
  • meta charset=“utf-8” — This element sets the character set your document should use to UTF-8 which includes most characters from the vast majority of written languages.
  • the title element. This sets the title of your 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 you bookmark/favorite it.
  • body element. This contains all the content that you want to show to web users when they visit your page, whether that’s text, images, videos, games, playable audio tracks, or whatever else.
2 Likes

What is HTML?
Hyper Text Markup Language. It is a markup language not a programming language. HTML consists of Elements where an Element consists of an opening tag, closing tag, angular brackets, and content.

What is HTML used for?
HTML is primarily used to structure the content and style on a webpage.

Why are we learning HTML?
To learn how to build a webpage that can interface with our smart contract, block chain or other application. At a minimum to learn what is required and how a webpage connects to a contract, block chain, or app, even if we are not building it ourselves.

What is an HTML tag?
An HTML tag is typically defined as a set of characters constituting a formatted command for a Web page. Tags give the directions or recipes for the visual content that you see on a Web page. SOURCE

What is the structure of an HTML tag?
Per the source quoted just prior, the structure of an HTML tag “consists of the tag name in angular brackets and may come in pair, which makes up the beginning and ending tag that frame a particular piece of code, text or other tags. The beginning tag consists of the name, optionally followed by one or more attributes, whereas the ending tag consists of the same name preceded by a forward slash ("/"). For example, the HTML tag “

” begins a paragraph, whereas “

” ends that paragraph. This is a consistent syntax in HTML.

What is an attribute?
An attribute contains additional information about an element that we do not want to appear in the content itself. An attribute should always (1) have a space between it and the element name (or previous attribute), (2) the attribute name followed by an equal sign, and (3) the attribute value wrapped by opening and closing quotation marks. Additional information can be found HERE.

What is the anatomy of an HTML document?
The anatomy of an HTML documents looks like the following…

1 Like
  1. HTML stands for Hypertext Markup Language - a series of tags, content, and elements wrapped / enclosed around web text to create a desired appearance.
  2. HTML brings life to your text in a web format. Through HTML you can create / change affects, insert tags to other content, insert images, and overall put organization behind your text content to make it more organized/ consumable.
  3. HTML is a fundamental building block that interacts with your smart contract. web is a pivotal component to bridging your smart contract with a community of users in the DApp
  4. an HTML tag allows the developer to create hyperlinks, italicize words, manipulate font, etc.
  5. an HTML tag consists of an opening and closing tag. within this ‘element’ is the content (text). a series of commands can be written within the bookends (open/closing tags) to generate a determined style/outcome.
  6. an attribute contains extra information about the element that you don’t want to appear in the actual content. ie - create unique identifiers, target with style information
  7. anatomy of html doc:
  • - preamble, with no real function other that to establish correct behavior
  • - this element wraps all the content on the page
  • - acts as the container for what you want included on the page NOT visible to the page viewer
  • - sets the character set of your doc - this particular set references UTF-8 which included a wide range of most characters, increasing functionality / interaction with other languages
  • - sets the title of your page, also used as the bookmark tag descriptor
  • - contains ALL content you DO want the page viewer to see from the doc.
1 Like
  1. What is HTML?
    (HyperText Markup Language) is the code used to structure a web page and its content.

  2. What is HTML used for?
    It’s not a programming language, it’s a markup language that define the content of your content.

  3. Why are we learning HTML?
    We’re learning HTML becuase it’s the building block of coding. Learning how rto structure a website is going to help us.

  4. What is an HTML tag?
    Tags can make a word or image hyperlink to somewhere else, italicize words, or changr the sizes of different fonts.

  5. What is the structure of an HTML tag?
    -The opening tag- This consists of the name of the element, wrapped in opening and closing brackets. This states where the element begins or starts to take effect.

-The Closing Tag- The same as the opening tag but it includes a forward slash before the element name.

-The Content- The content of the element, the text.

-The Element- The opening tag, the closing tag, and the content together comprise the element.

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

  2. What is the anatomy of an HTML document?

- Needed to makes ure that document behaves properly. - This element wraps all the content on the entire page and is sometimes known as the root element. It's the container for the things you want to include on the HTML page that isn't content you want to show page views. It includes keywords, a page description that you want to appear in search results, CSS to style our content, character set declarations. - Sets the character to UTF-8 which includes most character of vast majority of written languages. It can handle any textual content you put in. Set it up so you don't have problems later. This sets the title of your page, which is the title that appears in the browser tab the page loaded in. It can also be used describe the page when you bookmark/favorite it. - Contains all the text you want to include to show web users when they visit your page, whether text, videos, images, etc.
1 Like

HTML stands for HyperText Markup Language and is the underlying code that gives infrastructure to all Web pages. Without knowing HTML one would not be able to create/edits Web Sites and would have to rely on others to do the job.

A tag on the code determines where content begins/ends/and how it stands on the page The structure of a tag is < > for an opening tag and < / > for a closing tag.

An attribute is what is enclosed inside the tag, which serves as a characteristic for how the Web site’s text/images look. Not all attributes determine look, some are used for other reasons and do not manifest on the visible site.

STRUCTURE ( there should be no spaces between < and the text )

< !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>

2 Likes
  1. hypertext markup language
  2. use to structure a web page and its content
  3. to structure a web page contents eg. add images list of bulleted points for data tables
  4. html tags enclose elements of the content to do things like hyperlink to somewhere else, change font size, parts of the content appear or act in a certain way using tags
  5. structure of html tags are: opening tag, closing tag, the content, the element
  6. the element has attributes which contain extra information you dont want to appear in the content eg. class which gives the element a non unique identifier that can be used to target it with style information
    7.the anatomy of html document is doctype, html, head, meta, title, head, body,img, body,html.
2 Likes
  1. HTML (HyperText Markup Language) is the code that is used to structure a web page and its content.

  2. HTML is used to by web pages to display information.

  3. We are learning about HTML to learn about building a web page and get familiar to programming.

  4. A HTML tag is something that defines how a web page will format and display content.

  5. Opening tag, content, closing tag.

  6. An attribute is something that contains extra information you don’t want to appear in actual content.

  7. The anatomy if a HTML document is all the HTML elements put together in a structure.

2 Likes
  1. What is HTML?
    HTML stands for Hypertext Markup Language.

  2. What is HTML used for?
    It is used to define the structure of content on websites/pages.

  3. Why are we learning HTML?
    In order to understand how it connects and is used in interfacing with smart contracts.

  4. What is an HTML tag?
    There are two types of tags, opening and closing, they are used to indicate the start and end of elements.

  5. What is the structure of an HTML tag?
    Tags consist of opening and closing angle brackets to indicate the boundaries of an element.

  6. What is an attribute?
    Attributes contain extra information that you do not want to appear in the actual content.
    .

  7. What is the anatomy of an HTML document?
    Individual elements that combine to form the entire HTML Page.

2 Likes
  1. HyperText Markup Language. A markup language that defines the structure of a webpage.
  2. Designing and structuring the front end of a webpage.
  3. HTML is useful for anyone looking to code as its use is so ubiquitous. For me/us specifically, it is how we will design the front end which will communicate with our backend code (smart contracts/apps)
  4. A signifier of what type of content we want at a specific part of our webpage eg. heading, paragraph, image, video etc.
  5. open and close brackets which contain letter(s) inside them and a forward slash for a closing tag. eg: < HTM L> < /HTML >
  6. Additional information about an element (within a tag) which we do not want displayed on the webpage.
  7. All the elements which when put together and coded correctly define the layout of our webpage.
2 Likes

What is HTML? Short for hypertext markup language. It is used to structure a webpage.

What is HTML used for? Structuring a webpage. Items such as paragraph format, delimited items, bulleted or numbered items, images, data tables, and positioning of all of these items amongst one another.

Why are we learning HTML? To understand the how the front panel user interface for smart contracts are developed.

What is an HTML tag? A function that identifies what the element is. Each element needs an Opening Tag and Closing Tag.

What is the structure of an HTML tag? Opening tag is enclosed in angle brackets. Closing tag is enclosed with the same but also a forward slash shall be included.

What is an attribute? An entity that contains extra information about the element that you dont want to appear in the actual content.

What is the anatomy of an HTML document? Combination of elements make up the HTML Document

2 Likes
  1. HTML (Hypertext Markup Language) is a markup language consisting of a series of elements including the opening tag, closing tag, and content. These tags allow customization for presenting text, images, or hyperlinks in a certain style.

  2. HTML is used for structuring information on a web page. Information can be presented in an organized manner by structuring it within a set of paragraphs, a list of bullet points, or by using pictures and data tables.

  3. Learning HTML is essential for web development and blockchain technology because a decentralized application requires front-end and back-end functionalities. Without the front-end functionalities such as a user interface, the functions of a smart contract cannot be interacted with. It is also financially beneficial to be able to build web pages without the help of an external service.

  4. An HTML tag is one of the main parts of an element used for structuring content. The syntax of HTML consists of opening and closing tags where in-between contains content.

  5. An HTML tag is structured as : <tag> Content is placed between these tags </tag>

  6. Attributes define additional characteristics or properties of the element. They are always specified in the opening tag and consist of name/value pairs.

  7. Each web document has the following structure:
    a) <!DOCTYPE html> - This is required to check whether the document behaves correctly.
    b) <html></html> - This element wraps all the content on the entire page.
    c) <head></head> - This element acts as a container for content to include on the HTML page.
    d) <meta charset="utf-8"> - This element sets the characters’ encoding to UTF-8.
    e) <title></title> - Sets the title of the webpage, which is the name of the browser tab.
    f) <body></body> - Inside this element contains all the content that will be displayed on the web page.

EXAMPLE HTML DOCUMENT:

<!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>
2 Likes
  1. What is HTML?
    Hyper Text Markup Language.

  2. What is HTML used for?
    HTML is used to program websites

  3. Why are we learning HTML?
    HTML is a good foundation to learn website programming and it helps to connect the front end of the blockchain.

  4. What is an HTML tag?
    Tag is the start and end of an element.

  5. What is the structure of an HTML tag?
    The opening tag, the content and the closing tag

  6. What is an attribute?
    Attribute contain extra information about the element.

  7. What is the anatomy of an HTML document?
    The doctype, html element, heading, title and a body

2 Likes