1/* Text-Shadow is CSS property that is used to add the shadow to the text, simply
2you can add horizontal and vertical shodow alongwtith the blur and the color of shadow options */
3
4/* It's general syntax would be like*/
5 /* x-offset | y-offset | blur-raduis | color */
6 text-shadow: 2px 2px 0px #808080;
7
8 /* x-offset | y-offset | color */
9 text-shadow: 2px 2px #808080;
10
11 /* x-offset | y-offset(not required) | blur-raduis | color */
12 text-shadow: 2px 0 2px #808080;
13
1/* offset-x | offset-y | blur-radius | color */
2text-shadow: 1px 1px 2px black;
3
4/* color | offset-x | offset-y | blur-radius */
5text-shadow: #fc0 1px 0 10px;
6
7/* offset-x | offset-y | color */
8text-shadow: 5px 5px #558abb;
9
10/* color | offset-x | offset-y */
11text-shadow: white 2px 5px;
12
13/* offset-x | offset-y
14/* Use defaults for color and blur-radius */
15text-shadow: 5px 10px;
16
17/* Global values */
18text-shadow: inherit;
19text-shadow: initial;
20text-shadow: unset;
1background: #354962;
2color: #FFFFFF;
3font-family: 'Paytone One';
4text-shadow: #2A3D4E 1px 1px,#2A3D4E -0px 0px,#2A3D4E -1px 1px,#2A3D4E -2px 2px,#2A3D4E -3px 3px,#2A3D4E -4px 4px,#2A3D4E -5px 5px,#2A3D4E -6px 6px,#2A3D4E -7px 7px,#2A3D4E -8px 8px,#2A3D4E -9px 9px;
5/* just copy this */
1/******************************************************************************
2
3 Online C Compiler.
4 Code, Compile, Run and Debug C program online.
5Write your code in this editor and press "Run" button to compile and execute it.
6
7*******************************************************************************/
8
9#include <stdio.h>
10
11int main()
12{
13int x;
14int y;
15x=10;
16y=x;
17printf("xis = %i\n",x);
18
19 return 0;
20}
21
1/******************************************************************************
2
3Welcome to GDB Online.
4GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
5C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
6Code, Compile, Run and Debug online from anywhere in world.
7
8*******************************************************************************/
9#include <stdio.h>
10
11int main()
12{
13 printf("Hello Worldwear you mask \n\a");
14
15 return 0;
16}
17