<!DOCTYPE html> <html lang=“en”> <head>

<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RubyChess</title>

<link rel="stylesheet" href="styles/main.css" />

</head> <body>

<div id="nav-container">
    <nav>
        <a id="logo" href="https://github.com/lukaserekson/RubyChess">
            <img src="images/RubyChessLogo.png" style="width:3.5rem; height:3.5rem;" alt="Ruby Chess" />
            <h2>Ruby Chess</h2>
        </a>
        <!-- <a href="#intro">Intro</a>
        <a href="#gameplay">Gameplay</a> -->
        <a href="./docs/doc_index.html">Documentation</a>
    </nav>
</div>

<div class="container">
    <main>
        <h1 id="intro">Ruby Chess by Lukas Erekson</h1>

        <p>Welcome to my website about my Odin Project Ruby Basics capstone project, RubyChess. RubyChess is a terminal implementation of the game of Chess written in Ruby. All code, including over 100 test cases, is an original creation of me, Lukas Erekson.</p>

        <p>This capstone project reflects all that I have learned as part of The Odin Project's course as well as some additional material and gems that I wanted to use, including generating documentation with <code>RDoc</code> and testing code coverage with <code>SimpleCov</code>.</p>
        <hr />
    </main>
</div>

</body> </html>