Skip to content

Instantly share code, notes, and snippets.

@coderrb
coderrb / Wallpaper.json
Last active May 23, 2018 10:00
This is an Collection of Various Wallpapers
[
{
"name": "Naruto: Shippuuden",
"description": "It has been two and a half years since Naruto Uzumaki left Konohagakure, the Hidden Leaf Village, for intense training following events which fueled his desire to be stronger. Now Akatsuki, the mysterious organization of elite rogue ninja, is closing in on their grand plan which may threaten the safety of the entire shinobi world.",
"Rating": "8.16",
"episode": 500,
"categorie":"Animation | Drama | Adventure",
"studio":"Studio Pierrot",
"img": "https://firebasestorage.googleapis.com/v0/b/wallpaper-76cba.appspot.com/o/ryan-walton-367436-unsplash_1_26.jpg?alt=media&token=2a5c3656-232f-4f83-af4a-1d4aa0307de3"
},
@coderrb
coderrb / doc
Created February 7, 2018 14:41
<DOCTYPE html>
#include <stdio.h>
int main()
{
int number;
// printf() dislpays the formatted output
printf("Enter an integer: ");
// scanf() reads the formatted input and stores them
scanf("%d", &number);
// Hello World By Rb
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
<html>
<head>
<title> DIV Tag Example </title>
</head>
<body>
<p> This is Paragraph 1 <p>
<div style="color:#0000FF">
<h3> This is A Heading </h3>
<p> This Is Paragraph 2 </p>
</div>
<html>
<head>
<title> Paragraph Example </title>
</head>
<body>
<p> This is paragraph One </p>
<p> This is paragraph two </p>
<p> This is paragraph three </p>
</body>
</html>
<html>
<head>
<title> heading example </title>
<body>
<h1> heading 1 </h1>
<h2> heading 2 </h2>
<h3> heading 3 </h3>
<h4> heading 4 </h4>
<h5> heading 5 </h5>
<h6> heading 6 </h6>
@coderrb
coderrb / helloworld.html
Created January 21, 2018 10:28
hello world in html
<!DOCTYPE html>
<html>
<head>
<title> Hello World Example </title>
</head>
<body>
Hello World
</body>