Skip to content

Instantly share code, notes, and snippets.

View emtiaz51921's full-sized avatar
🏠
Working from home

Ahmad Imtiaz Shamim emtiaz51921

🏠
Working from home
View GitHub Profile
@emtiaz51921
emtiaz51921 / master-javascript-interview.md
Created September 21, 2021 14:01 — forked from Geoff-Ford/master-javascript-interview.md
Eric Elliott's Master the JavaScript Interview Series
@emtiaz51921
emtiaz51921 / css-media-queries.html
Created June 27, 2021 16:48 — forked from jkyoutsey/css-media-queries.html
CSS Media Queries Demo
<html>
<!--
Phone Tablet Desktop
Variable em px Query Port Land Port Land
------------------------------------------------------------------------------------------------------------------
By default you should not write any media query at all. So, the first X X | X X | X
CSS definitions in your CSS file will apply to all devices unless you | |
have additional media queries defined afterward. | |
------------------------------------------------------------------------------------------------------------------
$sm-min-width 35.5em 568px min-width: 35.5em X | X X | X
@emtiaz51921
emtiaz51921 / 1. main.css
Created June 27, 2021 16:46 — forked from EmranAhmed/1. main.css
CSS Responsive breakpoint, Media Query break point
/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
@emtiaz51921
emtiaz51921 / form.html
Created June 26, 2021 09:20 — forked from tommaitland/form.html
A form with every HTML form element (up to HTML5) for styling.
<form action="/">
<legend>A Sample Form Legend</legend>
<label for="name">Name: </label>
<input type="text" value="Name" name="Name" />
<label for="email">Email: </label>
<input type="email" value="Email" name="Email" />
@emtiaz51921
emtiaz51921 / .htaccess
Created October 20, 2017 18:48 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/