Skip to content

Instantly share code, notes, and snippets.

View emirajbbd's full-sized avatar

MD ENAMUL HAQUE emirajbbd

  • Harris Web Works Dhaka Ltd
  • Bangladesh
View GitHub Profile
@emirajbbd
emirajbbd / meta-tags.md
Created December 12, 2018 20:12 — 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'>
@emirajbbd
emirajbbd / tags.html
Created December 12, 2018 20:09 — forked from joshbeckman/tags.html
Meta/link tags necessary to make mobile devices correctly display responsive and mobile-optimized sites.
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-type" /><!-- speak the same language -->
<meta content="width=device-width, initial-scale=1" name="viewport" /><!-- correctly relate screen size to CSS -->
<meta name="HandheldFriendly" content="true" /><!-- BlackBerry, please don't f*** with my page -->
<meta name="apple-mobile-web-app-capable" content="yes"><!-- iPhone save-to-home-screen-able -->
<link rel="icon" href="/images/favicon.png"><!-- bookmarking/favoriting image -->
<meta name="msapplication-TileColor" content="#ffffff"/><!-- Windows 8/Windows phone -->
<meta name="msapplication-TileImage" content="/images/favicon.png"/><!-- Windows 8/Windows phone -->
@emirajbbd
emirajbbd / meta-tags.md
Created December 12, 2018 20:04 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link 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'>
@emirajbbd
emirajbbd / template.css
Created March 24, 2013 19:19
symbiotic
* {
padding:0px;
margin:0px;
}
body {
background:url(../images/bodybg.png) repeat-x center top #115995;
font-size:14px;
font-family:Arial, Helvetica, sans-serif;
}
div{