Skip to main content

Posts

Showing posts with the label Links

Links

Links | HTML: Links are useful to move to other web pages or particular position in same page. Links :   1. links   2. color links   3. link bookmarks. Here is the links.html:   <!DOCTYPE html>   <html lang="en" dir="ltr">     <head>        <style>         a:link {           color : green;         }         a: visited {           color : orange;         }         a:hover {           color : pink;         }         a:active {           color : yellow;         }       </style>       <title>Links in Html</title>     </head>     <body>       <!-- color links       by stylesheet.css       a link, a visited a hover and a active.-->       <!-- bookmarks links with id -->       <p><a href="#A1">go to Absolute URL</a></p>       <hr>       <!-- Relative URLs -->       <h1>Here is the Relative URL, which is in local folder.</h1>       <a href="ima