How to create menu in HTML and PHP


                                       


Create Menu through HTML Code :

OPEN Notepad and Save : Menu.html

<!DOCTYPE html>

<html>

<head>

<title>Create Menu</title>

<style>

#menu

{

list-style-type: none;

background:green;

width:1290px;

font-size: 25px;

padding-right: 10px;

padding-top: 10px;

text-align: center;

}


#menu li

{

display:inline;

}


#menu a

{

text-decoration: none;

color:white;

margin: 20px;

text-align: center;

}

</style>

</head>

<body>

<ul id="menu">

<li><a href="home.php">HOME</a></li>

<li><a href="about.php">ABOUT</a></li>

<li><a href="blog.php">BLOG</a></li>

<li><a href="portfolio.php">PORTFOLIO</a></li>

<li><a href="">CONTACTS</a></li>

<li><a href=""></a></li>

</ul>

</body>

</html>

Comments