Simple scrollbar for -webkit
browsers.
Tried to make like a Dribbble shot by Ozgun Tandiroglu. With css and little bit jquery.
A Pen by Kaushalya Mandaliya on CodePen.
A menu made by css and html. Just simple. http://codepen.io/kman/pen/pvflL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
void main() | |
{ | |
int num,i,temp=0,temp2,a,b; | |
clrscr(); | |
printf("Enter number to check whether prime or not:"); | |
scanf("%d",&num); | |
for(i=2;i<num;i++) | |
{ |
NewerOlder