-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
58 lines (56 loc) · 1.19 KB
/
index1.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="project.css">
<style>
a{
background-color: rgb(30, 171, 86);
color: white;
padding: 16px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
margin: 1px;
}
body {
width: 100%;
height: 100%;
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(255, 255, 255);
background-image:url(college.jpeg);
background-repeat: no-repeat;
background-size: cover;
background-attachment:fixed;
}
.container {
float: center;
margin-top: 10%;
margin-right: auto;
margin-left: auto;
margin-bottom: auto;
width: 50%;
height: auto;
padding: 16px;
background-color:transparent;
}
h1{
text-align: center;
color: rgb(255, 255, 255);
text-decoration-style: solid;
font-size: 30px;
font-family:fantasy;
}
</style>
</head>
<body>
<div class="container">
<h1>Magazine Management</h1>
<center><a href="Aindex.php">Admin</a>
<a href="Vindex.php">Verifier</a>
<a href="index.php">Student</a></center>
</div>
</body>
</html>