Page 413 - Webapplication11_C11_Flipbook
P. 413

<td>Like it Happened Yesterday</td>
                                             <td>Ravinder Singh</td>

                                             <td>March 8, 2017</td>
                                      </tr>
                                      <tr>
                                             <td>Pride and Prejudice</td>

                                             <td>Jane Austen</td>
                                             <td>January 28, 1813</td>
                                      </tr>
                        </table>
                      </body>

                      </html>
                      Output:



















                   14.  Create a webpage that includes a navigation menu with links to other pages on the site. Include CSS also.

                  Ans.  <html>
                      <head>

                        <title>My Website</title>
                        <style>
                               /* Style the top menu */
                               .nav {

                                      background-color: cyan;
                                      color: #fff;
                                      padding: 10px;
                                      display: flex;
                                      justify-content: space-between;

                                      align-items: center;
                               }


                               a {
                                      color: red;
                                      text-decoration: none;

                                                                                                     Practical Work  411
   408   409   410   411   412   413   414   415   416   417   418