Commit 327124a5 authored by ABHISHEK KUMAR's avatar ABHISHEK KUMAR

Put the two files of lab2 in a folder

parent 402aaed4
<!DOCTYPE html>
<html>
<head>
<title> My Homepage </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<ul>
<li><a href="home.html">Home</a></li>
<li><a class="active" href="aboutMe.html">About Me</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a href="timetable.html">Timetable</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<h1 align="center"><br><br><br>ABOUT ME</h1>
<p>
Hi! I am Shaan Vaidya. I am a sophomore pursuing bachelor's degree in Computer Science from IIT-B.
</p>
<p>This song really makes my day everytime! </p>
<br>
<iframe width="560" height="315" align="middle" src="https://www.youtube.com/embed/ZbZSe6N_BXs" frameborder="0" allowfullscreen>
</iframe>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title> My Homepage </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="aboutMe.html">About Me</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a href="timetable.html">Timetable</a></li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
<br><br><br><br><br>
<div>
<p> I am Shaan (&#x0936&#x093E&#x0928) </p>
<p> Follow me on: </p>
<a href="https://www.twitter.com/ShaanVaidya">
<img title="Twitter" alt="Twitter" src="https://socialmediawidgets.files.wordpress.com/2014/03/01_twitter1.png" width="35" height="35" />
</a>
<a href="https://www.facebook.com/shaan.vaidya.221B?fref=ts">
<img title="Facebook" alt="Facebook" src="https://socialmediawidgets.files.wordpress.com/2014/03/02_facebook1.png" width="35" height="35" />
</a>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title> My Homepage </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<ul>
<li><a class="active" href="home.html">Home</a></li>
<li><a href="aboutMe.html">About Me</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a href="timetable.html">Timetable</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<h1 align="center"><br><br><br>MARAUDERS</h1>
<div class="img">
<a href="http://cse.iitb.ac.in/~shaan/home.html">
<img src="shaan.jpg" alt="Shaan" width="500" height="300">
</a>
<div class="desc">Shaan Vaidya <br>
150050004</div>
</div>
<div class="img">
<a href="http://cse.iitb.ac.in/~abhikumar/home.html">
<img src="abhishek.jpg" alt="Abhishek" width="500" height="300">
</a>
<div class="desc">Abhishek Kumar <br> 150050020</div>
</div>
<div class="img">
<a href="http://cse.iitb.ac.in/~vsbagdawat/home.html">
<img src="vishwajeet.jpg" alt="Vishwajeet" width="500" height="300">
</a>
<div class="desc">Vishwajeet Singh <br> 150050046</div>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title> My Homepage </title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" async
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
</head>
<body>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="aboutMe.html">About Me</a></li>
<li><a class="active" href="interests.html">Interests</a></li>
<li><a href="timetable.html">Timetable</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<h1 align="center"><br><br><br>INTERESTS</h1>
<p>I love to read. Anything and everything. From tech to politics, I am always looking for something to learn and know</p>
<p> My favourite equation - the Cauchy Schwartz inequality</p>
<p>\[
\left( \sum_{k=1}^n a_k b_k \right)^{\!\!2} \leq
\left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)
\]</p>
</body>
</html>
\ No newline at end of file
Group 25 Marauders
(Shaan Vaidya 150050004) (Abhishek Kumar 150050020) (Vishwajeet Singh Bagdawat 150050046)
I pledge on my honour that I have not received or given any unauthorised assistance on this assignment or any previous task.
-Shaan
I pledge on my honour that I have not received or given any unauthorised assistance on this assignment or any previous task.
-Abhishek
I pledge on my honour that I have not received or given any unauthorised assistance on this assignment or any previous task.
-Vishwajeet
Contribution: Shaan 100% Abhishek 100% Vishwajeet 100%
Citations:
https://socialmediawidgets.wordpress.com/ - social media icons
http://www.planwallpaper.com/static/images/518164-backgrounds.jpg - background
body{
background-image: url("background.jpg");
background-size:auto;
background-position: center;
}
ul{
text-align: center;
list-style-type: none;
position: fixed;
margin: 0;
padding: 0;
overflow: hidden;
}
li{
float:left;
padding:20px;
background-color: black;
}
.active {
background-color: blue;
}
li a{
color:white;
display:block;
text-decoration: none;
}
div.img {
margin-top: 200px;
margin-left: 90px;
border: 1px solid #ccc;
float: left;
width: 250px;
margin-right: 40px;
}
div.img img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
color:black;
}
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title> My Homepage </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div align="center">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="aboutMe.html">About Me</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a class="active" href="timetable.html">Timetable</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<br><br><br><br><br>
<div align="center">
<table border="2px">
<tr >
<td>Time/Days</td>
<td>8:30-9:25</td>
<td>9:30-10:25</td>
<td>9:30-10:55</td>
<td>10:35-11:30</td>
<td>11:35-12:30</td>
<td>14:00-15:25</td>
<td>15:25-17:00</td>
</tr>
<tr >
<td>Monday</td>
<td> </td>
<td></td>
<td></td>
<td>CS 207</td>
<td>EE 101</td>
<td>CS 215</td>
<td>CS 213</td>
</tr>
<tr >
<td>Tuesday</td>
<td>EE 101</td>
<td></td>
<td></td>
<td></td>
<td>CS 207</td>
<td></td>
<td>CS 251</td>
</tr>
<tr >
<td>Wednesday</td>
<td> </td>
<td></td>
<td>HS 207</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr >
<td>Thursday</td>
<td>CS 207</td>
<td>EE 101</td>
<td></td>
<td></td>
<td></td>
<td>CS 215</td>
<td>CS 213</td>
</tr>
<tr >
<td>Friday</td>
<td></td>
<td></td>
<td>HS 207</td>
<td></td>
<td></td>
<td>CS 293</td>
<td>CS 293</td>
</tr>
</table>
</div>
</body>
</html>
\ No newline at end of file
<html>
<head>
<title>Form</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
background-color: white;
}
.col-sm-4 {
margin:0.5%;
padding:0.5px;
}
.jumbotron {
background-color: rgb(200,200,200);
padding: 100px;
font-size:30px;
}
h1 {
font-size: 80px;
}
</style>
</head>
<body>
<h1 align="center"><b>Demo Form</b></h1>
<div class="container">
<div class="jumbotron">
<form action="https://www.cse.iitb.ac.in/~sharat/php/example/form.php" method=post onsubmit="return validateform()" name="form">
<div class="row">
<div class="col-sm-4">Name:</div>
<div class="col-sm-6">
<input type=textbox placeholder="Enter your full name" id="name" name="name" onblur="validatename()">
</div>
<div class="col-sm-4">
<p id="demo1" style="color:red"></p>
</div>
</div>
<div class="row">
<div class="col-sm-4">Create a password:</div>
<div class="col-sm-6">
<input type=password name="pass" onblur="validatepass()" >
</div>
<div class="col-sm-4">
<p id="demo2" style="color:red"></p>
</div>
</div>
<div class="row">
<div class="col-sm-4">Confirm your password:</div>
<div class="col-sm-6">
<input type=password name="pass2" onblur="validatepass2()">
</div>
<div class="col-sm-4">
<p id="demo3" style="color:red"></p>
</div>
</div>
<div class="row">
<div class="col-sm-4">Email:</div>
<div class="col-sm-6">
<input type=email placeholder="Enter your email id" name="email" onblur="validateemail()">
</div>
<div class="col-sm-4">
<p id="demo4" style="color:red"></p>
</div>
</div>
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-6"><input type=submit value="Submit the form"> <input type=reset value="Reset Form" onclick="form.html"></div>
</form>
</div>
</div>
</body>
<script>
function escapeHTML (unsafe_str) {
return unsafe_str
.replace(/&/g, '&amp;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/\"/g, '&quot;')
.replace(/\'/g, '&#39;');
}
function validatename(){
var x=document.form.name.value;
x=escapeHTML(x);
if(x=="" || x==null){
document.getElementById("demo1").innerHTML = "You can't leave this empty";
// document.getElementById("name").style.borderColor = "pink";
return false;
}
else if(x.length<6||x.length>50){
//alert("Your name should be in the range of 6-50 characters");
document.getElementById("demo1").innerHTML = "Your name should be in the range of 6-50 characters";
// document.getElementById("name").style.borderColor = "pink";
return false;
}
else{
document.getElementById("demo1").innerHTML = "";
return true;
}
}
function validatepass(){
var y=document.form.pass.value;
y=escapeHTML(y);
var truth=false;
for(i=0; i< y.length; i++){
if(y[i]=='$'||y[i]=='!'||y[i]=='_'||y[i]=='@')
truth=truth||true;
}
if(y=="" || y==null){
document.getElementById("demo2").innerHTML = "You can't leave this empty";
// document.getElementById("pass").style.borderColor = "pink";
return false;
}
else if(y.length<8 || y.length>20){
document.getElementById("demo2").innerHTML = "The password should be within 8-20 character length";
// document.getElementById("pass").style.borderColor = "pink";
return false;
}
else if(truth==false){
document.getElementById("demo2").innerHTML ="The password must contain a special character {$, !, _, @}";
// document.getElementById("pass").style.borderColor = "pink";
return false;
}
else{
document.getElementById("demo2").innerHTML = "";
return true;
}
}
function validatepass2(){
var y=document.form.pass.value;
var b=document.form.pass2.value;
y=escapeHTML(y);
b=escapeHTML(b);
if(b=="" || b==null){
document.getElementById("demo3").innerHTML ="You can't leave this empty";
// document.getElementById("pass2").style.borderColor = "pink";
return false;
}
else if(y!=b){
document.getElementById("demo3").innerHTML ="Passwords must match!";
document.getElementById("pass2").style.borderColor = "pink";
return false;
}
else{
document.getElementById("demo3").innerHTML = "";
return true;
}
}
function validateemail(){
r=document.form.email.value;
r=escapeHTML(r);
if(r.indexOf('@')!=r.lastIndexOf('@') || r.indexOf('@') ==-1){
document.getElementById("demo4").innerHTML ="Email id should have one '@'";
return false;
}
r=r.split('@');
if(r[0].length<3){
document.getElementById("demo4").innerHTML ="Local-part of email id should be at least 3 characters long";
// document.getElementById("email").style.borderColor = "pink";
return false;
}
for(j=0; j<r[0].length; j++){
if(!((r[0][j]<='z' && r[0][j]>='a' )|| (r[0][j]>='A' && r[0][j]<='Z') || (r[0][j]=='.') || (r[0][j]=='_') || (r[0][j]<='9' && r[0][j]>='0'))){
document.getElementById("demo4").innerHTML ="Only alphanumeric characters, '.', '_' allowed in local-part of email";
// document.getElementById("email").style.borderColor = "pink";
return false;
}
}
for(j=0; j<r[1].length; j++){
if(!((r[1][j]<='z' && r[1][j]>='a' )|| (r[1][j]>='A' && r[1][j]<='Z') || (r[1][j]=='.'))){
document.getElementById("demo4").innerHTML ="Only alphanumeric characters, '.', '_' allowed in domain-part of email";
// document.getElementById("email").style.borderColor = "pink";
return false;
}
}
if(r[1].indexOf('.')==-1){
document.getElementById("demo4").innerHTML ="at least one '.' should be present in domain-part of email";
// document.getElementById("email").style.borderColor = "pink";
return false;
}
s=r[1].split('.');
t=s.length;
var flag=true;
for(j=1; j<t; j++){
flag=flag && s[j].length>=2;
}
if(s[0].length<3 || !flag){
//alert("Enter a valid email address");
document.getElementById("demo4").innerHTML ="Enter a valid email address";
// document.getElementById("email").style.borderColor = "pink";
//document.form.email.focus();
return false;
}
document.getElementById("demo4").innerHTML="";
return true;
}
function validateform(){
//document.write(validatename());
// document.write(validatepass());
//document.write(validateemail());
if(validatename() && validatepass() && validatepass2() && validateemail()){
return true;
}
else{
return false;
}
}
</script>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>Pokedex</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="head">
<img src='pokedex.png' align='center'></img>
</div>
<button class="accordion" style=background-color:goldenrod>ABRA</button>
<div class="panel" style=background-color:goldenrod>
<p align="center"><b>TYPE: PSYCHIC </b></p><br>
<table style=text-align:left>
<tr>
<p>
<th>
<img src="abra.jpg" width="50%" height="50%">Abra</img></th>
<th>Attacks:
<ul>
<li>Teleport</li>
<li>Barrier</li>
<li>Guard Split</li>
<li>Guard Swap</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="kadabra.jpg" width="50%" height="50%">Kadabra</img></th>
<th>Attacks:
<ul>
<li>Telekinesis</li>
<li>Psycho Cut</li>
<li>Miracle Eye</li>
<li>Psybeam</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="alakazam.jpg" width="50%" height="50%">Alakazam</img></th>
<th>Attacks:
<ul>
<li>Future Sight</li>
<li>Kinesis</li>
<li>Trick</li>
<li>Reflect</li>
</ul>
</th>
</p>
</tr>
</table>
</div>
<button class="accordion" style=background-color:green>SCYTHER</button>
<div class="panel" style=background-color:green>
<p align="center"><b>TYPE: GRASS </b></p><br>
<table style=text-align:left>
<tr>
<p>
<th>
<img src="scyther.jpg" width="50%" height="50%">Scyther</img></th>
<th>Attacks:
<ul>
<li>Razor Wind</li>
<li>X-Scissor</li>
<li>Night Slash</li>
<li>Double Hit</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="scizor.jpg" width="50%" height="50%">Scizor</img></th>
<th>Attacks:
<ul>
<li>Metal Claw</li>
<li>Fury Cutter</li>
<li>Iron Head</li>
<li>Swords Dance</li>
</ul>
</th>
</p>
</tr>
</table>
</div>
<button class="accordion" style=background-color:purple>GASTLY</button>
<div class="panel" style=background-color:purple>
<p align="center"><b>TYPE: GHOST </b></p><br>
<table style=text-align:left>
<tr>
<p>
<th>
<img src="gastly.jpg" width="50%" height="50%">Gastly</img></th>
<th>Attacks:
<ul>
<li>Hypnosis</li>
<li>Shadow Ball</li>
<li>Spite</li>
<li>Mean Look</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="haunter.jpg" width="50%" height="50%">Haunter</img></th>
<th>Attacks:
<ul>
<li>Nightmare</li>
<li>Hex</li>
<li>Dream eater</li>
<li>Dark pulse</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="gengar.jpg" width="50%" height="50%">Gengar</img></th>
<th>Attacks:
<ul>
<li>Shadow Punch</li>
<li>Confuse Ray</li>
<li>Night Shade</li>
<li>Payback</li>
</ul>
</th>
</p>
</tr>
</table>
</div>
<button class="accordion" style=background-color:orange>CHARMANDER</button>
<div class="panel" style=background-color:orange>
<p align="center"><b>TYPE: FIRE </b></p><br>
<table style=text-align:left>
<tr>
<p>
<th>
<img src="charmander.jpg" width="50%" height="50%">Charmander</img></th>
<th>Attacks:
<ul>
<li>Fire Fang</li>
<li>Flame Burst</li>
<li>Flame Thrower</li>
<li>Fire Spin</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="charmeleon.jpg" width="50%" height="50%">Charmeleon</img></th>
<th>Attacks:
<ul>
<li>Sunny Day</li>
<li>DragonRage</li>
<li>Smoke Screen</li>
<li>Slash</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="charizard.jpg" width="50%" height="50%">Charizard</img></th>
<th>Attacks:
<ul>
<li>Dragon Claw</li>
<li>Flare Blitz</li>
<li>Inferno</li>
<li>Heat Wave</li>
</ul>
</th>
</p>
</tr>
</table>
</div>
<button class="accordion" style=background-color:grey>GEODUDE</button>
<div class="panel" style=background-color:grey>
<p align="center"><b>TYPE: ROCK </b></p><br>
<table style=text-align:left>
<tr>
<p>
<th>
<img src="geodude.jpg" width="50%" height="50%">Geodude</img></th>
<th>Attacks:
<ul>
<li>Defense Curl</li>
<li>Rock Polish</li>
<li>Roll Out</li>
<li>Smack Down</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="graveler.jpg" width="50%" height="50%">Graveler</img></th>
<th>Attacks:
<ul>
<li>Stone Edge</li>
<li>Rock Blast</li>
<li>Rock Throw</li>
<li>Bulldoze</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="golem.jpg" width="50%" height="50%">Golem</img></th>
<th>Attacks:
<ul>
<li>Heavy Slam</li>
<li>Stealth Rock</li>
<li>Self Destruct</li>
<li>Earthquake</li>
</ul>
</th>
</p>
</tr>
</table>
</div>
<button class="accordion" style=background-color:blue;color:white>MAGIKARP</button>
<div class="panel" style=background-color:blue;color:white>
<p align="center"><b>TYPE: WATER </b></p><br>
<table style=text-align:left>
<tr>
<p>
<th>
<img src="magikarp.jpg" width="50%" height="50%">Magikarp</img></th>
<th>Attacks:
<ul>
<li>Splash</li>
<li>Tackle</li>
<li>Flail</li>
<li>Bounce</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="gyarados.jpg" width="50%" height="50%">Gyarados</img></th>
<th>Attacks:
<ul>
<li>Hyper Beam</li>
<li>Dragon Rage</li>
<li>Aqua Tail</li>
<li>Ice fang</li>
</ul>
</th>
</p>
</tr>
</table>
</div>
<button class="accordion" style=background-color:violet>ZUBAT</button>
<div class="panel" style=background-color:violet>
<p align="center"><b>TYPE: FLYING </b></p><br>
<table style=text-align:left>
<tr>
<p>
<th>
<img src="zubat.jpg" width="50%" height="50%">Zubat</img></th>
<th>Attacks:
<ul>
<li>Super Sonic</li>
<li>Wing Attack</li>
<li>Confuse Ray</li>
<li>Air Cutter</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="golbat.jpg" width="50%" height="50%">Golbat</img></th>
<th>Attacks:
<ul>
<li>Astonish</li>
<li>Poison Fang</li>
<li>Venoshock</li>
<li>Air Slash</li>
</ul>
</th>
</p>
</tr>
<tr>
<p>
<th>
<img src="crobat.jpg" width="50%" height="50%">Crobat</img></th>
<th>Attacks:
<ul>
<li>Quick Guard</li>
<li>Haze</li>
<li>Bite</li>
<li>Rain Dance</li>
</ul>
</th>
</p>
</tr>
</table>
</div>
<script>
var accordion = document.getElementsByClassName("accordion");
var panel = document.getElementsByClassName('panel');
for (var i = 0; i < accordion.length; i++) {
accordion[i].onclick = function() {
var a = !this.classList.contains('active');
for (var i = 0; i < accordion.length; i++) {
accordion[i].classList.remove("active");
}
for (var i = 0; i < panel.length; i++) {
panel[i].classList.remove("show");
}
if (a) {
this.classList.toggle("active");
this.nextElementSibling.classList.toggle("show");
}
}
}
</script>
</body>
</html>
body {
background-image: url("background10.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
button.accordion {
background-color: rgb(100,100,255);
color: black;
padding: 20px;
width: 100%;
cursor: pointer;
border: none;
text-align: left;
opacity: 0.8;
outline: none;
font-size: 30px;
transition: 0.3s;
}
button.accordion.active, button.accordion:hover {
background-color:white;
}
button.accordion:after {
content: '\025BC';
font-size: 15px;
color: #777;
float: right;
margin-left: 5px;
}
button.accordion.active:after {
content: "\25B2";
}
div.panel {
padding: 0 15px;
max-height: 0;
overflow: hidden;
transition: 0.5s;
opacity: 0;
border: solid;
opacity: .8;
}
div.panel.show {
opacity: .8;
max-height: 1000px;
}
div.head {
padding-left:10px;
padding-right: 10px;
padding-top: 0.01px;
padding-bottom: 0.01px;
margin: auto;
width: 350px;
font-size: 45px;
}
div.head img{
height:100px;
width:300px;
}
\ No newline at end of file
<html>
<head>
<title>CSE Building</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
background-image: url("Map.jpg");
}
.col-sm-8 {
margin:auto;
width:auto;
height:auto;
text-align: center;
}
</style>
</head>
<body>
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-8">
<h1 style=color:white;text-align:center>MAKE CSE GREAT AGAIN :P</h1>
</div>
<div class="col-sm-4"></div>
</div>
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-8">
<img src="drawing.svg" ></img>
</div>
<div class="col-sm-3"></div>
</div>
</body>
</html>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="744.09448"
height="1052.3622"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="drawing.svg">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective2999" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.61568627"
inkscape:pageshadow="2"
inkscape:zoom="2"
inkscape:cx="336.16785"
inkscape:cy="532.31029"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1311"
inkscape:window-height="744"
inkscape:window-x="55"
inkscape:window-y="24"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Layer">
<rect
style="fill:#c8beb7"
id="rect3869"
width="641"
height="396"
x="95"
y="327.36218" />
<rect
style="fill:#ff6600"
id="rect3872"
width="472"
height="123"
x="166"
y="84.362183" />
<path
sodipodi:type="arc"
style="fill:#c8beb7"
id="path3876"
sodipodi:cx="686"
sodipodi:cy="855.86218"
sodipodi:rx="73"
sodipodi:ry="71.5"
d="m 759,855.86218 a 73,71.5 0 1 1 -146,0 73,71.5 0 1 1 146,0 z"
transform="translate(-34,-19)" />
<rect
style="fill:#c8beb7"
id="rect3888"
width="37"
height="60"
x="528"
y="721.36218" />
<path
sodipodi:type="arc"
style="fill:#c8beb7"
id="path4132"
sodipodi:cx="172.5"
sodipodi:cy="865.86218"
sodipodi:rx="95.5"
sodipodi:ry="64.5"
d="m 268,865.86218 a 95.5,64.5 0 1 1 -191,0 95.5,64.5 0 1 1 191,0 z"
transform="matrix(0.87434555,0,0,0.93023256,37.675393,1.9089892)" />
<path
sodipodi:type="arc"
style="fill:#00ffff"
id="path3203"
sodipodi:cx="32.5"
sodipodi:cy="313.07648"
sodipodi:rx="52.5"
sodipodi:ry="48.57143"
d="m 85,313.07648 a 52.5,48.57143 0 1 1 -105,0 52.5,48.57143 0 1 1 105,0 z"
transform="translate(26,207.99991)" />
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Garuda;-inkscape-font-specification:Garuda"
x="147"
y="502.86218"
id="text3116"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3118"
x="147"
y="502.86218" /></text>
</g>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-8.527559e-5)">
<rect
style="fill:#00ffff"
id="rect3197"
width="65.714279"
height="159.28568"
x="267.42859"
y="701.07648" />
<path
sodipodi:type="arc"
style="fill:#00ffff"
id="path3207"
sodipodi:cx="24.285715"
sodipodi:cy="449.14789"
sodipodi:rx="44.285713"
sodipodi:ry="46.07143"
d="m 68.571428,449.14789 c 0,25.44455 -19.827389,46.07143 -44.285713,46.07143 -24.45832393,0 -44.285713,-20.62688 -44.285713,-46.07143 0,-25.44455 19.82738907,-46.07143 44.285713,-46.07143 24.458324,0 44.285713,20.62688 44.285713,46.07143 z"
transform="translate(26,208)" />
<rect
style="fill:#ffff00;fill-rule:evenodd;stroke:#000000;stroke-width:0.98965639px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="rect3076"
width="118.58177"
height="135.72461"
x="190.99483"
y="282.49988"
ry="5" />
<rect
style="fill:#00ff00"
id="rect3078"
width="159.28571"
height="90.714287"
x="309.57144"
y="327.50504"
ry="4.9667773" />
<rect
style="fill:#00ffff"
id="rect3080"
width="52.857143"
height="90.714287"
x="468.85715"
y="327.50504"
ry="4.2857141" />
<rect
style="fill:#ffff00"
id="rect3086"
width="116.42857"
height="132.14287"
x="521.71429"
y="285.36218"
ry="5" />
<rect
style="fill:#ff0000"
id="rect3091"
width="169.28571"
height="120.71427"
x="96"
y="418.93359" />
<rect
style="fill:#ff0000"
id="rect3093"
width="95"
height="95.714279"
x="96"
y="323.21933" />
<rect
style="fill:#ff0000"
id="rect3111"
width="97.857117"
height="202.14284"
x="638.14288"
y="328.21933" />
<rect
style="fill:#ff0000"
id="rect3113"
width="79.285713"
height="112.85714"
x="559.57141"
y="417.50504" />
<rect
style="fill:#ff0000"
id="rect3115"
width="32.142849"
height="32.142876"
x="298.85715"
y="441.07648"
ry="4.9999957" />
<rect
y="476.79074"
x="298.85715"
height="32.142876"
width="32.142849"
id="rect3117"
style="fill:#ff0000"
inkscape:transform-center-y="-35.714286"
ry="3.5714285" />
<rect
y="441.07648"
x="492.42856"
height="32.142876"
width="32.142849"
id="rect3123"
style="fill:#ff0000"
ry="5" />
<rect
inkscape:transform-center-y="-35.714286"
style="fill:#ff0000"
id="rect3125"
width="32.142849"
height="32.142876"
x="492.42859"
y="476.79074"
ry="3.5714285" />
<rect
style="fill:#808080"
id="rect3127"
width="96.428574"
height="22.142857"
x="330.28571"
y="514.64789"
ry="3.5714285" />
<rect
style="fill:#0000ff"
id="rect3129"
width="375.71426"
height="78.571426"
x="153.14285"
y="539.64789"
ry="5" />
<rect
style="fill:#ffff00"
id="rect3131"
width="44.285717"
height="63.571407"
x="94.571426"
y="653.21936"
ry="3.5714285" />
<rect
style="fill:#ff0000"
id="rect3133"
width="45"
height="50.714283"
x="137.42857"
y="646.07648"
ry="4.888124" />
<rect
ry="4.888124"
y="646.07648"
x="183.14285"
height="50.714283"
width="45"
id="rect3158"
style="fill:#008080" />
<rect
style="fill:#ff0000"
id="rect3160"
width="39.285717"
height="52.142857"
x="228.85715"
y="665.36218"
ry="4.2857141" />
<rect
style="fill:#ff0000"
id="rect3162"
width="44.285709"
height="55"
x="309.57144"
y="646.79077"
ry="3.5714285" />
<rect
y="646.79077"
x="353.85715"
height="55"
width="44.285709"
id="rect3164"
style="fill:#008000"
ry="4.2857141" />
<rect
style="fill:#0000ff"
id="rect3170"
width="45.714294"
height="53.571442"
x="398.14285"
y="666.79077"
ry="3.5714285" />
<rect
style="fill:#008000"
id="rect3172"
width="44.285709"
height="55"
x="443.85715"
y="646.79077"
ry="4.2857141" />
<rect
y="646.79077"
x="487.42859"
height="55"
width="41.428566"
id="rect3174"
style="fill:#ff00ff" />
<rect
style="fill:#ff00ff"
id="rect3176"
width="23.571432"
height="42.857159"
x="505.28571"
y="701.07648" />
<rect
style="fill:#d35f5f"
id="rect3178"
width="47.142849"
height="112.85714"
x="564.57141"
y="668.21936"
ry="4.2857141" />
<rect
style="fill:#ffff00"
id="rect3180"
width="57.857155"
height="41.428589"
x="506.78574"
y="769.79077"
ry="5" />
<rect
style="fill:#ffff00"
id="rect3185"
width="44.285713"
height="53.57143"
x="611.71429"
y="647.505"
ry="5.7142859" />
<rect
style="fill:#ff0000"
id="rect3187"
width="37.142841"
height="32.142849"
x="656"
y="667.505"
ry="4.2857141" />
<rect
style="fill:#008000"
id="rect3189"
width="42.857143"
height="73.571426"
x="693.85712"
y="649.64789"
ry="5" />
<rect
style="fill:#00ffff"
id="rect3191"
width="42.857159"
height="57.14286"
x="693.85712"
y="591.79077"
ry="5.7142859" />
<rect
style="fill:#00ffff"
id="rect3193"
width="43.57143"
height="58.57143"
x="693.14288"
y="531.79077"
ry="3.5714285" />
<rect
style="fill:#00ffff"
id="rect3195"
width="42.142857"
height="37.142857"
x="267.42859"
y="665.36218" />
<path
sodipodi:type="arc"
style="fill:#00ffff"
id="path3205"
sodipodi:cx="7.1428571"
sodipodi:cy="314.50504"
sodipodi:rx="8.5714283"
sodipodi:ry="0.71428573"
d="m 15.714285,314.50504 c 0,0.39448 -3.837559,0.71428 -8.5714279,0.71428 -4.7338692,0 -8.5714283,-0.3198 -8.5714283,-0.71428 0,-0.39449 3.8375591,-0.71429 8.5714283,-0.71429 4.7338689,0 8.5714279,0.3198 8.5714279,0.71429 z"
transform="translate(26,208)" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="140.28571"
y="458.93359"
id="text3209"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3211"
x="140.28571"
y="458.93359">301</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="613.14288"
y="463.93359"
id="text3213"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3215"
x="613.14288"
y="463.93359">303</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
x="269.57141"
y="601.07648"
id="text3217"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan3219"
x="269.57141"
y="601.07648">STAIRS</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="98.85714"
y="692.505"
id="text3221"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3223"
x="98.85714"
y="692.505">320</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="142.42857"
y="673.93359"
id="text3225"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3227"
x="142.42857"
y="673.93359">319</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="188.14285"
y="671.07648"
id="text3229"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3231"
x="188.14285"
y="671.07648">318</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="231"
y="696.07648"
id="text3233"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3235"
x="231"
y="696.07648">317</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="283.14285"
y="776.07648"
id="text3237"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3239"
x="283.14285"
y="776.07648">316</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="311.71429"
y="681.07648"
id="text3241"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3243"
x="311.71429"
y="681.07648">315</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="356.71429"
y="682.505"
id="text3245"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3247"
x="356.71429"
y="682.505">314</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
x="402.28571"
y="697.71936"
id="text3249"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3251"
x="402.28571"
y="697.71936">313</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="445.28571"
y="681.07648"
id="text3253"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3255"
x="445.28571"
y="681.07648">312</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="490.28571"
y="680.36218"
id="text3257"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3259"
x="490.28571"
y="680.36218">311</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="567.42859"
y="731.07648"
id="text3261"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3263"
x="567.42859"
y="731.07648">309</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="510.64282"
y="793.2193"
id="text3265"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3267"
x="510.64282"
y="793.2193">309A</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="613.14288"
y="681.005"
id="text3269"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3271"
x="613.14288"
y="681.005">308</tspan></text>
<text
xml:space="preserve"
style="font-size:20px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="656.71429"
y="688.21936"
id="text3273"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3275"
x="656.71429"
y="688.21936">307</tspan></text>
<text
xml:space="preserve"
style="font-size:24px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="358.14285"
y="381.79077"
id="text3053"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3055"
x="358.14285"
y="381.79077">302A</tspan></text>
<rect
style="fill:#00ffff"
id="rect3057"
width="163.57143"
height="95.714287"
x="330.28571"
y="418.93359"
ry="5" />
<rect
style="fill:#00ffff"
id="rect3059"
width="62.857143"
height="77.14286"
x="191"
y="281.79077"
ry="4.5" />
<rect
style="fill:#00ff00"
id="rect3061"
width="52.857143"
height="59.285713"
x="191"
y="358.21933"
ry="4.5" />
<rect
style="fill:#0000ff"
id="rect3063"
width="56.42857"
height="95"
x="253.14285"
y="282.50504"
ry="4.5" />
<rect
ry="4.5"
y="282.50504"
x="521"
height="95"
width="56.42857"
id="rect3065"
style="fill:#0000ff" />
<rect
ry="4.5"
y="281.79077"
x="576.71429"
height="77.14286"
width="61.428574"
id="rect3067"
style="fill:#00ffff" />
<rect
ry="4.5"
y="358.21933"
x="585.28571"
height="59.285713"
width="52.857143"
id="rect3069"
style="fill:#00ff00" />
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="193.14287"
y="318.93359"
id="text3071"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3073"
x="193.14287"
y="318.93359">WASH</tspan></text>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="190.28572"
y="341.79077"
id="text3075"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3077"
x="190.28572"
y="341.79077">ROOM</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3079"
y="318.93359"
x="578.14288"
style="font-size:18px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="318.93359"
x="578.14288"
id="tspan3081"
sodipodi:role="line">WASH</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3083"
y="341.79077"
x="576"
style="font-size:18px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="341.79077"
x="576"
id="tspan3085"
sodipodi:role="line">ROOM</tspan></text>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
x="252.42859"
y="338.2193"
id="text3087"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3089"
x="252.42859"
y="338.2193">STAIRS</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3091"
y="342.50504"
x="521"
style="font-size:16px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="342.50504"
x="521"
id="tspan3093"
sodipodi:role="line">STAIRS</tspan></text>
<text
xml:space="preserve"
style="font-size:14px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="194.42856"
y="394.64789"
id="text3095"
sodipodi:linespacing="100%"
inkscape:transform-center-x="6"><tspan
sodipodi:role="line"
id="tspan3097"
x="194.42856"
y="394.64789">AHU31</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3099"
y="394.64789"
x="588.57141"
style="font-size:14px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="394.64789"
x="588.57141"
id="tspan3101"
sodipodi:role="line">AHU32</tspan></text>
<text
xml:space="preserve"
style="font-size:18px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="471.71429"
y="378.21933"
id="text3103"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3105"
x="471.71429"
y="378.21933">302B</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="374.57141"
y="481.07648"
id="text3107"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3109"
x="374.57141"
y="481.07648">302</tspan></text>
<text
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="304.57144"
y="465.36218"
id="text3111"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3113"
x="304.57144"
y="465.36218">LIFT</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3115"
y="497.50504"
x="303.85715"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="497.50504"
x="303.85715"
id="tspan3117"
sodipodi:role="line">LIFT</tspan></text>
<text
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="497.42859"
y="496.79074"
id="text3119"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3121"
x="497.42859"
y="496.79074">LIFT</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3123"
y="465.36218"
x="498.85715"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="465.36218"
x="498.85715"
id="tspan3125"
sodipodi:role="line">LIFT</tspan></text>
<text
xml:space="preserve"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
x="347.07144"
y="529.64789"
id="text3127"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3129"
x="347.07144"
y="529.64789">SR-31</tspan></text>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="698.85712"
y="565.505"
id="text3131"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3133"
x="698.85712"
y="565.505">304</tspan></text>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="699.57141"
y="623.505"
id="text3135"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3137"
x="699.57141"
y="623.505">305</tspan></text>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="699.57141"
y="691.07648"
id="text3139"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3141"
x="699.57141"
y="691.07648">306</tspan></text>
<path
sodipodi:type="arc"
style="fill:#ff0000"
id="path3143"
sodipodi:cx="339.28571"
sodipodi:cy="107.36218"
sodipodi:rx="10"
sodipodi:ry="12.142858"
d="m 340.38294,119.43172 c -5.48951,0.73584 -10.43087,-4.07136 -11.03686,-10.73719 -0.60598,-6.66582 3.35289,-12.666051 8.84239,-13.401889 0.70952,-0.09511 1.42539,-0.09769 2.13536,-0.0077"
sodipodi:start="1.4608519"
sodipodi:end="4.8163884"
sodipodi:open="true"
transform="matrix(1.9654159,0,0,1.7646725,-302.61109,116.61697)" />
<path
sodipodi:type="arc"
style="fill:#ff0000"
id="path3150"
sodipodi:cx="452.5"
sodipodi:cy="99.147896"
sodipodi:rx="9.6428576"
sodipodi:ry="18.928572"
d="m 451.59599,80.302688 c 5.30215,-0.980049 10.00513,6.66275 10.5044,17.070671 0.49927,10.407921 -3.39423,19.639691 -8.69638,20.619741 -0.36739,0.0679 -0.73647,0.0944 -1.10541,0.0792 L 452.5,99.147896 z"
sodipodi:start="4.618502"
sodipodi:end="7.8748691"
transform="matrix(1.2708829,0,0,0.6603889,-108.47247,248.10008)" />
<path
style="fill:#ff0000;stroke:#ff0000;stroke-width:1.02171421px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.05936076"
d="m 363.15371,283.94447 105.69257,16.6897 -0.73397,26.12302 -104.22461,1.45127 z"
id="path3152"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="32"
y="666.36218"
id="text3922"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3924"
x="32"
y="666.36218">321</tspan></text>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="31"
y="531.36218"
id="text3926"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3928"
x="31"
y="531.36218">STAIRS</tspan></text>
<g
id="g3366"
transform="translate(0,-107)">
<text
sodipodi:linespacing="100%"
id="text4176"
y="243.36218"
x="220"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="243.36218"
x="220"
id="tspan4178"
sodipodi:role="line">NEW CSE BUIDING</tspan></text>
<text
sodipodi:linespacing="100%"
id="text4180"
y="275.36218"
x="249"
style="font-size:28px;font-style:normal;font-weight:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
xml:space="preserve"><tspan
y="275.36218"
x="249"
id="tspan4182"
sodipodi:role="line">THIRD FLOOR LAYOUT</tspan></text>
</g>
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="151"
y="526.36218"
id="text3120"
sodipodi:linespacing="100%"
transform="translate(0,8.527559e-5)"><tspan
sodipodi:role="line"
id="tspan3122"
x="151"
y="526.36218" /></text>
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="156.5"
y="504.86227"
id="text3124"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3126"
x="156.5"
y="504.86227">Occ-52</tspan></text>
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="396"
y="500.36218"
id="text3128"
sodipodi:linespacing="100%"
transform="translate(0,8.527559e-5)"><tspan
sodipodi:role="line"
id="tspan3130"
x="396"
y="500.36218" /></text>
<text
sodipodi:linespacing="100%"
id="text3132"
y="500.36227"
x="630.5"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="500.36227"
x="630.5"
id="tspan3134"
sodipodi:role="line">Occ-52</tspan></text>
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="108.5"
y="482.86227"
id="text3136"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3138"
x="108.5"
y="482.86227">Research Workspace-1</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3140"
y="482.86227"
x="582.5"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="482.86227"
x="582.5"
id="tspan3142"
sodipodi:role="line">Research Workspace-2</tspan></text>
<text
xml:space="preserve"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="391"
y="502.36218"
id="text3144"
sodipodi:linespacing="100%"
transform="translate(0,8.527559e-5)"><tspan
sodipodi:role="line"
id="tspan3146"
x="391"
y="502.36218">UPS Area</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="476.5"
y="399.36218"
id="text3148"
sodipodi:linespacing="100%"
transform="translate(0,8.527559e-5)"><tspan
sodipodi:role="line"
id="tspan3150"
x="476.5"
y="399.36218">Testing </tspan><tspan
sodipodi:role="line"
x="476.5"
y="408.36218"
id="tspan3152"> Room</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="387"
y="529.86224"
id="text3154"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3156"
x="387"
y="529.86224">Store</tspan></text>
<rect
style="opacity:0.42386834;fill:#000000;stroke:#ff0000;stroke-opacity:0.05936076"
id="rect3159"
width="96.5"
height="33"
x="559.5"
y="529.86218"
transform="translate(0,8.527559e-5)"
ry="5" />
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="597"
y="541.86224"
id="text3161"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3163"
x="597"
y="541.86224">SR-32</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="598"
y="555.36224"
id="text3165"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3167"
x="598"
y="555.36224">Store</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#241f1c;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="700"
y="580.36218"
id="text3169"
sodipodi:linespacing="100%"
transform="translate(0,8.527559e-5)"><tspan
sodipodi:role="line"
id="tspan3171"
x="700"
y="580.36218">Faculty</tspan><tspan
sodipodi:role="line"
x="700"
y="589.36218"
id="tspan3173">Office</tspan></text>
<text
transform="translate(0,8.527559e-5)"
sodipodi:linespacing="100%"
id="text3175"
y="580.36218"
x="700"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#241f1c;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="580.36218"
x="700"
id="tspan3177"
sodipodi:role="line">Faculty</tspan><tspan
id="tspan3179"
y="589.36218"
x="700"
sodipodi:role="line">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#241f1c;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="700"
y="704.86224"
id="text3181"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3183"
x="700"
y="704.86224">Faculty</tspan><tspan
sodipodi:role="line"
x="700"
y="713.86224"
id="tspan3185">Office</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3187"
y="635.86224"
x="700"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#241f1c;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="635.86224"
x="700"
id="tspan3189"
sodipodi:role="line">Faculty</tspan><tspan
id="tspan3191"
y="644.86224"
x="700"
sodipodi:role="line">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="98.5"
y="707.86218"
id="text3193"
sodipodi:linespacing="100%"
transform="translate(0,8.527559e-5)"><tspan
sodipodi:role="line"
id="tspan3195"
x="98.5"
y="707.86218">Faculty</tspan><tspan
sodipodi:role="line"
x="98.5"
y="716.86218"
id="tspan3197">Office</tspan></text>
<text
transform="translate(0,8.527559e-5)"
sodipodi:linespacing="100%"
id="text3199"
y="707.86218"
x="98.5"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="707.86218"
x="98.5"
id="tspan3201"
sodipodi:role="line">Faculty</tspan><tspan
id="tspan3203"
y="716.86218"
x="98.5"
sodipodi:role="line">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="407.5"
y="707.86224"
id="text3205"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3207"
x="407.5"
y="707.86224">Faculty</tspan><tspan
sodipodi:role="line"
x="407.5"
y="715.86224"
id="tspan3209">Office</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3211"
y="691.86224"
x="316.5"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="691.86224"
x="316.5"
id="tspan3213"
sodipodi:role="line">Faculty</tspan><tspan
id="tspan3216"
y="699.86224"
x="316.5"
sodipodi:role="line">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="234"
y="707.86224"
id="text3218"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3220"
x="234"
y="707.86224">Faculty</tspan><tspan
sodipodi:role="line"
x="234"
y="715.86224"
id="tspan3222">Office</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3224"
y="683.86224"
x="190.5"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="683.86224"
x="190.5"
id="tspan3226"
sodipodi:role="line">Faculty</tspan><tspan
id="tspan3228"
y="691.86224"
x="190.5"
sodipodi:role="line">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="146"
y="684.36224"
id="text3230"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3232"
x="146"
y="684.36224">Faculty</tspan><tspan
sodipodi:role="line"
x="146"
y="692.36224"
id="tspan3234">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="450"
y="691.86224"
id="text3236"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3238"
x="450"
y="691.86224">Faculty</tspan><tspan
sodipodi:role="line"
x="450"
y="699.86224"
id="tspan3240">Office</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3242"
y="692.86224"
x="360"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="692.86224"
x="360"
id="tspan3244"
sodipodi:role="line">Faculty</tspan><tspan
id="tspan3246"
y="700.86224"
x="360"
sodipodi:role="line">Office</tspan></text>
<text
sodipodi:linespacing="100%"
id="text3248"
y="692.86224"
x="493"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
xml:space="preserve"><tspan
y="692.86224"
x="493"
id="tspan3250"
sodipodi:role="line">Faculty</tspan><tspan
id="tspan3252"
y="700.86224"
x="493"
sodipodi:role="line">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="520.5"
y="801.36224"
id="text3254"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3256"
x="520.5"
y="801.36224">Faculty</tspan><tspan
sodipodi:role="line"
x="520.5"
y="809.36224"
id="tspan3258">Office</tspan></text>
<text
xml:space="preserve"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
x="617.5"
y="691.86224"
id="text3260"
sodipodi:linespacing="100%"><tspan
sodipodi:role="line"
id="tspan3262"
x="617.5"
y="691.86224">Faculty</tspan><tspan
sodipodi:role="line"
x="617.5"
y="699.86224"
id="tspan3264">Office</tspan></text>
</g>
</svg>
<!DOCTYPE html>
<html>
<head>
<title> Shaan Vaidya </title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="home.html">SHAAN <b>VAIDYA<b></a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a class="navig" href="home.html#home">Home</a></li>
<li><a class="navig" href="home.html#aboutme" >Me</a></li>
<li><a class="navig" href="home.html#interests">What I love</a></li>
<li><a class="navig" href="home.html#contact">Contact Me</a></li>
<li><a class="navig" href="home.html#timetable">My Timetable</a></li>
<li><a class="navig" href="cs251.html" style="font-style:bold">CS 251</a></li>
</ul>
</div>
</nav>
<div class="container" style=margin:5%>
<div class="jumbotron">
<h1 style="align:center;"> The links to my other tasks for CS 251:</h1>
</div>
</div>
<div class="container" style=color: white>
<div class="jumbotron">
<ul style="list-style-type:none; ">
<li><div class="container" >
<a href="Task_B/Task_B.html" style=color: white>Form</a>
</div></li>
<li><div class="container" style=color: white>
<a href="Task_C/Task_C.html">Pokedex</a>
</div></li>
<li><div class="container" style=color: white>
<a href="Task_D/Task_D.html">New CSE Building</a>
</div></li>
</div>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title> Shaan Vaidya </title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" async
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="home.html">SHAAN <b>VAIDYA<b></a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a class="navig" href="#home">Home</a></li>
<li><a class="navig" href="#aboutme">Me</a></li>
<li><a class="navig" href="#interests">What I Love</a></li>
<li><a class="navig" href="#contact">Contact Me</a></li>
<li><a class="navig" href="#timetable">My Timetable</a></li>
<li><a class="navig" href="cs251.html">CS 251</a></li>
</ul>
</div>
</nav>
<div id="home" class="container-fluid">
<br><br>
<img src="marauders.png" alt="Marauders" class="head">
<h1 align="center"><b>I solemnly swear that I am upto no good</h1>
<div class="row">
<div class="col-sm-4">
<div class="img">
<a href="http://cse.iitb.ac.in/~abhikumar/home.html">
<img src="abhishek.jpg" alt="Abhishek" id="tp" class="img-responsive">
</a>
<div class="desc"><p style="color:white;">Abhishek Kumar <br> 150050020</p></div>
</div>
</div>
<div class="col-sm-4">
<div class="img">
<a href="http://cse.iitb.ac.in/~shaan/home.html">
<img src="shaan.jpg" alt="Shaan" id="tp" class="img-responsive" align="center">
</a>
<div class="desc"><p style="color:white;">Shaan Vaidya <br>150050004</p></div>
</div>
</div>
<div class="col-sm-4">
<div class="img">
<a href="http://cse.iitb.ac.in/~vsbagdawat/home.html">
<img src="vishwajeet.jpg" alt="Vishwajeet" id="tp" class="img-responsive"></img>
</a>
<div class="desc"><p style="color:white;">Vishwajeet Singh <br> 150050046</p></div>
</div>
</div>
</div>
</div>
<br><br><br><br><br><br>
<div id="aboutme" class="container-fluid">
<br><br>
<img src="aboutme.png" alt="About me" class="head">
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<p align="center">
Hi! I am Shaan Vaidya. I am a sophomore at the Indian Institute of Technology, Bombay.
<br>I am currently pursuing a major in Computer Science and Engineering.
<br>I hail from Surat, Gujarat
<br>I am a rationalist.
<br>
</p>
</div>
<div class="col-sm-2"></div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<p align="center">
This is the song, I am in love with, these days!
</p>
</div>
<div class="col-sm-2"></div>
</div>
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<div class="embed-responsive embed-responsive-16by9">
<iframe width="560" height="315" src="https://www.youtube.com/embed/Pw-0pbY9JeU" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<br>
<div class="col-sm-3"></div>
</div>
</div>
<br><br><br><br><br><br>
<div id="interests" class="container-fluid">
<br><br>
<img src="interests.png" alt="Interests" class="head">
<p align="center">
I love to read.
<br>
Anything and everything.
<br>
From tech to politics; finance to psychology.
<br>
I am always looking for articles on the web to read and learn
<br>
Also the engineer's cliche: I love math and programming (I really do!)
<br>
Machine learning has fascinated me since some time now;
<br>
in fact, I am considering a research career in it.
<br>
I love music.
<br>
I love to sing and am a self-professed singer.
<br>
As is evident, I am a Potterhead and a big one at that.
<br>
Of course, it is all in my head but why should that mean it is not real?
<br>
I read a HP fanfiction called Harry Potter and the Methods of Rationality.
<br>
Since that, I have been extremely intrigued about how irrational we behave in a lot of matters.
<br>
I don't play much but when I do, it's either badminton or cricket.
<br>
That's about it!
</p>
<div class="container">
<p align="center"> My favourite equation - the Cauchy Schwartz inequality</p>
<div class="jumbotron" style=padding:.1px;margin-left:200px;margin-right:200px>
<p>\[
\left( \sum_{k=1}^n a_k b_k \right)^{\!\!2} \leq
\left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)
\]</p>
</div>
</div>
<br><br><br><br><br><br>
<div id="contact" class="container-fluid">
<br><br>
<img src="contacts.png" alt="Contacts" class="head">
<div class="jumbotron" style=padding:.1px;margin-left:200px;margin-right:200px>
<p> Shaan Vaidya (&#x0AB6&#x0ABE&#x0AA8 &#x0AB5&#x0AC8&#x0AA6&#x0ACD&#xAAF) </p>
<p> Follow me on: </p>
<a href="https://www.twitter.com/ShaanVaidya">
<img title="Twitter" alt="Twitter" src="https://socialmediawidgets.files.wordpress.com/2014/03/01_twitter1.png" width="35" height="35" />
</a>
<a href="https://www.facebook.com/shaan.vaidya.221B?fref=ts">
<img title="Facebook" alt="Facebook" src="https://socialmediawidgets.files.wordpress.com/2014/03/02_facebook1.png" width="35" height="35" />
</a>
</div>
</div>
<br><br><br>
<div id="timetable" class="container-fluid">
<br><br>
<img src="timetable.png" alt="timetable" class="head">
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<table class="table table-striped" border=2px>
<thead>
<tr class="colhead">
<th>Time/Days</th>
<th>8:30-9:25</th>
<th>9:30-10:25</th>
<th>9:30-10:55</th>
<th>10:35-11:30</th>
<th>11:35-12:30</th>
<th>14:00-15:25</th>
<th>15:25-17:00</th>
</tr>
</thead>
<tr>
<th>Monday</th>
<td> </td>
<td></td>
<td></td>
<td>CS 207</td>
<td>EE 101</td>
<td>CS 215</td>
<td>CS 213</td>
</tr>
<tr >
<th>Tuesday</th>
<td>EE 101</td>
<td></td>
<td></td>
<td></td>
<td>CS 207</td>
<td></td>
<td>CS 251</td>
</tr>
<tr >
<th>Wednesday</th>
<td> </td>
<td></td>
<td>HS 207</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr >
<th>Thursday</th>
<td>CS 207</td>
<td>EE 101</td>
<td></td>
<td></td>
<td></td>
<td>CS 215</td>
<td>CS 213</td>
</tr>
<tr >
<th>Friday</th>
<td></td>
<td></td>
<td>HS 207</td>
<td></td>
<td></td>
<td>CS 293</td>
<td>CS 293</td>
</tr>
</table>
</div>
<div class="col-sm-2"></div>
</div>
</div>
<br><br><br><br><br><br>
</body>
</html>
\ No newline at end of file
#IMPORTANT TAKE FILES FROM THE MEMBERS
150050020 150050046
#IMPORTANT EXTRACT THE FOLDERS FOR THE TASK; THEY HAVE BEEN COMPRESSED FOR THE SIZE LIMIT
Group 25 Marauders
(Shaan Vaidya 150050004) (Abhishek Kumar 150050020) (Vishwajeet Singh Bagdawat 150050046)
I pledge on my honour that I have not received or given any unauthorised assistance on this assignment or any previous task.
-Shaan
I pledge on my honour that I have not received or given any unauthorised assistance on this assignment or any previous task.
-Abhishek
I pledge on my honour that I have not received or given any unauthorised assistance on this assignment or any previous task.
-Vishwajeet
Contribution: Shaan 100% Abhishek 100% Vishwajeet 100%
Note:
Extra credit:
The pdf files changed in inkscape have been included in the Task_D folder of the submission
On the fly form validation has also been implemented by invoking functions onblur of the input box
Citations:
http://ufonts.com/fonts/centaur.html - fonts
http://fontmeme.com/harry-potter-font/ - fonts
https://socialmediawidgets.wordpress.com/ - social media icons
http://www.myfreetextures.com/wp-content/uploads/2014/11/old-brown-paper-texture-image.jpg - background
PDFs for Inkscape task
http://www1.iitb.ac.in/academic/mcmform201512Aug.pdf
http://www1.iitb.ac.in/academic/Studentsapplicationnewform.pdf
http://www1.iitb.ac.in/academic/downloadForms/convocation201025jan.pdf
http://www1.iitb.ac.in/academic/CSIRContingencyForm201422May.pdf
Reflection essay:
We did have to start from scratch for incorporating Bootstrap. It really lessens a lot of work. Predefined classes for basic needs is great.
XSS attack was like our entry into info sec and it really was interesting. (Try gruyere.com by google to learn)
The task for Pokemon was fun, the part involving on keeping open only one tile was a bit difficult and required looking up references.
Inkscape is quite versatile though we didn't get a chance to explore much of it in the task.
@font-face{
font-family: 'Centaur';
src: url('ufonts.com_centaur.ttf') format('truetype');
src: url('ufonts.com_centaur.woff') format('woff');
}
div.jumbotron {
background-color: black;
color:white;
opacity: 0.8;
}
div.desc {
background-color: black;
opacity:0.8;
}
#home{
background-image: url("backn.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
/*
#aboutme{
background-image: url("death.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
#interests{
background-image: url("backn.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
#contact{
background-image: url("death.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}*/
body{
background-image: url("backn.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
font-family: 'Centaur';
}
div {
margin:0 auto;
}
div.img {
margin-top: 10%;
margin-left: 10%;
/*border: 1px solid #ccc;*/
float: left;
width: 60%;
margin-right: 10%;
box-shadow:1px;
}
div.img img {
width: 100%;
height: auto;
border-radius:50%;
}
div.head{
margin: 0 auto;
width: 50%;
padding: 10px;
}
div.desc {
padding: 15px;
text-align: center;
color:black;
font-family: 'Centaur';
}
nav.navbar-inverse{
opacity:0.8;
}
a.navig, a.navbar-brand{
font-family: 'Centaur';
font-size: 30px;
}
#tp:hover {
box-shadow: 0px 0px 10px 10px #000 ;
}
div, a, p, h1{
font-family: 'Centaur';
font-size: 22px;
}
th, td{
font-family: 'Centaur';
}
img.head{
display:block;
margin:auto;
width:23%;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment