-
Notifications
You must be signed in to change notification settings - Fork 2
/
home page.html
139 lines (124 loc) · 4.05 KB
/
home page.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<title>home page
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<style>
* {
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
margin: 0;
font-family: Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #555555;
margin-left: auto;
margin-right: auto;
width:70%;
}
.topnav a {
float: left;
display: block;
text-align: center;
padding: 14px 16px;
text-decoration: none;
float:right;
}
.topnav a:hover {
background-color:#34757b;
}
.content {
background-color: #f1f1f1;
padding: 10px;
width: 70%;
display: block;
margin-left: auto;
margin-right: auto;
}
.footer {
background-color: #555555;
padding: 10px;
width: 70%;
display: block;
margin-left: auto;
margin-right: auto;
padding: 20px 20px 20px 20px;
}
.header {
display: block;
margin-left: auto;
margin-right: auto;
width: 70%;
}
a:link {
color: rgb(173, 171, 171);
text-decoration: none;
}
a:visited {
color: rgb(173, 171, 171);
text-decoration: none;
}
</style>
</head>
<body style="background-color:#f1f1f1;">
<div class="header">
<img src="anna univ logo.png" alt="annaunivlogo" style="width:100% " >
</div>
<div class="topnav">
<a href="sign in.php" style="color: white; border-left:2px solid rgb(213, 237, 253);">Sign in</a>
<a href="sign up.php" style="color: white;border-left:2px solid rgb(213, 237, 253) ; ">Sign up</a>
<a href="home page.html" style="color: white; border-right:2px solid rgb(213, 237, 253);float: left;">Home</a>
</div>
<div class="content">
<h1 style="text-align: center;">Information Technology Department Library Portal</h1>
<img src="dept.jpg" alt="dept" style="width:100% " >
</div>
<div class="footer" style="color: white;" >
<b style="font-size:large ;"></b>
<ul class="l" style="text-decoration: none">
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-4 col-md-3 item">
<h3>Quick links:</h3>
<ul>
<li><a href="https://www.annauniv.edu/">Anna University</a></li>
<li><a href="https://acoe.annauniv.edu/">ACOE</a></li>
<li><a href="https://www.aukdc.edu.in/">AUKDC</a></li>
<li><a href="https://www.mitindia.edu/en/">MIT</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3></h3>
<ul>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3></h3>
<ul>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>Contact Details:</h3>
<ul>
<li><a>Telephone:2252 6020</a></li>
<li><a>Email: aucmitit@gmail.com</a></li>
<li><a>Department Of IT, MIT, Anna University, Chennai-600044</a></li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
</body>
</html>