Skip to main content

HTML5 Semantics | Fresco Play | Hands On 2 | Navigation

 Question:
Question is given in the below snip :

.........................................................................................................................................
Answer :
Answer is given in the below snip :






.........................................................................................................................................

Code of index.html file is given below:

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

</body>
</html>

.........................................................................................................................................

Comments