Monday, 25 September 2017

INTERESTING FACTS ABOUT FACEBOOK

                                                       


1.Around 350 million photos are uploaded to Facebook every day, with the site estimating in September last year that users had so far put up more than 250 billion images. That’s 4,000 photos uploaded every second and around 4 per cent of all photos ever taken, according to a study by Nokia.

2.Facebook’s logo is blue because Mark Zuckerberg is red-green colour blind. “Blue is the richest color for me. I can see all of blue," said Zuckerberg in an interview with the New Yorker. The colour is so popular that Facebook’s campus store even sells nail polish in the exact shade named ‘social butterfly blue’.
                                      

3.Zuckerberg's famously low-key wardrobe (either a grey t-shirt or a hoodie) is so that the CEO saves time deciding what to wear each day. However, Zuckerberg is known to dress up when the occasion demands it. For a 2011 event with Barack Obama he showed up in a suit, with the president introducing himself by saying: “I’m Barack Obama and I’m the guy who got Mark to wear a jacket and tie.” 

4.In July 2006 Zuckerberg turned down a $1 billion offer for the site from Yahoo. He was 22 years old at the time and owned 25 per cent of the company. Zuckerberg reportedly turned it down by saying “I don't know what I could do with the money. I'd just start another social networking site. I kind of like the one I already have.” He definitely made the right choice: Facebook is now valued at $135 billion.

 5.Zuckerberg isn’t much of a Twitter fan. Despite having nearly three hundred thousand followers on the service he’s only tweeted 19 times - once in 2012 and the rest in 2009. Although Facebook dwarfs twitter in terms of active users (1 billion compared with 200 million by some accounts) the micro-blogging site handles breaking news better. Facebook has introduced trending topics and hashtags to counter this.

6.You can browse Facebook upside down. Facebook currently supports more than 70 different languages – including English (Pirate) and English (Upside Down). Check the bottom of the column on the right of your newsfeed and click your current language to change!

INTERESTING TAGS IN HTML


FIGURE & CAPTIONS TAGS:

                                 HTML5 introduced an element to insert a figure with a caption
                                         
                  
<figure>
  <p><img src="eiffel.jpg"
    width="136" height="200"
    alt="Eiffel tower">
  <figcaption>Scale model of the
    Eiffel tower in
    Parc Mini-France</figcaption>
</figure>
 
 
OUTPUT:  
 
                    Eiffel tower 
           Scale model of the Eiffel tower in Parc Mini-France 

    VIDEO TAGS:
       
  • Only MP4, WebM, and Ogg video are supported by the HTML5 standard.
  •  Video tag is used upload the video in web page
                           <video width="400" controls>
                           <source src="mov_bbb.mp4" type="video/mp4">
                           <source src="mov_bbb.ogg" type="video/ogg">
                           </video>
     AUDIO TAGS:
            <video width="400" controls>
           <source src="mov_bbb.mp4" type="video/mp4">
           <source src="mov_bbb.ogg" type="video/ogg">
            </video>
 
 
        Tag            Description
    <article>            Defines an article in a document
   <aside>           Defines content aside from the page content
                                                 
<details> Defines additional details that the user can view or hide
<dialog> Defines a dialog box or window
<figcaption> Defines a caption for a <figure> element
<figure> Defines self-contained content
<footer> Defines a footer for a document or section
<header> Defines a header for a document or section
<main> Defines the main content of a document
<mark> Defines marked/highlighted text
<menuitem>  Defines a command/menu item that the user can invoke from a popup menu
<meter> Defines a scalar measurement within a known range (a gauge)
<nav> Defines navigation links
<progress> Represents the progress of a task
<rp> Defines what to show in browsers that do not support ruby annotations
<rt> Defines an explanation/pronunciation of characters (for East Asian typography)
<ruby> Defines a ruby annotation (for East Asian typography)
<section> Defines a section in a document
<summary> Defines a visible heading for a <details> element
<time> Defines a date/time
<wbr> Defines a possible line-break