forked from chitwang/iitk-sem1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab.html
68 lines (64 loc) · 2.36 KB
/
lab.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ESC 101 Lab</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<style>
a:link {
background-color: darkslategray;
color: white;
border-radius:20px;
padding: 15px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:visited{
background-color: darkslategray;
color:white;
border-radius:20px;
padding: 15px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
h2 {
text-decoration: double;
color: black;
font-style: italic;
}
.row {
display: flex;
}
.column {
flex: 50%;
padding: 5px;
}
</style>
</head>
<body style="background-color:rgb(211,211,211);">
<header>
<div style="text-align: right;font-size: large;">
<pre><a href = "index.html">Home</a> <a href = "phy.html">PHY 103</a> <a href = "mth.html">MTH 101</a> <a href = "chm.html">CHM 101</a> <a href = "art.html">ART 102</a> <a href = "contact.html">Contact</a></pre>
</div>
<h1
style="text-align: center; text-decoration: underline; font-size: 300; font-family: cursive;color: darkblue;">
ESC101 - LAB EXAMINATIONS
</h1>
</header>
<p style="font-size: 200%;text-align: center;"> Click one of the link to view the corresponding week's practice questions.</p><br>
<div style="text-align: center;font-size: 250%;">
<pre>
<a href = "lab1.html">Lab 1</a> <a href = "lab2.html">Lab 2</a><br>
<a href = "lab3.html">Lab 3</a> <a href = "lab4.html">Lab 4</a><br>
<a href = "lab5.html">Lab 5</a> <a href = "lab6.html">Lab 6</a><br>
<a href = "lab7.html">Lab 7</a> <a href = "lab8.html">Lab 8</a><br>
<a href = "lab9.html">Lab 9</a> <a href = "lab10.html">Lab 10</a><br>
<a href = "lab11.html">Lab 11</a>
</pre>
</div>
</body>
</html>