HTML Reading Assignment

  1. The tool to structure a Webpage.

  2. The body and the content structure of a webpage.

  3. Because everything starts from HTML.

  4. A command.

5.

  1. Adds attributes.

  2. ... ...
1 Like
  1. HTML ( H yper t ext M arkup L anguage)

  2. It is the code that used to structure a website

  3. It will help in creating GUI to smart contracts developed.

  4. A tag is a formatted command with HTML.

  5. The Structure Of An HTML Tag

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

7.Anotomy of HTML-
Doctype HTML
HTML tag
Headings
Paragraphs
Lists
Links
Images
HTML close tag

1 Like
  1. HTML is a markup language that defines the structure of your content.
  2. The code that is used to structure a web page and its content.
  3. To learn how to code and structure web page,
  4. Tag that comes at the begging and end of content.
  5. content
  6. Attributes contain extra information about the element
  7. Head and body elements
1 Like
  1. It is a code language that enables you to create the structure of a webbpage.
  2. To program webbsites with fixed content.
  3. To get an understanding and to be able to create some frontend.
  4. It is the instructions we give to the webb site.
  5. Opening tag, content and then closing tag, maybe element in the middle as well dont actually know.
  6. It contains extra information about the tag that you dont want to appear in the actual content.
  7. Head elements and body elements.
1 Like
  1. HTML (Hyper text markup language) it’s a technology that let’s you see contents in your browser.
  2. It is used to program websites with a fixed content.
  3. It’s good to learn HTML as a foundation for web development and blockchain development.
  4. A tag is what makes the browser recognise what type of content it has to show and in what way.
  5. A tag starts with an opening , has usually an attribute inside and finishes with a closing
  6. An attribute specifies some additional properties regarding the content included inside a tag.
  7. An HTML page always starts with the tag , it has and where all the info needed to the website that won’t appear as a content (title, descriptions, seo, scripts and so on), and finally the where all the content lies. All these tags need to be closed
1 Like
  1. A markup language that defines the structure of one’s content.
  2. It makes certain parts of the content appear in a specific or certain way.
  3. We need to understand the front end of developing crypto applications in order to develop the back end.
  4. It is directional text with 2 parts: Opening tag and closing tag.
  5. Element = opening tag + content + closing tag
  6. certain information about the element that you don’t want to appear in the actual content.
    7)Doctument type, HTML element, HEAD element, Character set should be UTF=8, TITLE element, and BODY element.
1 Like

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

Carlos Z.

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. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.

What is HTML used for?

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

Why are we learning HTML?

HTML is an essential language for anyone who is aspiring to become a front-end web developer. This markup language is used on pretty much every web page in existence, and it makes it simple to create engaging content in a way that web browsers can understand, and it is simple to learn and easy to use.

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. Some examples of HTML tags are:

… — The root element. ...

< head > … </ head > — The document head . …

< title > … </ title > — The page title . …

< body > … </ body > — The page’s content. …

— A section heading. ...

— A paragraph. ...

— A link. …

< img > — An image.

What is the structure of an HTML tag?

In a web page, the first tag (specifically, < html >) indicates the markup language that is being used for the document. The tag contains information about the web page. Lastly, the content appears in the tag .

What is an attribute?

An HTML attribute is a piece of markup language used to adjust the behavior or display of an HTML element. Attributes define additional characteristics or properties of the element such as width and height of an image. Attributes are always specified in the start tag (or opening tag) and usually consists of name/value pairs like name=“value”. Attribute values should always be enclosed in quotation marks.

For example , the paragraph

element in the example carries an attribute whose name is align, which you can use to indicate the alignment of paragraph on the page. The value is what you want the value of the property to be set and always put within quotations.

HTML tags are made up of a few basic components:

  • Angle Brackets (the greater than & less than symbols “<” & “>”) The “<>” tells the web browser that “this is an html tag.”
  • Names: The name of the tag that is usually an abbreviation of a word or phrase that says what it does.
  • Attributes: attributes are specific to tags and add additional information telling the browser what to do in the context of that tag.
  • Attribute Values: Very specific information for a tag attribute (don’t worry we’ll show you examples)
  • Default Values: What the tag will do if no attributes with values are specified.

