<?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>css menu Archives -</title>
	<atom:link href="https://mitindia.in/tag/css-menu/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/css-menu/</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2023 08:53:16 +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>css menu Archives -</title>
	<link>https://mitindia.in/tag/css-menu/</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>CSS blocks-and-menus</title>
		<link>https://mitindia.in/css-blocks-and-menus/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Wed, 22 Jun 2016 10:37:06 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[css menu]]></category>
		<category><![CDATA[css shapes]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[shivling using css]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=140</guid>

					<description><![CDATA[<p>In this tutorial you&#8217;ll able to create a css [cascading style sheet] blocks for your web site. Below are the some of examples you can refer . Creating beautiful hyperlink buttons with CSS blocks. Example 1. &#60;html&#62; &#60;head&#62; &#60;style&#62; #corner1{ border-radius: 15px 50px 30px 5px; background: skyblue; padding: 20px; width: 100px; height: 25px; } #corner2{ [&#8230;]</p>
<p>The post <a href="https://mitindia.in/css-blocks-and-menus/">CSS blocks-and-menus</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this tutorial you&#8217;ll able to create a css [cascading style sheet] blocks for your web site.<br />
Below are the some of examples you can refer .<br />
Creating beautiful hyperlink buttons with CSS blocks.<br />
Example 1.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt; 
#corner1{
  border-radius: 15px 50px 30px 5px;
   background: skyblue;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}

#corner2{
  border-radius: 15px 50px 30px 5px;
   background: green;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}


#corner3{
  border-radius: 15px 50px 30px 5px;
   background: red;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}

#corner4{
  border-radius: 15px 50px 30px 5px;
   background: cyan;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p id="corner1"&gt; About us &lt;/p&gt;
&lt;p id="corner2"&gt; Contact us &lt;/p&gt;
&lt;p id="corner3"&gt; Login here &lt;/p&gt;
&lt;p id="corner4"&gt; siteMap &lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>output of the above code is:</p>
<div class="separator"><img decoding="async" class="alignnone" src="http://4.bp.blogspot.com/-W0xF7RbIq1Q/VmgfuShcS7I/AAAAAAAAA8I/OR8ja6DJgwc/s400/csshyperlinks_blocks1.JPG" width="166" height="400" border="0" /></div>
<p>Example 2.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt; 
#corner1{
  border-radius: 20px 20px 0px 0px;
   background: khaki;
   padding: 20px; 
   width: 950px;
   height: 25px; 
background-image: url("ubuntu.png");
}

#corner2{
  border-radius: 15px 15px 15px 15px;
   background: skyblue;
   padding: 50px; 
   width: 100px;
   height: 25px; 
}

#corner3{
   border-radius: 15px 15px 15px 15px;
   background: green;
   padding: 50px; 
   width: 100px;
   height: 25px; 
}

#corner4{
  border-radius: 15px 15px 15px 15px;
   background: magenta;
   padding: 50px; 
   width: 100px;
   height: 25px; 
}

#corner5{
  border-radius: 15px 15px 15px 15px;
   background: red;
   padding: 50px; 
   width: 100px;
   height: 55px; 
font-size:22pt;
color:red;
background-image: url("solid.jpg");
background-color: blue;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p id="corner1"&gt;&lt;marquee&gt; Hello world &lt;/marquee&gt; &lt;/p&gt;
&lt;p id="corner2"&gt; Hello world &lt;/p&gt;
&lt;p id="corner3"&gt; Hello world &lt;/p&gt;
&lt;p id="corner4"&gt; Hello world &lt;/p&gt;

&lt;table border=0 cellpadding=2 cellspacing=2&gt; 
&lt;tr bgcolor=khaki&gt;
&lt;th&gt; Course Name&lt;/th&gt; 
&lt;th&gt; Duration &lt;/th&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt; Web  &lt;/td&gt; 
&lt;td&gt; 2 Months &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt; Android App Development &lt;/td&gt; 
&lt;td&gt; 2 Months &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;h2 id="corner5"&gt; Welcome to inline CSS &lt;/h2&gt;
&lt;img src="d:\web-design.jpg" id="corner5"&gt;
&lt;h3 id="corner4"&gt; Welcome &lt;/h3&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>output:</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://2.bp.blogspot.com/-sooRDLUPqTk/VmgghciLuzI/AAAAAAAAA8Y/4atM46vThY0/s400/csshyperlinks_blocks2.JPG" width="275" height="400" border="0" /></div>
<p>Example 3.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt; 
#corner1{
  border-radius: 35px 15px 50px 5px;
   background: khaki;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}

#corner2{
  border-radius: 35px 15px 50px 5px;
   background: skyblue;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}


#corner3{
  border-radius: 35px 15px 50px 5px;
   background: green;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}

#corner4{
  border-radius: 35px 15px 50px 5px;
   background: skyblue;
   padding: 20px; 
   width: 100px;
   height: 25px; 
}

#corner5{
  border-radius: 15px 15px 15px 15px;
   padding: 50px; 
   width: 100px;
   height: 55px; 
font-size:22pt;
color:red;
background-color: yellow;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p id="corner1"&gt;Home &lt;/p&gt;
&lt;p id="corner2"&gt; About us &lt;/p&gt;
&lt;p id="corner3"&gt; Login here &lt;/p&gt;
&lt;p id="corner4"&gt; Contact us &lt;/p&gt;

