Skip to main content

responsive web designing tutorial 2016

latest responsive web design tutorial 2016,  responsive web design template free download responsive web designing tutorial, responsive web design tutorial step by step,responsive web design tutorial for beginners,responsive web design tutorial PDF,responsive web design tutorial 2016,responsive web design tutorial 2015,latest responsive web design tutorial 2016, responsive web design tutorial with examples,responsive web design template free download, latest responsive web design template free download,responsive web design template download 2016, how to create a responsive website,how to do responsive web design ,responsive web layouts, what does responsive web design mean,responsive design layouts,how to make responsive website, responsive web design using media queries,responsive design examples, responsive site design, responsive web design tutorial,responsive web design gallery, responsive website, responsive sites,responsive website examples,responsive website showcase,








 












In this post i am going to explain responsive web design tutorial step by step. i have designed responsive template using html5 and css3 specially using media queries . responsive template designed by me is available for free download  you can use is for personal use of for commercial for downloading free responsive template you can click on link 

Responsive web designing template free download
Responsive web designing template free download






free responsive template download which is below .

 








 you can also download tutorial in PDF format just find responsive web design tutorial PDF Download free










in this post i have created responsive web layouts having two column which is completely design by using html5 tags similarly in next post i am going to design same template using responsive template of three column layout using html5 which is also free for downloading  , what does responsive web design mean

examples of responsive website in this tutorial are designed for best understanding of media queries .

 Before starting tutorial of responsive web designing you must know following things.

Why we use responsive web-designing ?

what is  need of responsive web development?

which technology used to make website responsive? 

let's find the answer of this questions 


Why we use responsive web-designing ? what its need ?

Few years back we were using only laptop or computer to access internet or websites. at that time websites were designed by considering that devices only . 

form 2010  onward things are change currently we are using devices like mobile Phone, Tab, Laptop ,  PC, and various multimedia devices . this devices has different screen size , different height and width . If you don't use responsive layout for your website then your website will work only on certain devices and if you want to work your website each and every device  you must design number of index file equal to number of devices . 








So, what?  it is not easy task . 

better way is , learn responsive web designing .

let us learn web design tutorial step by step

first we understand

what does responsive web design mean,responsive design layouts,


"Responsive Design" is the strategy of making a site that "responds" to the browser and device that it is being shown on






  •  Phones and Handhelds

  • Tablets

  • Laptops

  • Wearables

 A major component of responsive design is creating the right experience for the right device

How to make responsive website 

  • Media Queries  

    Adding Meta tag in head section
    <meta name="viewport" content="width=divice-width, initial-scale=1.0">

    you can also use some ready made frameworks like  

    • Foundation 

    • Bootstrap

 In this tutorial i am going to use Media queries CSS3 Techniques 


Media queries : 

Awesome new part of CSS3

are used to control behavior of CSS Style on the basis of Device which is accessing that webpage 

Basic Syntax and example execute this example in leftest browser just

 copy paste code save it as demo.html

<!DOCTYPE html>
<html>
   <head>
<style>
body {
background: blue;
}
@media screen and (min-width:501px) {
body {
background: gray;
}
}
</style>
</head>
<body> 
</body> 
</html> 

Output in Browser is Follow

latest responsive web design tutorial 2016,

Step by Step tutorial is follow 

Step1 

Follwing is HTML 5 code Copy Paste save it as using index.html 

<!DOCTYPE html>
<html>

   <head>
       <link rel="stylesheet" type="text/css" href="resstyle.css">
    <link rel="stylesheet" type="text/css" href="resmedia.css">
      <meta name="viewport" content="width=divice-width, initial-scale=1.0">
   </head>

<body>

   <div id="content">
       <header>
           <img src="logo.png">             
                 IMS
       </header>
                  <nav>
                 <ul>
                   <li>Home </li>
                   <li> About US</li>
                   <li> Gallary  </li>
                   <li> Contact Us</li>
                  </ul>

               </nav>

               <section id="column-left">
<h1>  IMS - It’s background</h1>

<figure>
  <img src="ims.jpg" alt="The Pulpit Rock" width="304" height="228">
  <figcaption>IMSCDR Ahmednagar </figcaption>
</figure>
    <p>
The Bhaskar Pandurang Hivale Education (B.P.H.E.S.) Society has three Institutions under its umbrella : Ahmednagar College, Institute of Social Work & Research (ISWR) and Institute of Management Studies, Career Development & Research (IMSCD&R). Ahmednagar College, a pioneering Institute of its kind was established in 1947 by late Rev. Dr. B. P. Hivale. It was further natured by Dr. Thomas Barnabas who took the college to magnificent heights. Dr. Thomas Barnabas was followed by Rev. Prof. J. Barnabas. Rev. Prof. J. Barnabas was a dedicated educationalist, who played a key role in the filed of education in Ahmednagar. In 2005, he was conferred with 'Jeevan Sadhana Gaurav Puraskar' by the University of Pune. As Secretary of B.P.H.E. Society, he was instrumental in setting up IMSCD&R in the year 1990. Currently, Mrs. Meera P. Barnabas, the secretary of the society, is furthering this momentum of growth.
   </p>

      </section>
     <section id="column-right">
      <h3> NEWS BOX </h3>
      <marquee direction="up" scrollamount="3" width="100%" height="450px">
      MCA DEPARTMENT ACTIVITIES <br> <hr>

      MBA DEPARTMENT ACTIVITIES <br><hr>

   PLACEMENT DEPARTMENT ACTIVITIES <br><hr>
      </marquee>
      </section>
    <div style="clear:both;"> </div>
    <footer>
      &copy;imscdr.in

    </footer>
         </div>
