-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker.html
30 lines (30 loc) · 1006 Bytes
/
docker.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Docker World</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="desktop">
<div class="content-docker">
<h1>Docker is a software platform that allows you to build, test,
and deploy applications quickly.</h1>
<h3>Explore the world of Docker using simple English phrases!!</h3>
</div>
<div class="docker">
<div>
<h2>Enter your command below </h2>
<input id="in" type="text" />
<button class="run" onclick=miniproject()><b>Run</b></button>
</div>
<div>
<h2>Your output</h2>
<div id="display"></div>
</div>
<button class="back" onclick="goBack()">Back to Home</button>
</div>
</div>
</body>
<script src = "script.js"></script>
</html>