-
Notifications
You must be signed in to change notification settings - Fork 101
/
book.php
39 lines (37 loc) · 1.27 KB
/
book.php
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
<html>
<head>
<title>Introduction to Networking: How the Internet Works</title>
<?php require_once('head.php'); ?>
</head>
<body>
<div class="container">
<!-- Jumbotron -->
<div class="jumbotron">
<h1>Print Books</h1>
<p class="lead">While the electronic copies of the book are free and available to all, you might also be interested
in a print copy of one of the translations of the book.
</p>
</div>
<div class="row">
<div class="col-lg-4">
<ul>
<li><a href="https://amzn.to/34F1Y0z" target="_blank">English</a></li>
<li>
<a href="https://amzn.to/3hKoFYo" target="_blank">Spanish translation</a>
by
<a href="https://twitter.com/fertardio">Fernando Tardio</a> and available from Amazon.
</li>
<li>
<a href="https://anikoula.gr/en/%CE%B2%CE%B9%CE%B2%CE%BB%CE%AF%CE%BF/eisagwgh-sta-diktya/" target="_blank">Greek translation</a>
by
<a href="https://twitter.com/KonstantiaQ">Konstantia Kiourtidou</a> and avaliable from
Anikoula books shipped from Thessaloniki, Greece.
</li>
<li><a href="https://dmkpress.com/catalog/computer/web/978-5-97060-959-0/" target="_blank">Russian translation</a>
avilable from DMK Press in Russia.</li>
</ul>
<p>Back to <a href="index.php">Introduction to Networking</a>.</p>
</div>
</div>
<?php require_once('javascript.php'); ?>
</body>