-
Notifications
You must be signed in to change notification settings - Fork 1
/
purchase.html
89 lines (62 loc) · 2.76 KB
/
purchase.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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" lang="en" xml:lang="en">
<head>
<title>Secrets of the Rockstar Programmers by Ed Burns</title>
<link rel="stylesheet" type="text/css" href="rockstar.css"/>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="rockstarie.css" />
<![endif]-->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-92196982-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>Buy the Book</h1>
</div><!--header-->
<div id="navigation">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="blog">Blog</a></li>
<li><a href="author.html">The Author</a></li>
<li><a href="theshow.html">The Show</a></li>
<li><a href="interviews.html">The Rock Stars</a></li>
<li><a href="calendar.html">Calendar</a></li>
<li><a href="press.html">Press</a></li>
<li><a href="purchase.html">Buy the Book</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="otherContent.html">Other Content by Ed Burns</a></li>
</ul>
</div><!--navigation-->
<div id="main">
<h2>Buy the Book</h2>
<p>Preferred Seller: <a href="http://www.ebay.com/itm/-/152529035459">Ebay.com</a> (Signed by the author on request)</p>
<ul>
<li><a href="https://www.amazon.com/Secrets-Rock-Star-Programmers-Riding/dp/0071490833/ref=sr_1_1?ie=UTF8&qid=1504712727&sr=8-1&keywords=secrets+of+the+rock+star+programmers">Buy from Amazon</a></li>
<li><a href="http://www.powells.com/book/secrets-of-the-rockstar-programmers-9780071490832/62-1">Buy from Powell's</a></li>
<li><a href="http://search.barnesandnoble.com/Secrets-of-the-Rockstar-Programmers/Ed-Burns/e/9780071490832/?itm=1&afsrc=1&lkid=J24677306&pubid=K161993&byo=1">Buy from Barnes & Noble</a></li>
</ul>
</div><!--main-->
</div><!--wrapper-->
<div id="footer">
© 2008 - 2017 by Ed Burns | Site design by <a href="http://www.xoxiety.com">Xoxiety.com</a>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3968444-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>
</body>
</html>