-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
49 lines (49 loc) · 1.17 KB
/
homepage.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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>Student Information System</title>
</head>
<center>
<img src="jaguars_logo.png" alt="IUPUI Jaguar Logo" style="width:175px"/>
<style type="text/css">
h1
{
font-family: Calibri;
font-style: normal;
font-weight: bold;
color: Black;
text-align: center;
font-size: 45px;
}
button
{
width: 400px;
font-size: 40px;
font-family: Calibri,sans-serif;
color: #fff;
background-color: #bf2538;
border: none;
border-radius: 3px;
box-shadow: 1px 1px black;
}
footer
{
font-family: Calibri;
}
</style>
<body bgcolor="#f4d6a0">
<h1> Student Information System</h1>
<br/>
<button onclick="window.location.href='enroll.html' ">ENROLL Student</button><br/><br/>
<button onclick="window.location.href='search.html' ">SEARCH Student</button><br/><br/>
<button onclick="window.location.href='update.html' ">UPDATE Student</button><br/><br/>
<button onclick="window.location.href='delete.html' ">DELETE Student</button><br/><br/>
<br/>
<br/>
<br/>
</body>
<footer><p><b>©2016 Department of ECE, IUPUI </b></p>
Nivedita Mukka<br/>
</footer>
</center>
</html>