<?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>offline bootstrap Archives -</title>
	<atom:link href="https://mitindia.in/tag/offline-bootstrap/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/offline-bootstrap/</link>
	<description></description>
	<lastBuildDate>Thu, 16 Mar 2017 10:35:03 +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>offline bootstrap Archives -</title>
	<link>https://mitindia.in/tag/offline-bootstrap/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Bootstrap on local or offline</title>
		<link>https://mitindia.in/bootstrap-local-offline/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Fri, 10 Mar 2017 11:29:52 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[offline bootstrap]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=767</guid>

					<description><![CDATA[<p>Using bootstrap on local PC In the previous post you&#8217;ve learnt how to create NavBar in bootstrap. In this post you&#8217;ll be able to run bootstrap on local or offline PC / Laptop first you need to download the supporting files for bootstrap from here. After downloading from above link, extract the zipped folder and use [&#8230;]</p>
<p>The post <a href="https://mitindia.in/bootstrap-local-offline/">Bootstrap on local or offline</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2><span style="color: #993300;">Using bootstrap on local PC</span></h2>
<hr />
<p><strong>In the previous post you&#8217;ve learnt how to create <span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.mitindia.in/2017/03/07/bootstrap-navigation-bar/" target="_blank">NavBar</a></span> in bootstrap.</strong></p>
<p><strong>In this post you&#8217;ll be able to run bootstrap on local or offline PC / Laptop first you need to download the supporting files for bootstrap from <a href="http://getbootstrap.com/getting-started/#download" target="_blank">here</a>.</strong></p>
<p><strong>After downloading from above link, extract the zipped folder and use as following.</strong></p>
<ol>
<li><strong>inside the &lt;head&gt; tag</strong>
<pre>&lt;link rel="stylesheet" href="bootstrap-3.3.7/dist/css/bootstrap.min.css"&gt;

&lt;link rel="stylesheet" href="bootstrap-3.3.7/dist/css/bootstrap-theme.css"&gt;</pre>
</li>
<li><strong>inside the &lt;body&gt; tag</strong>
<pre>&lt;script src="bootstrap-3.3.7/dist/js/bootstrap.min.js"&gt;&lt;/script&gt;</pre>
</li>
</ol>
 <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>Complete program is as following with Column, Block quote, Buttons and jumbotron tags.</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
&lt;meta charset="utf-8"&gt;
 &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;

&lt;link rel="stylesheet" href="bootstrap-3.3.7/dist/css/bootstrap.min.css"&gt;

&lt;link rel="stylesheet" href="bootstrap-3.3.7/dist/css/bootstrap-theme.css"&gt;

&lt;/head&gt;
&lt;body&gt;
&lt;script src="bootstrap-3.3.7/dist/js/bootstrap.min.js"&gt;&lt;/script&gt;

&lt;h1&gt; BootStrap Locally! &lt;small&gt; with secondary text &lt;/small&gt;&lt;/h1&gt;
&lt;hr&gt;

&lt;div class="container"&gt;
&lt;div class="jumbotron"&gt;&lt;h1&gt; Om Gajanana Prasanna&lt;/h1&gt; &lt;p&gt;by mitindia &lt;/p&gt; 
&lt;code&gt; web &lt;/code&gt;
&lt;/div&gt;
&lt;/div&gt;

&lt;button type="button" class="btn btn-default"&gt;Ganesh &lt;/button&gt;
&lt;button type="button" class="btn btn-primary"&gt;Ganesh &lt;/button&gt;
&lt;button type="button" class="btn btn-success"&gt;Ganesh &lt;/button&gt;
&lt;button type="button" class="btn btn-warning"&gt;Ganesh &lt;/button&gt;


 &lt;div class="row"&gt;
 &lt;div class="col-xs-9 col-md-7" style="background-color:khaki;"&gt;Big Column&lt;/div&gt;
 &lt;div class="col-xs-3 col-md-5" style="background-color:magenta;"&gt;Another column&lt;/div&gt;
 &lt;/div&gt;

&lt;div class="row"&gt;
 &lt;div class="col-xs-6 col-md-10" style="background-color:teal;"&gt;Very Big Column!&lt;/div&gt;
 &lt;div class="col-xs-6 col-md-2" style="background-color:lightgrey;"&gt;Small column&lt;/div&gt;
 &lt;/div&gt;
 &lt;div class="row" style="background-color:khaki;"&gt;
 &lt;div class="col-xs-6"&gt;&lt;img src="yeshodhanand.jpg"&gt;Bootstrap cloumns&lt;/div&gt;
 &lt;div class="col-xs-6"&gt;&lt;img src="yeshodhanand.jpg"&gt;with perfect aligment!&lt;/div&gt;
 &lt;/div&gt;
&lt;/div&gt;

&lt;h2&gt; &lt;mark&gt;Block&lt;/mark&gt;quote &lt;/h2&gt;
&lt;blockquote&gt;&lt;p&gt;Cleanliness is next to Godliness &lt;/p&gt;
&lt;footer&gt; by sk-mitindia &lt;/footer&gt;
&lt;/blockquote&gt;

&lt;p class="text-primary"&gt; This is text foreground &lt;/p&gt;
&lt;p class="bg-primary"&gt; This is text background &lt;/p&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
 <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- mylink2 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:180px;height:90px"
     data-ad-client="ca-pub-1696390399604457"
     data-ad-slot="4033422011"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<p><strong> See the output as following</strong></p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-768" src="http://www.mitindia.in/wp-content/uploads/2017/03/bs-locally-300x193.png" alt="bootstrap offline" width="466" height="300" srcset="https://mitindia.in/wp-content/uploads/2017/03/bs-locally-300x193.png 300w, https://mitindia.in/wp-content/uploads/2017/03/bs-locally-768x495.png 768w, https://mitindia.in/wp-content/uploads/2017/03/bs-locally-272x175.png 272w, https://mitindia.in/wp-content/uploads/2017/03/bs-locally.png 908w" sizes="(max-width: 466px) 100vw, 466px" /></p>
<p>&nbsp;</p>
<h3 style="text-align: right;"><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.mitindia.in/2017/03/06/what-is-bootstrap/" target="_blank">What is Bootstrap?</a></span></h3>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fbootstrap-local-offline%2F&amp;linkname=Bootstrap%20on%20local%20or%20offline" 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%2Fbootstrap-local-offline%2F&amp;linkname=Bootstrap%20on%20local%20or%20offline" 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%2Fbootstrap-local-offline%2F&#038;title=Bootstrap%20on%20local%20or%20offline" data-a2a-url="https://mitindia.in/bootstrap-local-offline/" data-a2a-title="Bootstrap on local or offline"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/bootstrap-local-offline/">Bootstrap on local or offline</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
