-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGY.php
More file actions
80 lines (74 loc) · 1.21 KB
/
GY.php
File metadata and controls
80 lines (74 loc) · 1.21 KB
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
<!DOCTYPE html>
<html>
<head>
<title>CIS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body
{
background-image: url("img/1d.jpg");
background-repeat: no-repeat;
background-size:cover;
}
h3
{
color:black;
font-size: 30px;
margin-top: 5%;
text-align: center;
}
nav
{
width:100%;
height:80px;
background-color:darkblue;
line-height: 50px;
}
nav ul
{
float: right;
margin-right:30px
}
nav ul li
{
list-style-type: none;
display:inline-block;
transition: 0.8s all;
}
nav ul li a
{
text-decoration: none;
color: #fff;
padding: 40px;
}
nav ul li:hover
{
background-color: #f39d1a;
}
footer
{
text-align: center;
padding: 3px;
background-color: black;
color: white;
margin-top: 70%;
margin-right:
}
</style>
</head>
<body>
<div id="main">
<nav>
<ul>
<li><a href="#">Dashboard</a></li>
<li><a href="#">logout</a></li>
</ul>
</nav>
</div>
<hr>
<h3><u>Student Details</u></h3>
<footer>
<p>CopyRight@2023 InternshipSurveySystem.in</p>
</footer>
</body>
</html>