Let start with a really basic example. One of the most common things you’ll want to do with text is make it bold. This is easily accomplished with an HTML tag. Actually there are two tags you can use for this:

bold ; and bold

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.

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.

1 Like

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

Carlos Z.

  1. a webpage programming language-HTML stands for Hyper Text Markup Language
  2. to set how the information displayed is structures, looks and acts
  3. to learn the basics of programming and to also to be able to create a webpage
  4. a HTML tag is a part of an element which states where it starts and where it ends
  5. in the beginning it consists of a name in opened and closed angle brackets and the same but with a forward slash before the name at the end
  6. extra information about the element that you don`t want to appear in the content
<html>
   <head>... </head>
   <body>...</body>
 </html>
1 Like
  1. Hypertext Markup Language
  2. Defineingg how content should be displayed
  3. So we can create a front end for later applications
  4. Its a component of HTML which defines how the content should be structured or displayed
  5. </end tag>
  6. Additional setting or information which modifies an HTML tag
  7. Root element, header element, body element
1 Like
  1. What is HTML? defines the structure of content /markup language
  2. What is HTML used for? it is used as the structure for web pages and its content
  3. Why are we learning HTML? idk because its really cool
  4. What is an HTML tag? makes up hyperlinks for words and images
  5. What is the structure of an HTML tag? start and end of an element
  6. What is an attribute? extra information that is hidden
  7. **What is the anatomy of an HTML document?**open/close tags, content and element
1 Like
  1. HTML (Hypertext Markup Language) is a language used to structure a website in the way it presents itself and the content displayed.
  2. It is used for structuring the content presented in websites.
  3. We are learning HTML as it can be seen as a foundational stepping stone into the world of programming. In learning HTML, we will be better equipped to recognize other languages. We will learn how to learn so that as other languages are created we are capable of learning them. HTML also will be used to create the front end of any blockchain projects we hope to have users interact with. On the back end we would have the smart contracts and on the front end we will present it to users for their interaction.
  4. An HTML tag is what denotes the beginning and end of an element. Where within the element and its tags you present the content you wish to display.
  5. Tags are enclosed within angle brackets as such

    with the name of the element within the brackets (ex p). The opening tags are only used with angle brackets as above. Closing tags include a backlash such as

    . This indicates that you are closing the element.
  6. An attribute contains extra information of the element you do not wish to be seen along with the content. This is used if you want to later target specific elements with the same value to alter style or other things.
  7. An HTML document is structured by the tag, and <body. This is the basic anatomy of an html document.
1 Like

1. What is HTML?
Ans 1: HTML (Hypertext Markup Language) is the code that is used to define the structure of a web page and its contents.

2. What is HTML used for?
Ans 2: HTML is used to organize and design different elements of the web page content like text and fonts, paragraphs, bulleted points, images, data tables, hyperlinks and make it look a certain way.

3. Why are we learning HTML?
Ans 3: We are learning HTML because it is the basic language used to create websites that interact with block chain and smart contracts.

4. What is an HTML tag?
Ans 4: When we want different parts of the content of a web page to appear a certain way, or act a certain way, we design and organize the lay out of the elements of a web page by enclosing the content within tags.

5. What is the structure of an HTML tag?
Ans 5: Angle brackets < p > that determine The opening tag. This states where the element begins or starts to take effect and
The closing tag < /p> This states where the element ends.

6. What is an attribute?
Ans 6: An attributes contains 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?

Ans 7:

< !DOCTYPE html > protocol of the document

< html > Wrapped contents of the entire page

< head > Content displayed to your viewers. (page description, character set, css, keywords etc)

< meta charset=“utf-8” > Text handiling document

< title >< /title > determines the title of the page that appears on the browser

< /body > all the content that you want to show on your web page

:pray: :heart: :pray:

1 Like
  1. A markup language that defines the structure of your content.

2.It is the code that is used to structure a webpage and its content.

  1. To build websites & applications and learn the basic language and go on to develop on other platforms such as Ethereum etc…

  2. This states where the element begins or starts to take effect.

  3. Opening tag <> and closing tag </> and content comprise the element.

  4. Contains extra information that you don’t want to appear in the actual content.

  5. Anatomy includes, Body, Head, Image, Title. Content you don’t wish to be shown. All the meat

1 Like
  1. What is HTML?
    It is a markup language (a code) that defines the structure of the content on a web page.
  2. What is HTML used for?
    It is use to structure the content, make it appear or act a certain way. An example is that it can hyperlink a text or an image to somewhere else (a link) or can italicize words and can also make the front bigger or smaller.
  3. Why are we learning HTML?
    It is the basic code language that will build the basic skill and understanding writing code.
  4. What is an HTML tag?
    The tag is use to enclose content.
  5. What is the structure of an HTML tag?
    We have an opening tag, the content and a closing tag. The 3 together form the Element.
  6. What is an attribute?
    An attribute allow you to give the element a non-unique identifier that can be uses to target with style information or other things.
  7. What is the anatomy of an HTML document?
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title> </title>
  </head>
  <body>
  </body>
</html>
1 Like

Q1: What is HTML?
A1: HTML is code that is used to structure a web page and its content and 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

Q2: What is HTML used for?
A2: HTML is used to describe websites so they can be rendered by a browser (the front-end/user interface)

Q3: Why are we learning HTML?
A3: To enable us to build front-end/user interfaces that can interact with back-end smart contracts

Q4: What is an HTML tag?
A4: An HTML tag denotes the start and end of an element/section e.g. headings, lists, paragraphs etc

Q5: What is the structure of an HTML tag?
A5: <opening tag + attribute(s)> + “content” + </closing tag>

Q6: What is an attribute?
A6: Elements can have attributes to provide additional - non-visual/non-displayed key/value pair - information about an element - e.g. class IDs

Q7: What is the anatomy of an HTML document?
A6: Individual elements are combined to form an entire HTML page which must include and be structured as follows:

<!DOCTYPE html>
<html>
     <head>
     </head>
     <body>
        ... body elements e.g. lists, paragraphs, images etc
     </body>
</html>
1 Like
  1. What is HTML?

Hypertext Markup Language: a set of specifications written in plain text that a browser can use to display complex and interesting information in text, images and hyperlinks.

  1. What is HTML used for?

Delivering a “marked up” textual information experience. Rather than just paragraphs, you can format the text and add more interesting displays of information.

  1. Why are we learning HTML?

It’s important to understand the basic structures of Web1 and 2 before trying to program Web3.

  1. What is an HTML tag?

A text feature encapsulated in < > symbols that tell the browser how to display the contents within the tag.

  1. What is the structure of an HTML tag?

Opening tag (IE < p >) and closing tag (IE < / p >), defining something about the text in between.

  1. What is an attribute?

Specifics listed within the opening tag that describe more about how to display the text enclosed by the tag.

  1. What is the anatomy of an HTML document?

A series of nested elements:

" Doctype " defines the file as html
" html " defines where on the page the official html begins
" head " element describes things about the page the browser needs to know but is not for display in the common view of the page
" meta charset " defines what character set the browser should use to display the text
" title " describes how the page should be referenced in the browser
" body " is the content itself that will be displayed by the browser for the user

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?

    Answers
    1). HTML is an Hypertext markup language.
    2). HTML is used for defining how a webpage looks like.
    3). Because HTML is needed in order for us to put the knowledge of our crypto and blockchain technology on a web front end for users to see and interact with.
    4). An HTML tag is special word or letter enclosed between a pair of angle brackets,< and > used to make our page look or react in certain ways, such as creating a paragraph, links to somewhere else, highlighting certain words and so on
    5). An HTML tag consists of an opening tag, eg < abcd> and a closing tag </ abcd> and a content in between.
    6). An attribute contains extra information about the element that you don’t want to appear in the actual content.
    7). Every HTML Document consists of two major parts : the head and the body.

1 Like