Skip to content

Instantly share code, notes, and snippets.

View poonamsaroj's full-sized avatar
🎯
Focusing

Poonam Saroj poonamsaroj

🎯
Focusing
View GitHub Profile
@poonamsaroj
poonamsaroj / media-query.css
Created February 13, 2019 04:59 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@poonamsaroj
poonamsaroj / Excel.php
Created November 9, 2018 11:50 — forked from barryvdh/Excel.php
Simple php-excel class to load an Excel file into an array (using Laravel json/array interface, but you don't have to use that). Don't forget to require https://packagist.org/packages/phpoffice/phpexcel or https://packagist.org/packages/codeplex/phpexcel
<?php
use Illuminate\Support\Contracts\ArrayableInterface;
use Illuminate\Support\Contracts\JsonableInterface;
class Excel implements ArrayableInterface, JsonableInterface{
protected $objPHPExcel;
public function __construct($file){
if($file instanceof \SplFileInfo){
$filename = $file->getRealPath();
@poonamsaroj
poonamsaroj / code-1-angular-js-binding-and-filter.markdown
Created August 11, 2018 13:59
Code 1: angular JS binding and filter
@poonamsaroj
poonamsaroj / index.html
Created August 11, 2018 13:30
Simple word falling JavaScript
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
@poonamsaroj
poonamsaroj / index.html
Last active August 10, 2018 17:45
xJmQyK
<h1>The Great <span id="choosedColor">RGB</span> Game</h1>
<div><span id="message"></span></div>
<div class="container">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
@poonamsaroj
poonamsaroj / index.html
Created August 9, 2018 21:33
Registration Page
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<div class='preloader'><div class='loaded'>&nbsp;</div></div>
<!--Inside of the particle -->
<div class="container">
<div class="row setup-content" id="step-1">
<div class="col-xs-12 col-sm-12 col-lg-8 col-md-8 col-md-offset-2">
<div class="col well">
<form action="" method="POST" id="register">