Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.html #1034

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions MultiPlayer - Games/AI-Chess/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous">


<!-- Custom CSS -->
<link rel="stylesheet" href="css/main.css">
Expand Down Expand Up @@ -90,7 +91,7 @@ <h2 class="text-align-center">
<select id="search-depth">
<option value="1">1</option>
<option value="2">2</option>
<option value="3" selected>3</option>
<option value="3" selected >3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
Expand All @@ -111,7 +112,7 @@ <h2 class="text-align-center">
<div class="row align-items-center justify-content-center">
<div class="form-group">
<input type="checkbox" id="showHint" name="showHint" value="showHint">
<label for="showHint">Show Suggested Move (White)</label>
<label for="showHint"> Show Suggested Move (White) </label>
</div>
</div>
</div>
Expand Down Expand Up @@ -171,10 +172,10 @@ <h2 class="text-align-center">
<div class="col-md-12">
<h2>Advantage</h2>
<p><span id="advantageColor">Neither side</span> has the advantage
(+<span id="advantageNumber">0</span>).</p>
(<span id="advantageNumber">0</span>).</p>
<div class="progress">
<div class="progress-bar bg-primary progress-bar-striped progress-bar-animated"
role="progressbar" aria-valuenow="0" style="width: 50%"
role="progressbar" aria-valuenow="0" style="width: 50px"
aria-valuemin="-2000" aria-valuemax="4000" id='advantageBar'>
</div>
</div>
Expand All @@ -183,7 +184,7 @@ <h2>Advantage</h2>
<div class="row my-3 text-align-center">
<div class="col-md-12">
<h2>Status</h2>
<p><span id="status">No check, checkmate, or draw.</span></p>
<p><span id="status">No check, checkmate, or draw. </span></p>
</div>
</div>
</div>
Expand All @@ -202,8 +203,8 @@ <h2>Status</h2>
</div>
</main>
<footer>
<p class="text-align-center"> Copyright &copy 2020
<a href="https://github.com/SyedImtiyaz-1">Syed Imtiyaz Ali</a>
<p class="text-align-center"> &copy 2020
<a href="https://github.com/SyedImtiyaz-1">Syed Imtiyaz Ali</a>
</p>
</footer>
</body>
Expand Down