-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (69 loc) · 3.7 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
<!DOCTYPE html>
<html>
<head>
<title>Plotting Line Coding Methods</title>
<!-- External Libraries -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,700,900' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.1.0/particles.min.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<style>
body{
overflow-x: visible;
}
</style>
<!-- Load stylesheets -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="particles-js">
</div>
<script>
$(document).ready(function () {
particlesJS.load('particles-js', '../particles.json', function() {
console.log('callback - particles.json config loaded');
});
$('#terminal').height(1.3 * $('#data-entry').height());
</script>
<!-- Animating the title -->
<div class="moving-letters"style="top: -120px;">
<h1 class="ml5"style="top: -100px;">
<span class="text-wrapper">
<span class="line line1" style="background-color: #00bfa5;"></span>
<span class="letters letters-left"></span>
<span class="letters letters-up" style="color: #ef6c00;">Line</span>
<span class="letters letters-right ">Coding</span>
<span class="line line1" style="background-color: #00bfa5;"></span>
</span>
</h1>
<!-- Animating the topics -->
<h1 class="ml6" style="top: -120px;">
<span class="text-wrapper">
<a href="nrz-l/index.html"><span class="letters letters-up1">NRZ-L</span></a><br>
<a href="nrz-i/index.html"><span class="letters letters-up1">NRZ-I</span></a> <br>
<a href="manchester/index.html"><span class="letters letters-right1">Manchester</span></a><br>
<a href="differential-manchester/index.html"><span class="letters letters-right1">Differential Manchester</span></a><br>
<a href="polar/index.html"><span class="letters letters-left1">Polar</span></a><br>
<a href="ami/index.html"><span class="letters letters-left1">AMI</span></a><br>
<!-- <a href="pseudoternary"><span class="letters letters-down1">Pseudoternary</span></a><br> -->
<a href="bipolar/index.html"><span class="letters letters-down1">Bipolar</span></a><br>
</span>
</h1>
</div>
<h1 class="ml6" style="bottom: 0px; top:530px;left: 0px;text-align: right;">
<span class="text-wrapper" style="bottom: 0px;left: 0px;">
<span class="letters letters-left1" style="color: #a7ffeb; margin-right: 00px;">Created</span>
<span class="letters letters-right1" style="color:#a7ffeb; margin-right: 200px;">by : </span> <br>
<!-- <span class="line line1" style="background-color: #00bfa5;margin-bottom: 60px;" ></span> -->
<span class="letters letters-down1"style="margin-right: 10px;"><span style="color: #f57f17 ;">Sparsh</span> Kesari : 1DS18CS191</span><br>
<span class="letters letters-right1" style="margin-right: 10px;"> <span style="color: #f9a825 ;">Sumit</span> Thakur : 1DS18CS192</span> <br>
<span class="letters letters-up1" style="margin-right: 10px;"><span style="color:#fbc02d ;">Jatin</span> Guglani : 1DS18CS165</span>
</span>
</h1>
</body>
<!-- Load JS file -->
<script type="text/javascript" src="main.js"></script>
</html>