-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtry2.html
53 lines (50 loc) · 1.87 KB
/
try2.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
<!DOCTYPE html>
<html>
<head>
<title>Sign In </title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.vticker-min.js"></script>
<script type="text/javascript">
$(function(){
$("#news").vTicker({
animation: 'fade',
mousePause: false,
showItems: 1
});
});
</script>
</head>
<body>
<div id="wrapper">
<div id="img">
<img src="images/image1.jpg"/>
</div>
<div id="links">
<table id="linktable"><tr>
<td><a href="http://www.cse.iitk.ac.in/">Home</a></td>
<td><a href="resources.html">Resources</a></td>
<td><a href="status.html">Current Status</a></td>
<td><a href="signup.html" >Sign Up</a></td>
</tr></table>
</div>
<div id="login">
<form id="form" >
<h2></u>Login:</u></h2>
<b>Username:</b><input type="text" id="usrname" style="margin: 2px"><br/>
 <b>Password:</b><input type="password" id="passwd" style="margin: 2px"><br/>
<button type="button" id="submit" style="margin-left: 39%;">Submit</button>
</form>
</div>
<b><h2 id="announce">Announcements:</h2></b>
<div id="news">
<ul>
<li>CS 103 booked for next 3 days for yahoo HACK U !<br/><br/>
<li>CS 101 holds departmental freshers for UG Y11 tomorrow from 7:30pm to 11pm.<br/><br/>
<li>Farewell ceremony of Professor M.K Sharma in CS lounge today after 8pm.<br/><br/>
<li>Labs are reserved for internship tests on weekend after 5pm in the evening </li><br/><br/>
</ul>
</div>
</div>
</body>
</html>