HTML and CSS Reference
In-Depth Information
APPENDIX C
Chapter 14 - Final Code
Listing C-1 specifies the final code for the project in Chapter 14 . This is available from the downloaded source in
the Index.cshtml file. I'm including it here in case you want to see it without downloading the code.
Listing C-1. Chapter 14 Final Code
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Chapter 14 - Checkers</title>
<style type="text/css" >
.board
{
width: 400px;
height: 400px;
}
.bblack
{
background-color: #b93030;
border-color: #b93030;
border-width: 1px;
border-style: solid;
width: 48px;
height: 48px;
float: left;
margin: 0px;
padding: 0px;
}
.bwhite
{
background-color: #f7f7f7;
border-color: #b93030;
border-width: 1px;
border-style: solid;
 
Search WWH ::




Custom Search