Edit in JSFiddle

:target{ background: #f3f3f3; border: 1px solid #CCC; padding: 0 10px 10px 10px;}
<a href="#aboutUs">About us</a> <br />
<a href="#services">Services</a> <br />
<a href="#contactUs">Contact us</a> <br /><br />
<h1>Welcome</h1>
HTML is great for declaring static documents, but it falters when we try to use it for declaring dynamic views in web-applications. AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop.
<div id="aboutUs">
    <h2>About US</h2>
Other frameworks deal with HTML’s shortcomings by either abstracting away HTML, CSS, and/or JavaScript or by providing an imperative way for manipulating the DOM. Neither of these address the root problem that HTML was not designed for dynamic views.
</div>
<div id="services">
    <h2>Services</h2>
    AngularJS is a toolset for building the framework most suited to your application development. It is fully extensible and works well with other libraries. Every feature can be modified or replaced to suit your unique development workflow and feature needs. Read on to find out how.
</div>
<div id="contactUs">
    <h2>Contact Us</h2>
    Data-binding is an automatic way of updating the view whenever the model changes, as well as updating the model whenever the view changes. This is awesome because it eliminates DOM manipulation from the list of things you have to worry about.
</div>