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.



No comments:

Post a Comment