HTML Reading Assignment

  1. HTML (Hypertext Markup Language) is the code used to structure a web page.
  2. HTML is a language used for structuring the content of a web page. It allows you to display content (images, text, videos, ect) in a certain way to website visitors.
  3. We are learning HTML so we know how to set up a basic website. learning HTML will help build the foundation for future education. Its super important to know how to build a website for promoting future projects, education people, ect.
  4. An HTML tag is like the bookends of an element.
  5. Tag structure for a paragraph is as follows:

    The Ivan on tech academy is a fantastic way to learn how to become a blockchain developer.

  6. An attribute is additional information you can add to content that you don’t want to appear when someone is viewing your website. Attributes can be used to identify certain parts of an element for targeting in search use and other things.
  7. The anatomy of an HTML document is the elements needed to construct a HTML website. Required elements include but are not limited to:
    !DOCTYPE html: to make the document behave correctly.
    Html and /html: ā€œroot elementā€ wraps all the content on the entire page.
    head and /head: a place to put all the stuff that isn’t visable on the website.
    meta charset+ā€œutf-8ā€: responsible the character sets the document uses.
    title and /title: the page title.
    body and /body: a place put images, video, ect.

Answers

1. It is a markup language that defines the structure. It is a code that is used to structure a web page and its content.

2. To close or wrap diferent parts of the content to make it appear on a certain way.

3. we want to learn to create web pages.

4. Make a word or image it appear certain way or act.

5. The opening tag, the closing tag, the content tag & the element.

6. Contain extra information about the element that you do not want to appear in the actual content.

7. Wraps up the basics of individual HTML elements , but they rent handy on their own.

  1. hypertext markup language
  2. html defines the structure of my content
  3. we are learning html because we need to understand how the structure of a webpage works
  4. an html tag is the code that defines the structure on the page
  5. an opening tag, the content, and a closing tag
  6. an attribute is extra about the element that you dont want to appear in the content
  7. the anatomy consists of the doctype, the head, the title, and the body
  1. HTML is the code used to structure a web page and it’s content. It stands for Hypertext Markup Language.
  2. Structuring web pages.
  3. To get an intro into programming languages and to use it later in the real world.
  4. It’s a label which holds the name of a piece of content.
  5. Opening angle bracket and closing angle bracket with the name of the element in between.
  6. It’s extra information about the element that you don’t want to appear in the actual content.
  7. Doctype, the HTML element, the head element, UTF-8, the title element, the body element.

1
a way to express content on a website
( H yper T ext M arkup L anguage)

2
structuring web content

3
I need to be able to read it at least so I find my way around how content is shown online.
Its an easy way to start with and helpful even if you dont want to code/become a developer. Has helped me a lot so far when building websites

4
something to express the beginning and or end of an element
< p > to start
< /p > to end

5
The entire thing is an element:
< p >My cat is very grumpy< /p >
–> What is in-between the tags is being shown on the website (My cat is very grumpy)

6
something included in the element which gives extra information. it will however not be shown on the website at this particular place.

7
anything between html and /html indicates that it is written in HTML code.
In-between we have a title of the webpage, the content (body), images if any… etc

<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. Hypertext Markup Language

  2. It is used for constructing homepages and the content on the homepages

  3. To learn the basics in programming

  4. A tag is a operation code that makes the text act or appear in different ways

  5. it got a opening and a closing tag. The opening and closing is the same tag but the closing tag has a slash before it. like this
    <ā€œtag> My wife is fat</tagā€>

  6. An attribute is additional information inside the tag, that you don“t want to display on the home page

  7. <"!DOCTYPE html> is used for making sure that the document acts anb behave as we want it to do.

  8. The following is the anatomy of an HTML document:
    The HTML element is the root element. it wraps all the content.

the Head element is used for all information that you don’t want to show the page visitors. like search tags and other stuff

Meta charset element, who is setting the carracter set on the page. A good one to use is utf-8

the title element is used for the title on the home page

the body element is used for all the text that you want to display for the visitor of the web page.

  1. Hypertext Markup Language
  2. is the code to structure a web page and its content
  3. to make websites and understand the basics of web content
  4. tags are used for creating elements
  5. CONTENT all together is the element
  6. attribute contains extra information about the element
