-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframes.html
More file actions
25 lines (24 loc) · 786 Bytes
/
frames.html
File metadata and controls
25 lines (24 loc) · 786 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Features</title>
<link href="public/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="public/css/style.css" rel="stylesheet" type="text/css">
<script src="public/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="public/bootstrap/dist/js/bootstrap.min.js"></script>
</head>
<frameset rows="50%,50%" class="features">
<frameset cols="50%,50%">
<frame src="users.html" frameborder="0">
<frame src="service-center.html" frameborder="0">
</frameset>
<frameset cols="50%,50%">
<frame src="employee.html" frameborder="0">
<frame src="admin.html" frameborder="0">
</frameset>
</frameset>
<body>
</body>
</html>