Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Online AngularJS Editor

<!doctype html>
<html ng-app>
  <head>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-route.js"></script>
    <style>
        .header{
            width:800px;
            height : 80px;
            text-align:center;
            background-color:gray;
        }
        .footer{
            text-align:center;
            background-color:gray;
        }
        .leftMenu{
            background-color:gray;
            width:150px;
            height:500px;
        }
        .mainContent{
            height:500px;
            width:650px;
            background-color:gray;
        }
        a{
            display:block;
            padding:5px;
        }
    </style>
  </head>
  <body>
   
      <table border="1">
          <tr>
              <td colspan="2" class="header">
                Header
              </td>
          </tr>
          <tr>
              <td class="leftMenu">
                <a href="#/home">Home</a>
                <a href="#/cources">Cources</a>
                <a href="#/students">Students</a>
              </td>
              <td class="mainContent">
                  Main Content
              </td>
          </tr>
      </table>
    
  </body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.