Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<style type="text/css">
body li.home a {
color:#333333;
background-color:#FF9933;
}
</style>
<body>
<ul id="nav">
<li class="home"><a href="#">Home</a></li>
<li class="Work"><a href="#">Work</a></li>
</ul>
</body>
I forgot #id in CSS style.
<body id="home">
<h1>Home Page</h1>
<ul>
<li class="home"><a href="/">Home</a></li>
<li class="about"><a href="about.htm">About</a></li>
</ul>
</body>
<body id="about">
<h1>About Us</h1>
<ul>
<li class="home"><a href="/">Home</a></li>
<li class="about"><a href="about.htm">About</a></li>
</ul>
</body>
#home .home,
#about .about {
color: red;
}