-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSelectiveRepeat.html
More file actions
66 lines (56 loc) · 2.31 KB
/
SelectiveRepeat.html
File metadata and controls
66 lines (56 loc) · 2.31 KB
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
<!DOCTYPE html>
<html lang="en" style=" background-image: url('./dot-grid.png'); ">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Selective Repeat | Simulation</title>
<meta name="description" content=" Simulation for Selective Repeat Protocols" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<!-- Favicons -->
<link rel="shortcut icon" href="./favicon.png" />
<link rel="apple-touch-icon" href="./favicon.png" />
<link rel="apple-touch-icon" sizes="72x72" href="./favicon.png" />
<link rel="apple-touch-icon" sizes="114x114" href="./favicon.png" />
<link rel="stylesheet" href="./sel.css" />
</head>
<body >
<!-- NAVBAR HERE -->
<nav class="navbar" role="navigation" aria-label="main navigation" style="background-color: #EEEEEE;">
<div class="navbar-brand">
<a class="navbar-item" href="https://nikhilsahu.ml/Sliding-window-simulator/">
<img src="./logo.PNG" width="112" height="28">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a href="https://nikhilsahu.ml/Sliding-window-simulator/" class="navbar-item">
Home
</a>
<a href="./GoBackn.html" class="navbar-item">
Go Back N
</a>
<a href="./SelectiveRepeat.html" class="navbar-item">
Selective Repeat
</a>
</div>
<div class="navbar-end">
<div class="navbar-item" >
<a href="https://github.com/nikhildsahu/Sliding-window-simulator">
<i class="fab fa-github" style="width:112 ; height : 28;"></i>
</a>
</div>
</div>
</div>
</nav>
<!----Nav ENDS-->
<!--Content -->
<script type="text/javascript" src="./selectiveRepeat.js"></script>
</body>
</html>