diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-12-14 18:25:30 -0600 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-12-14 18:25:30 -0600 |
commit | cdaf4b1fd9b2213669b0d8bf06207efefedb6f17 (patch) | |
tree | 0d69b0f311c87811bcc01a14775104ac773a36e1 | |
parent | a3ab3646adbb2d0585bf0936d9b88d7645723561 (diff) |
touch ups
-rw-r--r-- | about.html | 4 | ||||
-rw-r--r-- | index.html | 1 | ||||
-rw-r--r-- | projects_blog/NNetwork.html | 2 | ||||
-rw-r--r-- | style.css | 6 |
4 files changed, 9 insertions, 4 deletions
@@ -2,7 +2,6 @@ <html> <head> - <title>chrhodgden - About</title> <link rel="stylesheet" href="style.css"/> </head> @@ -22,8 +21,7 @@ Right now I am teaching myself with YouTube tutorials and taking certifications as I can. </p> - <h2>Links</h2> - <ul> + <ul>Links <li>GitHub <a href="https://github.com/chrhodgden" target="_blank">github.com/chrhodgden</a></li> <li>Email <a href="mailto:chrhodgden@gmail.com">chrhodgden@gmail.com</a></li> <li>Chess.com <a href="https://www.chess.com/member/tinwoodman92" target="_blank">chess.com/member/tinwoodman92</a></li> @@ -5,6 +5,7 @@ <title>chrhodgden - Home</title> <link rel="stylesheet" href="style.css"/> </head> + <body> <h1>Christian Hodgden</h1> diff --git a/projects_blog/NNetwork.html b/projects_blog/NNetwork.html index 747eb85..b26aeb6 100644 --- a/projects_blog/NNetwork.html +++ b/projects_blog/NNetwork.html @@ -7,7 +7,7 @@ <body> <h1>NNetwork</h1> - <h3>A simple neural network in R as an R6 class object</h3> + <p class="header-sub-text">A simple neural network in R as an R6 class object</p> <nav class="nav-footer"> <hr> <a href="#background">Background</a> @@ -53,6 +53,12 @@ p { text-indent: 4em; } +p.header-sub-text { + font-size: 1.25em; + font-weight: bold; + text-indent: 0; +} + hr { border-color: var(--foreground-accent-color); } |