1.yourElement {
2 /* offset-x | offset-y | blur-radius | spread-radius | color */
3 -webkit-box-shadow: -2px -1px 15px 7px rgba(0,0,0,0.5);
4 -moz-box-shadow: -3px -2px 30px 14px rgba(0,0,0,0.425);
5 box-shadow: -4px -3px 45px 21px rgba(0,0,0,0.35);
6}
1/******************************************************************************
2
3Welcome to GDB Online.
4GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
5C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
6Code, Compile, Run and Debug online from anywhere in world.
7
8*******************************************************************************/
9#include <stdio.h>
10
11int main()
12{
13 float x;
14 x = 10.35;
15 printf("%f",x);
16
17 return 0;
18}
19
20
1//offset 2px right and down with a 5px defusion of gray
2h1 {
3 text-shadow: 2px 2px 5px gray;
4}
1
2
3#include <stdio.h>
4
5int main()
6{
7 printf("Hello!!! \a \n");
8
9 return 0;
10}
11
12
1/******************************************************************************
2
3Welcome to GDB Online.
4GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
5C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
6Code, Compile, Run and Debug online from anywhere in world.
7
8*******************************************************************************/
9#include <stdio.h>
10
11int main()
12{
13int x;
14x = -15;
15printf ("x is= %i\n",n);
16
17 return 0;
18}
19