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 link...