Tuesday, June 27, 2017

HTML Menu

HTML Menu sample program tutorial.


Below code is very simple menu code with css (Cascading Style Sheet)

Code:

<html>
  <head>
    <link rel="stylesheet" href="hyper.css" type="text/css">
  </head>
  <body>
    <a href="a.html">Home</a> | <a href="b.html">Login</a>
  </body>
</html>

Explanation

It will look like this



when clicking on home it will redirect to a.html and when clicking on another menu login it will redirect to b.html.



How to refresh webpage using meta tag to another webpage



Meta Tag Sample Program to refresh webpage and redirect to 
targeted webpage


<! DOCTYPE HTML>
<html>
   <head>
      <title>
         Meta tag 
      </title>
<meta http-equiv="refresh" content="7;url=D:\ASPDoTNet Practical\a.html">
   </head>
   <body>
      hello world
   </body>
</html>


Explanation
Here in this html code meta tag refresh web page in 7 second 
and redirect to a.html page.