-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.html
45 lines (44 loc) · 1.08 KB
/
success.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sucess Page</title>
<link rel="stylesheet" href="assets/css/styes.css">
<style>
footer {
background-color: #0f6423;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<nav>
<img src="assets/images/logo.png" alt="college logo" width="80px">
<ul>
<li><a href="main.html">MAIN</a></li>
<li><a href="insert.html">INSERT</a></li>
<li><a href="view.php">VIEW</a></li>
<li><a href="delete.html">DELETE</a></li>
<li><a href="update.html">UPDATE</a></li>
<li><a href="info.html">INFO</a></li>
</ul>
</nav>
<header>
<img src="assets/images/congrats.png" alt="congrats image">
<h1>Congrats! the opeation was successful 😀</h1>
</header>
<main>
<section></section>
<section></section>
</main>
<footer>
© 2024 KIIT University
</footer>
</body>
</html>