Advertisement
AndrewSD

Untitled

Jan 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Разноцветные ссылки</title>
  6.     <style>
  7.         #firstsite{
  8.             color: red;
  9.         }
  10.         #secondsite{
  11.             color: blue;
  12.         }
  13.         #thirdsite{
  14.             color: yellow;
  15.         }
  16.         p{
  17.             background-color: black;
  18.             font-size: large;
  19.             color: white;
  20.             height: 35px;
  21.             text-indent: 20px;
  22.             padding-top: 15px;
  23.         }
  24.     </style>
  25. </head>
  26. <body>
  27. <p><a id="firstsite" href="https://www.hse.ru/" target="_blank">Ссылка 1</a> |
  28.     <a id="secondsite" href="https://www.hse.ru/" target="_blank">Ссылка 2</a> |
  29.     <a id="thirdsite" href="https://www.hse.ru/" target="_blank">Ссылка 3</a>
  30. </p>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement