-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrmi.php
68 lines (68 loc) · 1.95 KB
/
rmi.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
<?php
if(session_status()==PHP_SESSION_NONE)
{
session_start();
if(!isset($_SESSION['username']))
{
header("Location: index.php");
exit;
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/Semantic/semantic.min.css">
<script src="js/jquery-3.4.1.min.js"></script>
<script src="css/Semantic/semantic.min.js"></script>
<script src="js/script.js"></script>
<script src="js/questions.js"></script>
<link rel="stylesheet" href="css/home.css">
<link rel="icon" href="images\dscelogo.png">
<title>RMI (Remote Method Invocation)</title>
</head>
<body>
<h1 class="ui header" style="text-align:center" id = "head">
<a class="ui circular image" href="http://dsce.edu.in"><img src="https://cdn.glitch.com/f3f0a812-ef86-4316-8cee-84e24f8e112e%2Fdsce.png?v=1566407586257"></a>
Virtual Labs
</h1>
<div id="toTop"><i class="chevron up icon"></i></div>
<div>
<div class="ui light grey inverted secondary huge menu">
<a class="header item" href="index.php">
Home
</a>
<a href="aj.php" class="item">
Advanced Java
</a>
<a class="item">
About Us
</a>
</div>
</div>
<div class="ui container" id="cont">
<h2 class="ui header" style="font-size:35px; margin-left:10px;">
RMI (Remote Method Invocation)
</h2>
<div class="ui stackable grid">
<div class="four wide column">
<div class="ui secondary vertical pointing menu" id="Menus">
<a class="item" id="list">
Video
</a>
</div>
</div>
<div class="twelve wide stretched column">
<div class="ui segment">
<div id="lis" style="padding: 15px; height: 400px;">
<iframe style="width:100%; height:100%;" allowfullscreen="allowfullscreen" src="https://www.youtube.com/embed/GKIwu6XyqPI">
</iframe> </div>
</div>
</div>
</div>
</div>
</body>
</html>