diff options
Diffstat (limited to 'wk8/lect/link.html')
-rw-r--r-- | wk8/lect/link.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/wk8/lect/link.html b/wk8/lect/link.html new file mode 100644 index 0000000..ff230d0 --- /dev/null +++ b/wk8/lect/link.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <style> + + #harvard + { + color: red; + } + + #yale + { + color: blue; + } + + a + { + text-decoration: none; + } + + a:hover + { + text-decoration: underline; + } + + </style> + <title>list</title> + </head> + <body> + Visit <a href="https://www.harvard.edu/" id="harvard">Harvard</a> + or <a href="https://www.yale.edu/" id="yale">Yale</a> + </body> +</html> |