-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (71 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initital-scale=1.0" />
<meta name="author" content="Sam" />
<meta name="description" content="This is the Web Technologies Lab Repo which belongs to REC CSE LAB Github Organization" />
<title>Web Technologies Lab</title>
<style>
body {
background-color: #333;
color: whitesmoke;
font-size: 22px;
}
table {
border-color: rgb(103, 103, 105);
}
header h1,footer p {
text-align: center;
}
a{
color: rgb(179, 179, 179);
}
a:visited{
color: rgb(131, 132, 187);
}
a:hover, a:active{
color: white;
}
</style>
</head>
<body>
<header>
<h1><b>Welcome to Web Technologies Lab Repo</b></h1>
</header>
<hr>
<main>
<h2><u>Introduction:</u></h2>
<p>
The <a href="https://github.com/REC-CSE-LAB/Web_Technologies_Lab" target="_blank" title="Goto REC-CSE-LAB/Web_Technologies_Lab">Web Technologies Lab Repo</a>
is one of the repository present in the Github <a href="https://github.com/REC-CSE-LAB" target="_blank" title="Goto REC-CSE-LAB">REC CSE LAB</a> Organization.
The main intension of this open source repository is to act as a platform to student to learn and prepare for their Lab Exams, and if possible get some
hands-on by contributing to this repo. I heartly welcome anyone who is willing to learn from... and contribute to this repository to help the student have a
better place to access the markdown and source code of the related experiments. Hope you find this repo useful...
</p>
<h2><u>Index:</u></h2>
<p>As of for now, this repository consists for the following experiments:</p>
<nav aria-label="index">
<table border="5px" cellspacing="8px" cellpadding="15px">
<thead>
<tr>
<th scope="col">Repo Link</th>
<th scope="col">Output</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/REC-CSE-LAB/Web_Technologies_Lab/tree/main/Experiment-1" target="_blank" title="Goto Experiment-1">Experiment-1</a></td>
<td><a href="https://rec-cse-lab.github.io/Web_Technologies_Lab/Experiment-1" target="_blank" title="Visit Experiment-1 Result">Home Page</a></td>
</tbody>
</table>
</nav>
<br>
</main>
<hr>
<footer>
<p><a href="https://github.com/iamwatchdogs" target="_blank" title="Goto @iamwatchdogs">Meet the maintainer of this Repo.</a><p>
</footer>
<hr>
</body>
</html>