-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
107 lines (104 loc) · 3.74 KB
/
About.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" type="img/png" href="https://img.icons8.com/nolan/64/java-coffee-cup-logo.png"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./Components/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/[email protected]/css-doodle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<title>About</title>
</head>
<body>
<div>
<div class="progressbar"></div>
<div>
<css-doodle grid="5" class="doodle">
:doodle {
@grid: 10 / 100vmax;
}
background: @pick(#29B6F6, #FDD835, #5E35B1, #FFCCBC, #E8EAF6, #B2DFDB, #1B5E20, #2979FF);
opacity: @r(.9);
clip-path: polygon(
@rand(50%) 0, 50% @rand(70%), 0 @rand(100%)
);
animation: test infinite @r(40s, 70s) linear;
@keyframes test {
0% {
transform: translate3d(0, 0, 0);
}
50% {
transform: translate3d(@r(-500%, 1000%), @r(-500%, 1000%), 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
</css-doodle>
<div>
<nav class="navbar navbar-expand-lg ">
<ul class="nav" style="font-weight: bold;">
<li class="nav-item">
<a class="nav-link" href="index.html" target="_top">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Abstraction.html" target="_top">Abstraction</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Interface.html" target="_top">Interface</a>
</li>
<li class="nav-item">
<a class="nav-link" href="IVSA.html" target="_top">Difference</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About.html" target="_top">About</a>
</li>
</ul>
</nav>
</div>
</div>
<br>
<div class="container p-4 my-4">
<h1 class="text-center" style="color: black;">Web Technology Group-8</h1>
<table class="table table-hover" style="background-color: aliceblue;">
<thead class="thead-dark">
<tr>
<th>Roll No</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1905148</th>
<td>Aanchal Gupta</td>
</tr>
<tr>
<th scope="row">1905173</th>
<td>Gargi Chakraverty</td>
</tr>
<tr>
<th scope="row">1905324</th>
<td>Kankana Dolai</td>
</tr><tr>
<th scope="row">1905345</th>
<td>Sayan Bhattacharyya</td>
</tr><tr>
<th scope="row">1905356</th>
<td>Snehasish Sameer Sourav</td>
</tr>
</tbody>
</table>
</div>
</div>
<style>
td, th {
font-weight: bold;
font-size: 18px;
}
</style>
<script src="./Components/main.js"></script>
</body>
</div>
</html>