-
Notifications
You must be signed in to change notification settings - Fork 0
/
tresources.html
90 lines (73 loc) · 2.68 KB
/
tresources.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<title>Resources</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<body>
<header class="w3-container w3-row w3-teal">
<div class="w3-col m4">
<img src="jntuk.jpg" alt="jntuk logo" style="width:45%;height:100%;">
</div>
<div class="w3-col m4 w3-center"><h1>LEARN CUBE-JNTUK</h1></div>
<div class="w3-col m4 w3-center">
<p>Welcome Id:xxxxxxxxxxxx<br>
<a class="w3-btn w3-teal">Logout</a>
</p>
</div>
</header>
<div class="w3-topnav w3-center w3-xlarge w3-deep-purple">
<a href="thomepage.html"><i class="material-icons w3-xlarge">home</i></a>
<a href="tresources.html">Resources</a>
<a href="upload.html">Upload</a>
<a href="tcollegecalendar.html">College Calendar</a>
<a href="tcircularstab.html">Circulars/Notifications</a>
<a href="http://jntucek.ac.in/library.php">Online Library</a>
</div>
<div class="w3-container w3-center w3-padding-64">
<div>
Department : <select name="">
<option>CSE</option>
<option>ECE</option>
<option>CIVIL</option>
<option>MECHANICAL</option>
<option>EEE</option>
<option>PEC</option>
</select><br><br>
</div>
Course : <select name="">
<option>B.tech</option>
<option>M.tech</option>
<option>MCA</option>
<option></option>
</select><br><br>
Year :
<select name="year">
<option>I</option>
<option>II</option>
<option>III</option>
<option>IV</option>
</select><br><br>
Subject : <select name="Subject name">
<option>Computer Networks</option>
<option>Computer Networks</option>
<option>Computer Networks</option>
<option>Computer Networks</option>
</select><br><br>
<input type="submit" value="submit" name="submit" class="w3-btn-red" onclick="validate()"/> <input type="reset" value="reset"/>
</div>
<style>
#footer {
width: 100%;
bottom: 0;
position:fixed;
height: 4em;
}
</style>
<div id="footer">
<footer class="w3-container w3-blue-grey">
<p> ©Department Of Computer Science</p>
</footer>
</div>
</body>
</html>