forked from EDS-Bioinformatics-Laboratory/ENCORE_AUTOMATION
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavigate.html
More file actions
54 lines (47 loc) · 847 Bytes
/
Copy pathNavigate.html
File metadata and controls
54 lines (47 loc) · 847 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
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
<!doctype html>
<html>
<head>
<style type="text/css">
div {
display: flex;
width: 100%;
}
iframe{
width:100%;
height: 400px;
border: 0;
scrolling: yes;
resize: both;
overflow: auto;
}
.box {
display: inline-block;
margin-right: 50px;
margin-bottom: 20px;
border: 2px solid green;
}
</style>
</head>
<body>
<div>
<div class="box">
<iframe src="./.navigate/fss.html" name="frame-1">
</iframe>
</div>
<div class="box">
<iframe src="./.navigate/0_gettingstarted.html" name="frame-2">
</iframe>
</div>
</div>
<div>
<div class="box">
<iframe src="./.navigate/0_project.html" name="frame-3" >
</iframe>
</div>
<div class="box">
<iframe src="./.navigate/0_gettingstarted.html" name="frame-4" >
</iframe>
</div>
</div>
</body>
</html>