<!DOCTYPE html>
    <html>
     <head>
      <title>My test page</title>
     </head>
     <body>
     </body>
    </html>

(1 & 2) HTML stands for Hypertext Markup Language. It is a markup language, not a programming language. It is used to structure a web page’s content by marking it up with different elements, which define how the different parts of the content should be displayed and/or how they should behave.

(3) HTML is one of the tools we need to build front-end web pages for dapps.

(4) An HTML tag is part of an HTML element. Most elements have an opening tag and a closing tag, which enclose (wrap around) a specific piece of content, marking it up to be displayed, or behave, according to the type of element assigned to it.

(5) HTML tag structure:
<elementName>The content</elementName>

(6) An attribute can be added to an element’s opening tag. It adds additional information about the element (e.g. the web address for an anchor element’s hyperlink), and it can also serve as an additional marker, which can then be used to target the content with specific styles in CSS (class attribute).
Attribute structure within an opening tag:
<elementName attributeName="value">

(7) Anatomy of an HTML document:

<!DOCTYPE html>
<html>     <!-- root element: encloses all of the content -->
  <head>   <!-- encloses everything that is not content displayed
                directly on the web page for users to see and read -->
    <meta charset="utf-8">   <!-- allows text containing most characters
                                  from most languages to be displayed -->
    <title>Text appearing in browser tab or when page bookmarked</title>
  </head>  
  <body>
    <!-- encloses all content displayed directly on the web page
         for users to see and read i.e. text, images, videos etc. -->
  </body>
</html>
  1. HTML is a code that enables one to structure content in a webpage. It’s not an actual language.

  2. HTML is used to enable content to appear or act in a certain way in a webpage. This is done by enclosing the content within tags.

  3. With HTML we create a website where our content is uploaded for others to see. Applicatons such as smart contracts could be added to this website.

  4. There is an opening tag and a closing tag with an element enclosed within them. It’s a basically an instruction for the information between the tags.

  5. The opening tag names the element in angled brackets

    . The closing tag indicates the end of this particular element and uses a slash.

    The sequence from the opening tag - with the content - to the closing tag is called the element.

  6. An attribute is extra information about the element that does not appear on the website. It can be a way to classify certain information that could be treated with specific style characteristics.

  7. An HTML document begins with
    < !DOCTYPE html>
    to make the document behave correctly
    < html>
    < head>
    < /head>
    < body>
    < /body>
    < /html>

HTML stands for Hypertext Markup Language.

It is a markup language used to create and format web pages.

We are learning HTML because it is elementary to programming. It introduces us to coding a back end to display what we want.

An HTML tag is a string of characters such as

that tell the browser how to format and display the content.

An attribute is a characteristic of an element that allows more specific formatting, such as font size, creating a hyperlink, color, etc.

The anatomy of an HTML document includes attributes, elements, tags, and content.

Html is hypertext markup language

It is used for coding structure properly on websites

We are learing HTML to give us basic understanding of using it and learning its functions.

And Html Tags are used to define or build an html page.

The structure is the head and the body that contains the metadata

Attributes contain information about the element that you dont want to appear.

The anantomy is the list of individual elements that make up the html page.

  1. & 2. It’s a markup language (defined by structured code) used to make pages which can be read by browsers.
  2. To show our freshly made programs to our world (ie. friends :wink: )
  3. Structured code which encloses content.
  4. Opening and closing tag.
    6.An attribute contains extra coded information on a HTML element which isn’t shown on the marked up page.
  5. A set of rules on how to structure the elements.

1 HTML is a Hypertext Markup Language

2.HTML is used to wrap around certain content to make it appear or act in a certain way

3.We are learning HTML so we can construct a simple static website for latter implementation of smart contracts and thus make a Dapp

4.A HTML tag is an instruction in angled brackets around content to be manipulated both opening and closing the instruction

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

6.A attribute is a description of the tag operation, it does not appear in the content,

7.The basic anatomy of the HTML document starts with the Opening then the Title including Metadata enclosed by the then the Main Images enclosed by the before the closing

