Thursday, 11 February 2016
Facebook Free Basics Banned in India by TRAI
NOBODY EVER BEFORE EXPLAINED: Connecting
the World would be EASY.
The decision from the Telecom Regulatory Authority of India
comes after a long battle between
Facebook and the country's net neutrality advocates. Free Basics was blocked
temporarily in India and after temporary ban on fb free basics, the company
started a campaign to try and win public support. Facebook
introduces a new save its Free Basics and some users on the social media site
say that they didn’t know they were supporting Free Basics, which was previously
called the Internet.org
Facebook CEO Mark Zuckerberg even speak:
"Instead
of wanting to give people access to some basic internet services for free,
critics of the program continue to spread false claims, even if that means
leaving behind a billion people", "Who could possibly be against
this?"
TRAI has extended the deadline for submission of comments till
January 7 amid an intensified campaign for and against Free Basics. FB argued
that Free Basics was more humanitarian. Not only did it offer free access to
Facebook, but also a range of helpful sites that offered resources like weather
reports and health information. Campaigning of free internet basics in India has
come to nothing.
TRAI determination will come almost after 8 weeks after
the regulator primary sailed some sort of cardstock asking yourself regardless
of whether like providers must be granted initially. The cardstock set-off
another Web Neutrality debate in the country along with Facebook.
Wednesday, 10 February 2016
create first basic program of html with perfect example and explanation with images
Create First Program of HTML - Easy Tutorial - Step by Step
HTML stands for HyperText Markup Language and used to create webpages but it is static, it doesn't mean if you once code then it cannot be change. You can change infinite times but you need to edit to code that page again and again and it is very boring task to do. Let's start with html...
1. First open notepad
2. Then write html code or copy from below:-
HTML Code:
<html>
<head>
<title>
Tutorial by AFLOCC
</title>
<body>
<p>This is my first webpage</p>
</body>
</html>
3. Copy above code to notepad
4. Now Save File to any directory or folder or simply on desktop
see above image your default "save as type" to ".txt" file please change it to "all files" like me
5. Locate your save file and open with any of your browset like "internet explorer", "google chrome" or "mozilla firefox"
6. Now your result display on your screen
Time for Part B or Explain Whole Coding of your HTML
Basic Structure of HTML Coding :
<html>
<head>
<title>
.
.
</title>
<body>
.
.
</body>
</html>
Part 1:
<html>
.
.
</html>
Between html tags go your all code
Part 2:
<head>
.
.
</head>
Between head tag go your all scripts, css codes or meta description but in basic html we doesn't need css, scripts and other things
Part 3:
<title>
.
.
<title>
Between title tag go your title of your webpage like below
Part 4:
<body>
.
.
</body>
It is main part of your html coding because without body tag you cannot get any result to display at any cost
Remeber: In "HTML" every tag start and end must, there are only few tags which does not need to end like "<br/>" which is used to break lines or you need more space between two lines or simply you called "Enter" button of your "html" code. But almost all of your html tag have starting and ending like start body tag like <body> and end with </body>
A Tutorial by AFLOCC