&lt;table border=0 cellpadding=2 cellspacing=2&gt; 
&lt;tr bgcolor=khaki&gt;
&lt;th&gt; Course Name&lt;/th&gt; 
&lt;th&gt; Duration &lt;/th&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt; Web  &lt;/td&gt; 
&lt;td&gt; 2 Months &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt; Android App Development &lt;/td&gt; 
&lt;td&gt; 2 Months &lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;h2 id="corner5"&gt; Welcome to inline CSS &lt;/h2&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Output:</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://3.bp.blogspot.com/-Xw-VaXkphUY/VmghMs_VwaI/AAAAAAAAA8g/bVJ4SExsu7k/s400/csshyperlinks_blocks3.JPG" width="230" height="400" border="0" /></div>
<p>Example 4.</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
div.img {
    margin: 5px;
    padding: 5px;
    border: 1px solid #ff0000;
    height: auto;
    width: auto;
    float: left;
    text-align: center;
}   

div.img img {
    display: inline;
    margin: 5px;
    border: 1px solid #ffffff;
}

div.img a:hover img {
    border: 1px solid #0000ff;
}

div.desc {
  text-align: center;
  font-weight: normal;
  width: 120px;
  margin: 5px;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt; CSS Blocks &lt;/h1&gt;
&lt;div class="img"&gt;
 &lt;a target="f3" href="wp2.html"&gt;&lt;img src="ubuntu.png" width="110" height="90"&gt;&lt;/a&gt;
 &lt;div class="desc"&gt;Ubuntu, a description of the image here&lt;/div&gt;
&lt;/div&gt;

&lt;div class="img"&gt;
 &lt;a target="f3" href="wp3.html"&gt;&lt;img src="solid.jpg" alt="Solid" width="110" height="90"&gt;&lt;/a&gt;
 &lt;div class="desc"&gt;Solid, a description of the image here&lt;/div&gt;
&lt;/div&gt;

&lt;div class="img"&gt;
 &lt;a target="f3" href="wp4.html"&gt;&lt;img src="java-logo.jpg" alt="java" width="110" height="90"&gt;&lt;/a&gt;
 &lt;div class="desc"&gt;Java,  a description of the image here&lt;/div&gt;
&lt;/div&gt;

&lt;div class="img"&gt;
 &lt;a target="f3" href="wp5.html"&gt;&lt;img src="web-design.jpg" alt="web" width="110" height="90"&gt;&lt;/a&gt;
 &lt;div class="desc"&gt;web, a description of the image here&lt;/div&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>output:</p>
<p><img loading="lazy" decoding="async" class="alignnone" src="http://1.bp.blogspot.com/-vAhfVrPvcBg/VmghwuqJFrI/AAAAAAAAA8o/g18_xq48inU/s640/csshyperlinks_blocks4.JPG" width="640" height="339" border="0" /></p>
<p>Example 5. Table with CSS properties.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
table, td, th {
    border: 5px solid blue;
color:black;
}

th {
    background-color: blue;
    color: white;
}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;table&gt;
  &lt;tr&gt;
    &lt;th&gt;Firstname&lt;/th&gt;
    &lt;th&gt;Lastname&lt;/th&gt;
    &lt;th&gt;Address&lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Ramu&lt;/td&gt;
    &lt;td&gt;Gopi&lt;/td&gt;
    &lt;td&gt;Mumbai&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Suman&lt;/td&gt;
    &lt;td&gt;Rastogi&lt;/td&gt;
    &lt;td&gt;Indore&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;Kevin&lt;/td&gt;
    &lt;td&gt;Saman&lt;/td&gt;
    &lt;td&gt;Delhi&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>output:</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="http://3.bp.blogspot.com/--w_E4K3u3zI/VmgiZa8ASYI/AAAAAAAAA80/VgsFG8KiTC0/s400/csshyperlinks_blocks5.JPG" width="400" height="226" border="0" /></div>
<div>Example 6 (create shivling using css blocks!)</div>
<div>
<pre class="EnlighterJSRAW" data-enlighter-language="css">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
h1{color:blue;font-family: tahoma; font-size:18pt; background-image:linear-gradient(to bottom, orange,skyblue,white); width:250px; height:30px; border-radius:0px 30px 0px 30px; text-shadow:black 2px 2px;}

#br{background-color:black; width:50px; height:150px; border-radius:30px; padding: 10px; color: white;}
#vs{background-color:black; width:250px; height:30px; border-radius:30px;}
#sh{background-color:black; width:250px; height:30px; border-radius:30px; }

body{background-image:linear-gradient(to bottom, skyblue, white); background-repeat: no-repeat;}

&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;center&gt;
&lt;h1&gt;Om Namaha Shivay &lt;/h1&gt;
&lt;p id="br"&gt;=== &lt;/p&gt;
&lt;p id="vs"&gt; &lt;/p&gt;
&lt;p id="sh"&gt; &lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>and the Output is as following!</p>
<p><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-1296" src="http://www.mitindia.in/wp-content/uploads/2016/06/shivlings-300x287.png" alt="" width="300" height="287" srcset="https://mitindia.in/wp-content/uploads/2016/06/shivlings-300x287.png 300w, https://mitindia.in/wp-content/uploads/2016/06/shivlings.png 570w" sizes="(max-width: 300px) 100vw, 300px" /></p>
</div>
<p>&nbsp;</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fcss-blocks-and-menus%2F&amp;linkname=CSS%20blocks-and-menus" 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%2Fcss-blocks-and-menus%2F&amp;linkname=CSS%20blocks-and-menus" 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%2Fcss-blocks-and-menus%2F&#038;title=CSS%20blocks-and-menus" data-a2a-url="https://mitindia.in/css-blocks-and-menus/" data-a2a-title="CSS blocks-and-menus"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/css-blocks-and-menus/">CSS blocks-and-menus</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
