-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
executable file
·57 lines (44 loc) · 1.27 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Truman Chess</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css-hw2.css" title="default style">
<style type="text/css"></style>
</head>
<body id="aboutPage">
<div id="wrapper">
<div id="wrapperHeader">
<div id="header">
<img src="images/header.jpg" alt="logo">
</div>
</div>
<div id="masthead">
<div id="navContainer">
<div id="navigation">
<ul>
<li id="homePageLink"><a href="index.html">Home</a></li>
<li id="playPageLink"><a href="play.php">Play</a></li>
<li id="learnPageLink"><a href="learn.html">Learn</a></li>
<li id="matchesPageLink"><a href="matches.php">Game database</a></li>
<li id="aboutPageLink"><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div id="content">
<h2>About</h2>
<h3>Truman Chess</h3>
<p>
Truman Chess is made for any one who is interested in learning and playing chess at Truman.
</p>
<p>About the web:</p>
<ul>
<li>Web designer: Thanh Le</li>
<li>Truman State University</li>
<li>Email: dtl1325@truman.edu</li>
</ul>
</div>
</div>
</body>
</html>