</body>

</html>

responsive web design tutorial 2016 PDF download

Step2  

Follwing is CSS code Copy Paste save it as using resstyle.css

#content{
   width:960px;
   background:gray;
   margin:0px auto;
   border:1px solid red;
   position:absolute;
   padding:0px;
}
p{
 text-align:justify;  
  }
header{ width:960px;
        background:orange;
        height:auto;
        border:1px solid black;
        text-align:center;
        color:white;
        font-size:36px;
        font-weight:bold;
        text-transform:uppercase;
  }
img{   display:block;
       margin:auto;
       }
nav{    width:960px;
        background:white;
        height:50px;
}
ul{   list-style:none; float:right;   height:50px; }
li {display: inline; background:blue; padding:10px; margin:2px; font-weight:bold; color:white;}
li:hover{ background:red;}








Responsive web designing template free download
figcaption{text-align:center;font-weight:bold;text-transform:uppercase;}
#column-left{
   margin-top:-25px;
   width:700px;
   float:left;
   background:white;
   padding:10px;
 }
#column-right{
   margin-top:-25px;
   width:220px;
   float:left;
   background:orange;
   padding:10px;
   color:blue;
}
footer{
 width:960px;
 background:orange;
 text-align:center;

  }

Step 3  

Follwing is CSS code Copy Paste save it as using resmedia.css.css 

@media screen and (max-width:959px){
header{ width:100%;}
nav{width:100%;}
#content{ width:100%;}
nav{width:100%;}
img{max-width:100%;}
footer{ width:100%;}
}
@media screen and (max-width:640px)
{
#column-left{width:100%;}
#column-right{width:100%;}
nav{width:96%;}
footer{ width:100%;}
}
@media screen and (max-width:360px)
{
 #content{ width:320px;}
 ul{display:block; width:100%;}
li{width:320px; display:block;}
footer{ width:100%;}
nav{width:320px; height:200px;}
}



Responsive web designing template free download
Responsive web designing template free download







Responsive web designing template free download






responsive website template free download


responsive web design tutorial pdf Download



latest responsive web design tutorial 2016,  responsive web design template free download responsive web designing tutorial, responsive web design tutorial step by step,responsive web design tutorial for beginners,responsive web design tutorial PDF,responsive web design tutorial 2016,responsive web design tutorial 2015,latest responsive web design tutorial 2016, responsive web design tutorial with examples,








responsive web design template free download, latest responsive web design template free download,responsive web design template download 2016, how to create a responsive website,how to do responsive web design ,responsive web layouts, what does responsive web design mean,responsive design layouts,how to make responsive website, responsive web design using media queries,responsive design examples, responsive site design, responsive web design tutorial,responsive web design gallery, responsive website, responsive sites,responsive website examples,responsive website showcase,

 


Popular posts from this blog

Design Marathi website Using HTML CSS

          Design Marathi website Using HTML CSS,मराठी वेबसाईट designing HTML ,step by step Marathi website, how to display Marathi content in your website, Design Marathi website step by step , Marathi website using HTML and CSS, How To Design website using different Languages  Design Marathi website Using HTML CSS, Design Marathi website Using PHP, Design Marathi website Using JSP, Design Marathi website Using ASP, Design Marathi website Using C# Dot Net, Design Marathi website Using Vb Dot Net, मराठी वेबसाईट मराठी वेबसाईट बनवन अगदी सोप आहे मी या ब्लॉग मध्ये दिलेल्या स्टेप्स वापरून तुम्ही काही क्षणात मराठी वेब पेज तयार करू शकता  Design Marathi website Using HTML CSS,मराठी वेबसाईट designing HTML ,step by step Marathi website, how to display Marathi content in your website, Design Marathi website step by step , Marathi website using HTML and CSS, How To Design website using different Languages    Design Marathi website U

Create HTML CSS javascript News Box , HTML CSS News Slider Download

Create HTML CSS javascript News Box , HTML CSS News Slider Download, HTML News Box For Your Website Free Download, java script news box For your Website, HTML CSS News Box Tutorial, HTML CSS News Box Example With Source code, HTML CSS Link Slider, HTML Slider Menu ,java script news box For your Website, HTML News box source Code example, News Slider   Here Is Example Of News Box slider for Your Website you can use it wiht PHP, ASP, ASP.NET, JSP,HTML 1.HTML Code  Save this code as index.HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title itemprop="name"></TITLE> <meta name="description" itemprop="description" content=""/> <META NAME="Keywords" CONTENT=""/>  <meta name=&quo

rowspan and colspan in html table

html table rowspan colspan tutoral, rowspan and colspan in html table, html table , html table video tutorial , html table with colspan and rowspan  html table rowspan colspan tutoral, rowspan and colspan in html table, html table , html table video tutorial , html table with colspan and rowspan  saving details Month Savings Savings for holiday! January $100 $50 February $80 click here to download html table colspan rowspan tutorial