1)HTML is a markup language
2) It is used for showing webpages, all of them use HTML code
3)It is considered a good foundation to start learning code
4) Tag help browser to understand what it should show (a link, bold text and so on)
5)
6)Attribute provide extra information for the element
7) !doctype HTML

  1. What is HTML?
    HTML, (Hypertext Markup Language), is a markup language that defines content structure. An application, such as a browser, can interpret the markup in order to display content in a defined format.

  2. What is HTML used for?
    It standardises how content is displayed in a web page by providing a paragraphed structure within which you can define the elements of that page and how they will be presented and function.

  3. Why are we learning HTML?
    HTML by itself provides for a very static website experience and Javascript is typically used on the client side to enable user interaction. We will therefore use HTML to create the websites that will act as the foundation for developing our Javascript based interactions.

  4. What is an HTML tag?
    A HTML tag is part of a web page element. The element comprises an opening tag and a closing tag, which a browser can interpret as the bounds of that element. Any data contained between these tags will be treated as the content to be displayed.

  5. What is the structure of an HTML tag?
    Content</closing tag>
    Note that both tags have the same identifier, (enclosed by angle brackets), but the closing tag is preceded by a forward slash, thus determining the bounds of the element and its content and formatting data.

  6. What is an attribute?
    Content</closing tag>
    Attributes provide information about the element such as its class, identity, size, etc. This information is contained within the opening tag as any data written between the tags is displayed as content.

  7. What is the anatomy of an HTML document?
    HTML documents are written in a structured format that is recognised by web enabled applications such as browsers. There are a minimum number of structural elements required in order to identify a HTML document as such:
    !DOCTYPE html - Identifies the document as HTML
    html - Defines the extents of the web page
    head - Defines pertinent information that is not displayed as content
    meta charset - Defines the characterset to be used by the page
    title - Sets the page title
    body - Contains all the elements which make up the page’s content

1. What is HTML?,it is a markup language 
2. What is HTML used for?, it’s for presenting information in a structured way on internet.
3. Why are we learning HTML?, as this will be used as the human interface to present data from what so ever back end system.
4. What is an HTML tag?, it’s a formation tag, to present text or data in a certain way for the viewer of the web page.

5. What is the structure of an HTML tag?, it have opening and close tag, and inside that a content and this together forms the element

6. What is an attribute?, attributes contains extra information that  you don’t whant to be presented, can be used as an identifier later on.
7. What is the anatomy of an HTML document?, heads and body elements that together forms a web page in a structured way, So the browser know where text and elements should appears on the screen

1 Hypertext Markup Language
2 Gives structure to webpage and content
3 Knowledge needed to provide a web interface to interact with smart contracts
4 States where an element begins or ends
5 opening
element
closing
6 Attributes contain extra information about the element that you don’t want to appear in the actual content.
7

My test page My test image
  1. What is HTML?
    It is a markup language that defines the structure of your content.

  2. What is HTML used for?
    It’s a programming language for creating web pages and web application

  3. Why are we learning HTML?
    To make a simple website to communicate our programs to the outside world.

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

  5. What is the structure of an HTML tag?
    Opening tag (ex. < p >) closing tag (Ex. < /p >) and atributes

  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?
    It consists HTML elements

  1. HTML is a way of organizing an displaying simple content on a web page.

  2. HTML is used for giving simple instructions to content like text and hyperlinks; such as making text bigger, smaller, changing fonts etc.

  3. HTML will be the front end that shows how the smart contract will interact with the blockchain ( on the back end )

  4. Tags allow your content to be displayed by itself ( like a line of text ) a tag always has an opening (

    ) and an end (

    ).

  5. The structure of the HTML tag always has a beginning and ending: (

    beginning and

    end )

  6. Atributes are instructions that you don’t want to be visible in your content. It can be a hyperlink or something else.

  7. The anatomy of an HTML document is a set of rules on how your code has to be organized in order to be displayed to the end user in a proper way. It will include invisible items ( such as keywords for SEO tools, and references for the programmer to find the piece of code more easily ) and also the visible content for the end user ( like text, images, hyperlinks etc )

HTML Reading Assignment

  1. HTML stands for Hypertext Markup Language
  2. HTML is used to create web pages with hyperlinks to connect them.
  3. HTML allows us to structure the front end of our project
  4. Tags are used to create and specify elements
  5. The structure of an HTML tag includes an opening tag and sometimes a closing tag to structure elements and may include content and attributes.
  6. Attributes give information about an element that you dont want to appear in the actual content.
  7. An HTML doc consists of mainly the doctype, head, and body.