Search This Blog

html5-navigation HackerRank Handson Design a navigation menu using html5 semantic tag

 Design a navigation menu using html5 semantic tag <nav>


Steps to do hands-on:

  1. install the required packages by clicking the install button
  2. write the code
  3. run the application and test it

Answer:


<!DOCTYPE html>
<html>
<head>
 
 
  <link href="mystyle.css" rel="stylesheet" type="text/css">
</head>
<body>
    <nav>
      <a href="">Home</a>
      <a href="">Blogs</a>
      <a href="">Videos</a>
      <a href="">About Me</a>
    </nav>


</body>
</html>


Click on the tested image:



No comments:

Post a Comment

If you have any doubts, Please let us know.