charlesbaptista_html

Source for my website; charlesbaptista.com
Log | Files | Refs

commit a7dcae34eb464949d271df88fbeb7126cee59d38
parent a79ef7a426a9f218650127272c6ea84d04dca2dd
Author: Charles Baptista <charles@charlesbaptista.com>
Date:   Sun, 26 Jul 2020 07:30:29 -0400

Added article menu to home

Diffstat:
Mindex.html | 8++++++++
Mstyle.css | 4++++
2 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/index.html b/index.html @@ -36,6 +36,14 @@ <br>I've previously worked at <a href="http://www.cytonome.com/">Cytonome</a>, <a href="http://www.sharkninja.com/">SharkNinja</a> & <a href="http://www.ydreams.com/">YDreams Robotics</a>. <br>I graduated from <a href="https://wit.edu/">Wentworth Institute of Technology</a> with a BSME in 2018. </p> <p>You can email me at <a href=mailto:charles@charlesbaptista.com>charles@charlesbaptista.com</a>.</p> + <div id="article_menu"> + <h3>Articles</h3> + <ul> + <li><strong>09.06.2018</strong> - <a href="./fkik.html">Forward & Inverse Kinematics</a></li> + <li><strong>12.22.2016</strong> - <a href="./rbtree.html">Red Black Trees</a></li> + </ul> + </div> + </div> </body> diff --git a/style.css b/style.css @@ -89,6 +89,10 @@ img { color: #05C; } +#article_menu li { + list-style: none; +} + #hidden { display: none; }