<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web design and development Archives -</title>
	<atom:link href="https://mitindia.in/tag/web-design-and-development/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/web-design-and-development/</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2017 11:20:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>web design and development Archives -</title>
	<link>https://mitindia.in/tag/web-design-and-development/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Sliding menu in html css</title>
		<link>https://mitindia.in/sliding-menu-html-css/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Mon, 23 Jan 2017 10:41:58 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[css menu]]></category>
		<category><![CDATA[css slide menu]]></category>
		<category><![CDATA[html slide menu]]></category>
		<category><![CDATA[slidermenu]]></category>
		<category><![CDATA[web design and development]]></category>
		<category><![CDATA[web development]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=735</guid>

					<description><![CDATA[<p>Slider menu in html page using css To create a slider navigation menu in html by using CSS syntax. Copy the following program and paste in Notepad then save as .html file extension and view in browser. &#60;html&#62; &#60;style&#62; body { font-family: "Tahoma", sans-serif; } .sidemenu { height: 100%; width: 0; position: fixed; top: 0; [&#8230;]</p>
<p>The post <a href="https://mitindia.in/sliding-menu-html-css/">Sliding menu in html css</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><span style="color: #000080;">Slider menu in html page using css</span></h3>
<hr />
<p><strong>To create a slider navigation menu in html by using CSS syntax.</strong></p>
<p><em>Copy the following program and paste in Notepad then save as .html file extension and view in browser.</em></p>
<pre>&lt;html&gt;
&lt;style&gt;
body 
{
 font-family: "Tahoma", sans-serif;
}

.sidemenu {
 height: 100%;
 width: 0;
 position: fixed;
 top: 0;
 right: 0;
 background-color: #222;
 overflow-x: hidden;
 transition: 1s;
 padding-top: 50px;
}

.sidemenu a {
 padding: 9px 9px 9px 42px;
 text-decoration: none;
 font-size: 25px;
 color: #818181;
 display: block;
 transition: 0.3s
}

.sidemenu a:hover, .offcanvas a:focus{
 color: #f1f1f1;
}

.sidemenu .closebtn {
 position: absolute;
 top: 0;
 right: 25px;
 font-size: 36px;
 margin-left: 50px;
}
&lt;/style&gt;
&lt;body&gt;

&lt;div id="mySidenav" class="sidemenu"&gt;
 &lt;a href="javascript:void(0)" class="closebtn" 
onclick="closeNav()"&gt;&amp;times;&lt;/a&gt;
 &lt;a href="#"&gt;Web design&lt;/a&gt;
 &lt;a href="#"&gt;Digital Marketing&lt;/a&gt;
 &lt;a href="#"&gt;Mobile App&lt;/a&gt;
 &lt;a href="#"&gt;Contact&lt;/a&gt;
&lt;img src="d:\web-design.jpg" height=100 width=100&gt;
&lt;img src="d:\bing.jpg" height=100 width=100&gt;
&lt;img src="d:\ubuntu.png" height=100 width=100&gt;
&lt;img src="d:\java-logo.jpg" height=100 width=100&gt;
&lt;/div&gt;
&lt;div align=right&gt;
&lt;h2 align=right&gt;Animated SideMenu Demo&lt;/h2&gt;
&lt;span style="font-size:30px;cursor:pointer" 
onclick="openNav()"&gt;&amp;#9776; Menu&lt;/span&gt;
&lt;script&gt;
function openNav() {
 document.getElementById("mySidenav").style.width = 
"300px";
}

function closeNav() {
 document.getElementById("mySidenav").style.width = 
"0";
}

&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<h4><span style="color: #ff0000;"><strong>Output </strong></span></h4>
<p><strong>Before opening Menu</strong></p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-medium wp-image-736" src="http://www.mitindia.in/wp-content/uploads/2017/01/menu_before_open-300x238.png" alt="" width="300" height="238" srcset="https://mitindia.in/wp-content/uploads/2017/01/menu_before_open-300x238.png 300w, https://mitindia.in/wp-content/uploads/2017/01/menu_before_open-221x175.png 221w, https://mitindia.in/wp-content/uploads/2017/01/menu_before_open.png 386w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p><strong>After opening Menu</strong></p>
<p><img decoding="async" class="alignnone size-medium wp-image-737" src="http://www.mitindia.in/wp-content/uploads/2017/01/menu_after_open-256x300.png" alt="" width="256" height="300" srcset="https://mitindia.in/wp-content/uploads/2017/01/menu_after_open-256x300.png 256w, https://mitindia.in/wp-content/uploads/2017/01/menu_after_open-149x175.png 149w, https://mitindia.in/wp-content/uploads/2017/01/menu_after_open.png 397w" sizes="(max-width: 256px) 100vw, 256px" /></p>
 <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- mylink -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1696390399604457"
     data-ad-slot="7690934410"
     data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<p style="text-align: right;"><strong><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.mitindia.in/2017/01/18/navigation-bar-header-logo-using-css/" target="_blank">Navigation bar with header logo</a></span></strong></p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fsliding-menu-html-css%2F&amp;linkname=Sliding%20menu%20in%20html%20css" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fsliding-menu-html-css%2F&amp;linkname=Sliding%20menu%20in%20html%20css" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fsliding-menu-html-css%2F&#038;title=Sliding%20menu%20in%20html%20css" data-a2a-url="https://mitindia.in/sliding-menu-html-css/" data-a2a-title="Sliding menu in html css"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/sliding-menu-html-css/">Sliding menu in html css</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>fixed background image using css</title>
		<link>https://mitindia.in/fixed-background-image-using-css/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Sat, 21 Jan 2017 12:19:54 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[fixed background image]]></category>
		<category><![CDATA[web design and development]]></category>
		<category><![CDATA[web development]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=728</guid>

					<description><![CDATA[<p>Fixed background image in HTML page using CSS To fix the background image static at center, means no scrolling image! The following CSS page must be created. Have a look. h1 { background-color: green; } div { background-image: url("d:\solid.jpg"); } p { background-color: yellow; } BODY { background-image:url("d:\java-logo.jpg"); background-repeat: no-repeat; background-position: center; background-attachment: fixed; } [&#8230;]</p>
<p>The post <a href="https://mitindia.in/fixed-background-image-using-css/">fixed background image using css</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><span style="color: #000080;">Fixed background image in HTML page using CSS</span></h3>
<hr />
<p><strong>To fix the background image static at center, means no scrolling image! <span style="color: #ff0000;">The following CSS page must be created. Have a look.</span></strong></p>
<pre>h1 {
 background-color: green;
}

div {
 background-image: url("d:\solid.jpg");
}

p {
 background-color: yellow;
}

BODY
{
background-image:url("d:\java-logo.jpg");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}

table
{
background-color:cyan;
}

td, th
{
padding:15px;
}

tr:hover 
{
background-color: yellow
}

tr:nth-child(even)
{
background-color: grey
}</pre>
<p><span style="color: #ff0000;"><strong>And Now create HTML page with following syntax in it.</strong></span></p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;link rel="stylesheet" type="text/css" href="ss.css"&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;h1&gt; Welcome to CSS &lt;/h1&gt;
&lt;p&gt; Welcome to CSS - paragraph text here... &lt;/p&gt;
&lt;hr&gt;

&lt;table border=2&gt;
&lt;tr&gt; &lt;td&gt; SrNo &lt;/td&gt;
&lt;td&gt; Course Name &lt;/td&gt;
&lt;td&gt; Type &lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; &lt;td&gt; 1 &lt;/td&gt;
&lt;td&gt; Digital Marketing &lt;/td&gt;
&lt;td&gt; IT and Mgt &lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; &lt;td&gt; 2 &lt;/td&gt;
&lt;td&gt; Data Analytics &lt;/td&gt;
&lt;td&gt; IT &lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; &lt;td&gt; 3 &lt;/td&gt;
&lt;td&gt; Six Sigma Green Belt &lt;/td&gt;
&lt;td&gt; Mgt &lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;hr&gt;

&lt;div&gt;
&lt;h2&gt; Text with background fixed image &lt;/h2&gt;
&lt;h3&gt; Text with background fixed image &lt;/h3&gt;
&lt;h4&gt; Text with background fixed image &lt;/h4&gt;
&lt;h5&gt; Text with background fixed image &lt;/h5&gt;
&lt;/div&gt;

&lt;/body&gt;&lt;/html&gt;</pre>
<p>&nbsp;</p>
<p><strong><span style="color: #ff0000;">Output of the above program is..</span></strong></p>
<p><img decoding="async" class="alignnone size-medium wp-image-729" src="http://www.mitindia.in/wp-content/uploads/2017/01/fixed_background_image-300x170.png" alt="fixed background image in css" width="300" height="170" srcset="https://mitindia.in/wp-content/uploads/2017/01/fixed_background_image-300x170.png 300w, https://mitindia.in/wp-content/uploads/2017/01/fixed_background_image-308x175.png 308w, https://mitindia.in/wp-content/uploads/2017/01/fixed_background_image.png 729w" sizes="(max-width: 300px) 100vw, 300px" /></p>
 <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- mylink -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1696390399604457"
     data-ad-slot="7690934410"
     data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<p><a href="http://www.mitindia.in/2017/01/18/navigation-bar-header-logo-using-css/" target="_blank">Also check here for fixed header(logo) and menu bar using css</a></p>
<p>&nbsp;</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Ffixed-background-image-using-css%2F&amp;linkname=fixed%20background%20image%20using%20css" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Ffixed-background-image-using-css%2F&amp;linkname=fixed%20background%20image%20using%20css" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Ffixed-background-image-using-css%2F&#038;title=fixed%20background%20image%20using%20css" data-a2a-url="https://mitindia.in/fixed-background-image-using-css/" data-a2a-title="fixed background image using css"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/fixed-background-image-using-css/">fixed background image using css</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Navigation bar with header logo using css</title>
		<link>https://mitindia.in/navigation-bar-header-logo-using-css/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Wed, 18 Jan 2017 08:06:11 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[header logo with navigation buttons in html]]></category>
		<category><![CDATA[web design and development]]></category>
		<category><![CDATA[web development]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=722</guid>

					<description><![CDATA[<p>Navigation bar with header logo or text demo using css / html Below CSS and HTML program shows the use of Header Logo along with Navigation or Menu bar in the same line or alignment. &#60;html&#62; &#60;head&#62; &#60;style&#62; .menu{ background-color: red; color: white; padding: 18px; font-size: 18px; border: none; } .submenu { position: relative; display: [&#8230;]</p>
<p>The post <a href="https://mitindia.in/navigation-bar-header-logo-using-css/">Navigation bar with header logo using css</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Navigation bar with header logo or text demo using css / html</h2>
<hr />
<p>Below CSS and HTML program shows the use of Header Logo along with Navigation or Menu bar in the same line or alignment.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
.menu{
 background-color: red;
 color: white;
 padding: 18px;
 font-size: 18px;
 border: none;
}

.submenu {
 position: relative;
 display: inline-block;
}

.submenu-content {
 display: none;
 position: absolute;
 background-color: #f9f9f9;
 min-width: 120px;
}

.submenu-content a {
 color: black;
 padding: 12px 16px;
 text-decoration: none;
 display: block;
}

.submenu-content a:hover {background-color: gray}

.submenu:hover .submenu-content {
 display: block;
}

.submenu:hover .menu {
 background-color: orange;
}

.menu:hover{background-color: orange;}

nav{
display:inline;
float:right;
}

nav ul{
 list-style:none;
}

nav ul li{
 display:inline-block;
}

#logo-small{
display: inline;
font-weight:0;
font-size: 40pt;
font-family: 'Dosis' ,sans-serif;
}

&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;h2&gt;Navigation bar with Header&lt;/h2&gt;
&lt;header&gt;
&lt;h1 id="logo-small"&gt;&lt;img src="logo.png"&gt; &lt;/h1&gt;

&lt;nav&gt;
 &lt;button class="menu"&gt;Home&lt;/button&gt;
 &lt;button class="menu"&gt;Service&lt;/button&gt;
&lt;div class="submenu"&gt;
 &lt;button class="menu"&gt;Product&lt;/button&gt;
 &lt;div class="submenu-content"&gt;
 &lt;a href="#"&gt;Product 1&lt;/a&gt;
 &lt;a href="#"&gt;Product 2&lt;/a&gt;
 &lt;a href="#"&gt;Product 3&lt;/a&gt;
 &lt;/div&gt;
&lt;/div&gt;
&lt;button class="menu"&gt;Contact&lt;/button&gt;

&lt;/nav&gt;
&lt;/header&gt;
&lt;/body&gt;
&lt;/html&gt;


Output as following</pre>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-723" src="http://www.mitindia.in/wp-content/uploads/2017/01/navigationbar_header-300x76.png" alt="Navigation and Header menu " width="482" height="122" srcset="https://mitindia.in/wp-content/uploads/2017/01/navigationbar_header-300x76.png 300w, https://mitindia.in/wp-content/uploads/2017/01/navigationbar_header-400x101.png 400w, https://mitindia.in/wp-content/uploads/2017/01/navigationbar_header.png 651w" sizes="(max-width: 482px) 100vw, 482px" /></p>
 <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- mylink -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1696390399604457"
     data-ad-slot="7690934410"
     data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fnavigation-bar-header-logo-using-css%2F&amp;linkname=Navigation%20bar%20with%20header%20logo%20using%20css" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fnavigation-bar-header-logo-using-css%2F&amp;linkname=Navigation%20bar%20with%20header%20logo%20using%20css" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fnavigation-bar-header-logo-using-css%2F&#038;title=Navigation%20bar%20with%20header%20logo%20using%20css" data-a2a-url="https://mitindia.in/navigation-bar-header-logo-using-css/" data-a2a-title="Navigation bar with header logo using css"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/navigation-bar-header-logo-using-css/">Navigation bar with header logo using css</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress site security</title>
		<link>https://mitindia.in/wordpress-site-security/</link>
					<comments>https://mitindia.in/wordpress-site-security/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 28 Jul 2016 05:43:09 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[prevent from hackers]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[site security]]></category>
		<category><![CDATA[web design and development]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=394</guid>

					<description><![CDATA[<p>How to prevent your WordPress site / blog from hackers? Now a days it become very common that websites are hacked by hackers / attackers with or without any reasons but how to prevent from such dangerous people? As a blogger, lot of patience is required to write post on their blogging site with using [&#8230;]</p>
<p>The post <a href="https://mitindia.in/wordpress-site-security/">WordPress site security</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><span style="color: #800080;">How to prevent your WordPress site / blog from hackers?</span></h3>
<p>Now a days it become very common that websites are hacked by hackers / attackers with or without any reasons but how to prevent from such dangerous people?</p>
<p>As a blogger, lot of patience is required to write post on their blogging site with using utmost skills in writing and arranging information in legible manner but what happens if somebody hacks your site? Of course it huge frustration and lot of anger. But having said that the world is having good people also to prevent such attacks and they are real programmer or real software engineer who works for the betterment of the society they live in and not like hackers, who always hide their face from society just like thieves.</p>
<h4><span style="color: #339966;">Now coming to real fact,</span></h4>
<p>To prevent your site from hackers or attackers you need to implement 2 step-authentication systems provided by <strong>Google Authenticator</strong> (an app on android / apple store) this app can be downloaded freely on your smart phone.</p>
<p><img loading="lazy" decoding="async" class="size-medium wp-image-395 alignnone" src="http://www.mitindia.in/wp-content/uploads/2016/07/Google-auth-300x211.jpg" alt="Google authentication " width="300" height="211" srcset="https://mitindia.in/wp-content/uploads/2016/07/Google-auth-300x211.jpg 300w, https://mitindia.in/wp-content/uploads/2016/07/Google-auth.jpg 463w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>Once the app is downloaded to your smart phone and do some basic settings like “Account name” and “Your key” and also select a random code to generate frequently based on “Time based” or “Counter based”. [you can also scan the QR code generated after clicking on &#8220;Create New Secret key&#8221;]</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-396" src="http://www.mitindia.in/wp-content/uploads/2016/07/smartphone-key.jpg" alt="smartphone-key" width="197" height="291" /></p>
<p>After this step on your smart phone, now login to your WordPress site and download a plug-in called “Google Authenticator” as look like in the following screen shot.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-397" src="http://www.mitindia.in/wp-content/uploads/2016/07/plugin-300x143.jpg" alt="plugin" width="300" height="143" srcset="https://mitindia.in/wp-content/uploads/2016/07/plugin-300x143.jpg 300w, https://mitindia.in/wp-content/uploads/2016/07/plugin.jpg 362w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>After successful download, activate it. And go to “Users” then ”Your Profile” on wordpress dashboard and do the basic settings on Google Authenticator tab as following.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-398" src="http://www.mitindia.in/wp-content/uploads/2016/07/settings-300x190.jpg" alt="settings" width="300" height="190" srcset="https://mitindia.in/wp-content/uploads/2016/07/settings-300x190.jpg 300w, https://mitindia.in/wp-content/uploads/2016/07/settings.jpg 602w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p><strong>Now click on update.</strong></p>
<p>That’s all, when you login next time to your wordpress blog / site you’ll be prompted with 2step-verification (i.e. one is your user name and password and second is security key provided by your app on smart phone)</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-399" src="http://www.mitindia.in/wp-content/uploads/2016/07/wp-login-190x300.jpg" alt="wp-login" width="190" height="300" srcset="https://mitindia.in/wp-content/uploads/2016/07/wp-login-190x300.jpg 190w, https://mitindia.in/wp-content/uploads/2016/07/wp-login.jpg 218w" sizes="(max-width: 190px) 100vw, 190px" /></p>
<p>Now your site is protected with 2step verification so there is almost no chance of hacking your site by hackers because they require user name / password and your smart phone to generate the random key!</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fwordpress-site-security%2F&amp;linkname=WordPress%20site%20security" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fwordpress-site-security%2F&amp;linkname=WordPress%20site%20security" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fwordpress-site-security%2F&#038;title=WordPress%20site%20security" data-a2a-url="https://mitindia.in/wordpress-site-security/" data-a2a-title="WordPress site security"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/wordpress-site-security/">WordPress site security</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/wordpress-site-security/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress on Local server</title>
		<link>https://mitindia.in/wordpress-on-local-server/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Wed, 22 Jun 2016 10:07:37 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[how to install wordpress on local computer]]></category>
		<category><![CDATA[web design and development]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress on local pc]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=127</guid>

					<description><![CDATA[<p>How to run / create a blog/website using WordPress on local pc/laptop?. Brief About WordPress:  It is a CMS(Content Management System), The most powerful open source plat-form for creating blogs and professional websites with over 34% of entire web share out of over 1 billion websites world wide. Over 48,000 plug-ins to use and enhance your [&#8230;]</p>
<p>The post <a href="https://mitindia.in/wordpress-on-local-server/">WordPress on Local server</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to run / create a blog/website using WordPress on local pc/laptop?.</p>
<p>Brief About WordPress:  It is a CMS(Content Management System), The most powerful open source plat-form for creating blogs and professional websites with over 34% of entire web share out of over 1 billion websites world wide. Over 48,000 plug-ins to use and enhance your WordPress site features and stunning themes to look and feel.</p>
<p>In this tutorials you&#8217;ll able to install, create and design website/blog using wordpress on local pc/laptop.</p>
<p>Step1:<br />
Install WAMP (server) on your windows PC/Laptop.<br />
<a href="http://www.mitindia.in/p/install-wamp-and-run-php-program.html">Here is an tutorial to install wamp</a></p>
<p>&nbsp;</p>
 <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- mylink -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1696390399604457"
     data-ad-slot="7690934410"
     data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<p>Step2:<br />
After installing, open browser and type : http://localhost</p>
<p>Step3: You&#8217;ll see following screen shot with WAMP Home page.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://2.bp.blogspot.com/-kbqfjNKRZh8/VdcqUtU5LJI/AAAAAAAAAnI/YQ2kQ1JMWeg/s640/wamp_home.PNG" width="640" height="488" border="0" /></div>
<p>Step4: Click on &#8220;phpmyadmin&#8221; as per above image and create a database on mysql as following screen image.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://2.bp.blogspot.com/-ne_g8NNGtvw/VpTpmz_3qFI/AAAAAAAABEo/RVfz6tE-Ick/s640/mysql.JPG" width="640" height="480" border="0" /></div>
<p>After successfully creating the database &#8220;mywpsite&#8221;, now go for next step.</p>
<p>Step5: Now download the wordpress software from <a href="https://wordpress.org/">here</a> or<br />
you can also refer below image for that.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://2.bp.blogspot.com/-I4XrqmMpcW4/VpTqlv27Y6I/AAAAAAAABEw/toNIrRAw4Hw/s640/wpsite.JPG" width="640" height="112" border="0" /></div>
<p>Step 6: Unzip the folder and place that folder in C:\wamp\www location. [it looks like c:\wamp\www\mywpsite]</p>
<p>Step 7: Now open above site in the browser by typing : http://localhost/mywpsite (refer following image)</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://2.bp.blogspot.com/-Be76KMxs1VU/VpTsVhFEMrI/AAAAAAAABE8/GXO7dtHJL38/s400/wpconf.JPG" width="400" height="286" border="0" /></div>
<p>Step 8: Click on &#8220;Continue&#8221; then Click on Letsgo&#8221; button</p>
<p><img loading="lazy" decoding="async" class="alignnone" src="http://4.bp.blogspot.com/-UNn2Q1V9hbQ/VpTss0PoFRI/AAAAAAAABFE/MXIy6Q0UkE0/s640/letsgo.JPG" width="640" height="417" border="0" /><br />
Step 9: Put here database name (which was just created), user name (commonly &#8220;root&#8221;), password (commonly blank) and local host, leave this as it is.[follow below screen image]</p>
<p><img loading="lazy" decoding="async" class="alignnone" src="http://3.bp.blogspot.com/-OItGCLvHC3E/VpTtVoVI6rI/AAAAAAAABFM/3gxdIWIl6Hc/s640/dbname.JPG" width="640" height="402" border="0" /><br />
Step 10: Click on &#8220;Submit&#8221; button then you&#8217;ll see following screen image.<br />
<img loading="lazy" decoding="async" class="alignnone" src="http://4.bp.blogspot.com/-budsOolSlCY/VpTt2FQwhAI/AAAAAAAABFU/LnwhGwvfU7c/s640/run_install.JPG" width="640" height="218" border="0" /></p>
<p>Step 11: Click on &#8220;Run the Install&#8221; then you&#8217;ll be redirected  to following page.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://1.bp.blogspot.com/-Kdr7hmCERb8/VpTwA-MzPvI/AAAAAAAABFk/ZeH20OWr-yQ/s400/install.JPG" width="400" height="313" border="0" /></div>
<p>Step 12: provide all user details with email id as per above image. And Click on &#8220;Install WordPress&#8221; button.</p>
<p>Finally you&#8217;ll see following success page.</p>
<p><img loading="lazy" decoding="async" class="alignnone" src="http://1.bp.blogspot.com/-hnX-fm9_lOI/VpTwjnXhznI/AAAAAAAABFs/31cXtqZAXK0/s640/wp_success.JPG" width="640" height="354" border="0" /><br />
Now login with user name and password to create your local wordpress sites.</p>
<p>Thank you for reading!.</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fwordpress-on-local-server%2F&amp;linkname=WordPress%20on%20Local%20server" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fwordpress-on-local-server%2F&amp;linkname=WordPress%20on%20Local%20server" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fwordpress-on-local-server%2F&#038;title=WordPress%20on%20Local%20server" data-a2a-url="https://mitindia.in/wordpress-on-local-server/" data-a2a-title="WordPress on Local server"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/wordpress-on-local-server/">WordPress on Local server</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
