forked from vikassharma1999/ITproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIT Project.html
61 lines (49 loc) · 1.79 KB
/
IT Project.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
<!DOCTYPE html>
<html>
<head>
<title>Counting</title>
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville|Lobster|Pacifico" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="shortcut icon" href="i15.png" type="image/x-icon"/>
<script>
function w3_open() {
document.getElementById("mySidebar").style.display = "block";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}
</script>
<style type="text/css">
body{
background-color: #4717F6;
}
#div1{
height: 100%;
background-position: center;
height: 100px;
padding: 100px 50px 300px 50px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<div class="w3-sidebar w3-bar-block w3-border-right" style="display:none; background-color: lightgreen;" id="mySidebar">
<button onclick="w3_close()" class="w3-bar-item w3-large">Close ×</button>
<a href="about.html" class="w3-bar-item w3-button">ABOUT US</a>
<a href="http://www.iiitvadodara.ac.in/" class="w3-bar-item w3-button">college</a>
</div>
<div class="w3-teal" >
<button class="w3-button w3-teal w3-xlarge" onclick="w3_open()">☰</button>
<div class="w3-container">
<h1 style="text-align: center; padding: 10px 100px 50px 100px; color:blue; font-family: 'Libre Baskerville', serif;">COUNTING</h1>
</div>
</div>
<br>
<div id="div1">
<h1 ><u>CONTENTS</u></h1>
<h2><a href="PNC.html">The Permutation And Combination</a></h2>
<h2><a href="bio.html">Binomial Coefficients</a></h2>
</div>
</body>
</html>