-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkinternshipsdetails.php
97 lines (85 loc) · 1.52 KB
/
checkinternshipsdetails.php
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
<!DOCTYPE html>
<html>
<head>
<title>CIS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/login.css">
<style>
body
{
background-image: url("img/1d.jpg");
background-repeat: no-repeat;
background-size:cover;
}
h1
{
color:black;
font-size: 70px;
margin-top: 20%;
}
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:
}
#d1
{
text-align: center;
font-family: verdana;
}
</style>
</head>
<body>
<div id="main">
<nav>
<ul>
<li><a href="#">Dashboard</a></li>
<li><a href="logout.php">logout</a></li>
</ul>
</nav>
</div>
<hr>
<form>
<fieldset>
<label id="d1">Enter the InternshipID</label>
<input type="text" name="search" autocomplete="off">
<button type="submit" name="submit">Search</button>
</fieldset>
</form>
<footer>
<p>CopyRight@2023 InternshipSurveySystemystem.in</p>
</footer>
</body>
</html>