Skip to main content

KHAN ACADEMY(My First Post)

What I do in Khan Academy?

   Khan academy is the best educational site...I always wanted to be a programmer and I always wanted to study different languages like HTML , CSS and even JavaScript.  I worked with this languages on the notepad ++ but it seemed to be hard every time working with code and then changing to the browser to see its effect...

Then after a few months I came to know about this website(Khan Academy).First I used it as a place to study subjects like mathematics and then my eyes went over to the "Computer Programming " section.And this began my programming journey in Khan Academy..

Whats So Special In Khan Academy?

  As I told you that I had a lot of problem by using notepad ++.  Well Khan Academy Solves this problem and now I can directly see what happens after changing the code. It helps us in programming and makes us understand the programs easily.

MORE THINGS IN THE NEXT POST

Link To Khan Academy - Click here
 

Comments

Popular posts from this blog

Back Again

About four months since the last post, lets continue back with alice! I would recommend to revise the posts of alice since it is  time ! NOTE: Each and every post of this blog have labels with it , so if you want to refer to a post which is left far behind you can check the label in the right side of the blog and get all posts related to it! The NEXT ALICE POST will be arriving soon! Be prepared for learning to animate in alice!! NOTE: I will be also sharing with you some awesome tips and some sites which I find useful!!!!            Spread about this blog to your friends! NEWS: I will be soon sharing with you notes and information for ICSE till grade 10!           You will be informed about the release a few days before ! REWARD : As said before! This is the reward for this week : Want to learn code ::: then visit  Codecademy

Maths and programmig side by side...

Lets do maths and programming side by side...   We all like 3D animations...You must wondering what language must be used to make them..but we can make them by using a simple software "Alice"  So Do Download the Software ... Its is  trusted and is virus less!  Remember: Your laptop must have java if not please do download it from its original site...

Types Of List

So in the last blog, we worked on with a list called unordered list......Now we are gonna study more types of list.. Ordered list - This type of list starts with <ol> and ends with </ol>....this type of list creates auto numbers like 1,2,3,4....etc.. Now go to your notepad and update the code...the things in bold must be updated.. <html> <head> <title>My First Webpage (About dinosaurs)</title> </head> <h1>First Webpage</h1> <h2>Welcome to my Website...... <p>This is my first webpage....Hope you like it</p> <br> <br> <h2>Dinosaurs --- All about them</h2> <br> <p>We all know about dinasaurs.. There are many types of dinosaurs and some of the names are :- <ol> <li>Abelisaurus</li>  <li>Acanthopholis</li> <li>Acristavus</li>   </ol> </html>  After updating the code your result will be like this :- Did y...