-
Notifications
You must be signed in to change notification settings - Fork 12.5k
/
Copy pathoutput.html
35 lines (31 loc) · 1.06 KB
/
output.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Output Web Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.container pre {
white-space: pre-wrap;
font-family: Arial, sans-serif;
font-size: 17px;
}
</style>
</head>
<body>
<div class="container text-center mt-4">
<img src="{{url}}" height="150px" width="150px">
<h1> {{ heading }} </h1>
<h6> in {{ language }} language</h6>
</div>
<div class="container mt-4">
<div class="container border p-3">
<pre>{{ data }}</pre>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>