Skip to content

Instantly share code, notes, and snippets.

View nishithbuilders's full-sized avatar

Nishith Desai nishithbuilders

View GitHub Profile
@nishithbuilders
nishithbuilders / meta-tags.md
Created February 17, 2020 02:04 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@nishithbuilders
nishithbuilders / media-query.css
Created October 24, 2019 04:45 — 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
@nishithbuilders
nishithbuilders / DBConnection.php
Created October 29, 2017 13:11 — forked from jonahlyn/DBConnection.php
PDO Connection Class
<?php
/*
* Class DBConnection
* Create a database connection using PDO
* @author [email protected]
*
* Instructions for use:
*
* require_once('settings.config.php'); // Define db configuration arrays here
* require_once('DBConnection.php'); // Include this file