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

what is Blogger

what is Blogger, what is Blogger short info, Blogger hindi information,  Blogger.com एक फ्री Blog Publishing Platform है. जिसकी सहायता से Free Blog बनाकर Texts, Images, Videos आदि आसानी से शेयर की जा सकती है. और दुनिया को अपने लेखन कौशल से अवगत कराया जा सकता है. Blogger की गिनती Content Management Systems में होती है. क्योंकि यह Content को Yearly, Monthly, Weekly, Daily, Catigarically, Labels आदि के द्वारा Manage करता है. और ये सभी Entry पाठकों के लिए उपलब्ध रहती है. Google Blogger Kya Hai in Hindi Blogger पर जो ब्लॉग बनाया जाता है. वह blogspot.com का Sub-Domain होता है. जो Google Server पर Hosted रहता है. Blogger Users गूगल सर्वर को Access नही कर पाते है. लेकिन गूगल अकाउंट से उन्हे Blogger Dashboard पर अनुमति मिल जाती है. इसलिए वे अपना Blog Manage आसानी से कर सकते. Blogspot.com के अलावा Users को Country Specifit Domain Name भी उपलब्ध करवाया जाता है. मिसाल के तौर पर एक Indian Blogger Users अगर अपना ब्लॉग बनाता है तो वह blogspot.com के स्थान पर blogspot.in का चुनाव कर

how to add a youtube video to your website html

embed youtube video in html without iframe,html embed youtube video,how to insert a video in html from computer,iframe video autoplay in html,embed video html,youtube embed code generator,youtube refused to connect html,how to insert mp4 video in html, Use following steps 1. Create basic html page 2. Login to your Google account 3. Visit  www.youtube.com 4. Search video you want to add in your website 5. Select video  6. Click on share button at bottom  you can see share option   7. Click on embed as shown  8. Copy code and paste in html page save and run html page  embed youtube video in html without iframe,html embed youtube video,how to insert a video in html from computer,iframe video autoplay in html,embed video html,youtube embed code generator,youtube refused to connect html,how to insert mp4 video in html,