diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-11-27 15:56:10 -0600 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-11-27 15:56:10 -0600 |
commit | dcb4e28e36ba25bdc4be12581e962f57cad1672c (patch) | |
tree | b5b4d2bbe8c8d12161bacf1afe12f31b90ce5623 | |
parent | eaf6cea63b30127f418798afaba834aaba33874d (diff) |
Added links section
-rw-r--r-- | app.css | 12 | ||||
-rw-r--r-- | index.html | 11 |
2 files changed, 19 insertions, 4 deletions
@@ -1,7 +1,15 @@ +body { + background-color: black; +} + h1 { color : magenta; } -body { - background-color: black; +h2 { + color : cyan; +} + +p { + color: white; }
\ No newline at end of file @@ -7,9 +7,16 @@ </head> <h1>Nick Chopper</h1> +<p> + I do not know what this website will be long term. I am just developing this for experience and portential exposure to recruiters. +</p> -<button onClick="alertButton()">Click Me</button> - +<h2>Links</h2> +<p> + chess.com <a href="https://www.chess.com/member/tinwoodman92">chess.com/member/tinwoodman92</a> +<br> + GitHub <a href="https://github.com/TinWoodman92">github.com/TinWoodman92</a> +</p> </body> <script src="app.js"></script> </html>
\ No newline at end of file |