-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsamples.html
More file actions
41 lines (39 loc) · 745 Bytes
/
samples.html
File metadata and controls
41 lines (39 loc) · 745 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
<!DOCTYPE html>
<html>
<head>
<style>
* {
box-sizing: border-box;
}
.column {
float: left;
width: 33.33%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
</style>
</head>
<body>
<div align="center">
<h2>Sample Dialog for the 2D-shape Layout task and the COCO Layout task</h2>
<br />
<div class="row" align="center">
<div class="column" style="width:15%">
</div>
<div class="column">
<img src="img/chat-2D-pattern-12447-good.png" alt="2D-shape" style="width:100%">
</div>
<div class="column" style="width:7%">
</div>
<div class="column">
<img src="img/chat-COCO-409707-good-1.png" alt="COCO" style="width:100%">
</div>
</div>
<p></p>
</body>
</html>