Skip to content

Instantly share code, notes, and snippets.

View shubhramk's full-sized avatar
💭
Any app that can b written n JavaScript,will eventually b written in JavaScript.

shubhramk

💭
Any app that can b written n JavaScript,will eventually b written in JavaScript.
View GitHub Profile
@shubhramk
shubhramk / meta-tags.md
Created January 9, 2021 17:27 — forked from whitingx/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 charset='UTF-8'>
<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'>
@shubhramk
shubhramk / grid.scss
Created September 27, 2018 10:42 — forked from steveh80/grid.scss
Bootstrap viewport detection in Javascript
// needed for viewport size detection in javascript
body::before {
display: none;
content: "xs";
}
@media (min-width: $screen-sm-min) {
body::before {
content: "sm";
}