<!DOCTYPE html>
<html>

<head>
    <title>
        <%=title %>
    </title>
    <meta charset="utf-8" />

    <style>
        .row {
            display: flex;
            flex-direction: row;
        }

        .column {
            box-sizing: border-box;
            padding: 3%;
            width: calc(100% / 2);
            background-color: aliceblue;
        }

        .column:nth-child(2) {
            background-color: antiquewhite;
        }
    </style>
</head>

<body>

    <h1>
        <%=title %>
    </h1>

    <div class="row">



        <div class="column">
            <iframe src="<%=chatUrl2 %>" frameborder="0" scrolling="no" style="width: 100%; height: 80vh;"></iframe>
        </div>
    </div>
</body>
<html>