-
Notifications
You must be signed in to change notification settings - Fork 101
/
index.php
71 lines (66 loc) · 3.14 KB
/
index.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
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
<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>Introduction to Networking: How the Internet Works</h1>
<p class="lead">This site is being built
as a source of Open Educational Resources to support my
<a target="_new" href="https://amzn.to/34F1Y0z">textbook</a>
on TCP/IP network technologies.
I am also exploring a new approach to building remixable
OER materials.
You can see the course code for the book in my
<a href="https://github.com/csev/net-intro/commits/master" target="_blank">GitHub repository</a>.
Feel free to submit a pull request if you find something
that needs fixing. Thanks in advance.</p>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="col-lg-4">
<p>There is a cool textbook with
sketchnote images by Mauro Toselli. Electronic copies are free with a CC-BY
license and the print copy is CC-BY-NC.</p>
<p><a class="btn btn-primary" href="http://do1.dr-chuck.net/net-intro/EN_us/net-intro.pdf" target="_blank">PDF »</a>
<a class="btn btn-primary" href="http://do1.dr-chuck.net/net-intro/EN_us/net-intro.epub" target="_blank">EPUB »</a>
<a class="btn btn-primary" href="https://audio.net-intro.com" target="_blank">Audio »</a>
<a class="btn btn-primary" style="margin-top:2px;" href="book/translations/Spanish/2021-06-12-book.pdf" target="_blank">Spanish »</a>
<a class="btn btn-primary" style="margin-top:2px;" href="book/translations/Greek/2021-06-28-book.pdf" target="_blank">Greek »</a>
<a class="btn btn-primary" style="margin-top:2px;" href="book/translations/Russian/2021-07-11-book.pdf" target="_blank">Russian »</a>
<a class="btn btn-primary" href="book.php" target="_blank">Paper Books »</a>
</p>
</div>
<div class="col-lg-4">
<h2>Slides</h2>
<p>The slides for the book will be produced using
<a href="http://lab.hakim.se/reveal-js/#/" target="_blank">Reveal.JS</a>
and
<a href="http://csev.github.io/dazzleSketch/" target="_blank">DazzleSketch</a>.
For a fun time, Press CTRL-1 and hold down your mouse
to scribble on the slides.</p>
<p><a class="btn btn-primary" href="slides/index.php" role="button">View Sample Slides »</a>
</p>
</div>
<div class="col-lg-4">
<h2>Quizzes</h2>
<p>Each chapter has end-of-chapter questions. Those questions
are available as quizzes that can be taken online.
</p>
<p><a class="btn btn-primary" href="quiz/" role="button">Take a Quiz »</a></p>
</div>
</div>
<footer class="footer">
<center>
<p>If you find this material interesting you might be interested in
taking my related course,
"<a href="https://www.coursera.org/learn/insidetheinternet"
target="_blank">Internet History, Technology, and Security</a>" available on
Coursera.</p>
</center>
</footer>
<?php require_once('javascript.php'); ?>
</body>