-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
117 lines (98 loc) · 4.88 KB
/
index.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
title: Home
---
<!DOCTYPE html>
<html lang="en">
<head>
{% include head.html %}
</head>
<body>
<div class="d-flex toggled" id="wrapper">
{% include sidebar.html %}
<!-- Page Content -->
<div id="page-content-wrapper" class="home-image">
<nav class="navbar sticky-top navbar-expand-lg home-nav-bg border-bottom">
<button class="btn btn-brand" id="menu-toggle">
<i class="fas fa-bars"></i>
</button>
<a href="#" class="navbar-brand mb-0 h1 text-center mx-auto"></a>
</nav>
<div class="container">
<article class="page home-page">
<h1 class="page-title" id="page-title">{{ site.title }}</h1>
<div class="page-content">
<p><span class="firstcharacter">C</span>omputer networks have become an indispensable part of
our daily lives.
Our devices are constantly using the Internet for communication and data retrieval. It is
essential to
understand the principles of networking that make this possible. In this course, we will
cover the
principles of computer networks, including the design and implementation of the Internet,
its protocols and
applications. The following topics will be covered:</p>
<div class="row home-cards">
<div class="col text-center">
<div class="card home-card">
<div class="home-icon cloud-icon"></div>
<div class="card-body">
<p class="card-text">Internet networking stack</p>
</div>
</div>
</div>
<div class="col text-center">
<div class="card home-card">
<div class="home-icon socket-icon"></div>
<div class="card-body">
<p class="card-text">Network programming using sockets</p>
</div>
</div>
</div>
<div class="col text-center">
<div class="card home-card">
<div class="home-icon concurrency-icon"></div>
<div class="card-body">
<p class="card-text">Concurrent programming</p>
</div>
</div>
</div>
<div class="w-100 card-seperator"></div>
<div class="col text-center">
<div class="card home-card">
<div class="home-icon nodes-icon"></div>
<div class="card-body">
<p class="card-text">Reliability, congestion control, and routing</p>
</div>
</div>
</div>
<div class="col text-center">
<div class="card home-card">
<div class="home-icon wireless-icon"></div>
<div class="card-body">
<p class="card-text">Selected topics on network security and wireless networking
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="text-center">
<!-- <img src="https://via.placeholder.com/750x600.png?text=Some+cool+and+inspiring+image"> -->
</div>
</div>
</div>
</div>
</article>
<div class="thanks">
<p>Special thanks to <a href="https://www.linkedin.com/in/lauren-hurst-1a41821a3/"
target="_blank">Lauren Hurst</a> for all of the graphics and icons!</p>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
{% include scripts.html %}
</body>
</html>