-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistLinks.html
27 lines (27 loc) · 1.28 KB
/
listLinks.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Some nice programming books</title>
<style type="text/css">
ul { list-style-type: disc; line-height: 1.5em }
a, a.active, a.visited {
text-decoration: none;
color:#1827A2;
outline-style: dashed;
outline-width: thin;
outline-color: chocolate;
}
</style>
</head>
<body>
<h1>Some nice programming books</h1>
<ul>
<li><a href="https://www.amazon.com/HTML-XHTML-All-One-Dummies/dp/0470537558">HTML / XHTML / CSS AIO for Dummies</a> A complete resource to web development</li>
<li><a href="https://www.amazon.com/JavaScript-AJAX-Dummies-Andy-Harris/dp/0470417994">JavaScript / AJAX for Dummies</a> Using Javascript, AJAX, and jQuery</li>
<li><a href="https://www.amazon.com/Game-Programming-Line-Express-Learning/dp/0470068221">Game Programming - the L Line</a> Game development in Python</li>
<li><a href="http://www.aharrisbooks.net/flash">Flash Game Programming for Dummies</a> Game development using Flash</li>
</ul>
</body>
</html>