-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 904 Bytes
/
index.html
File metadata and controls
27 lines (26 loc) · 904 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
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="root">
<div class="container">
<div class="prompt-container" id="input">
<input
id="input_container"
class="prompt-box"
placeholder="Write/paste here!"
/>
<button id="explain_button" class="cta-button explain-button">Explain!</button>
<div id="output">
<p>Your acronym has the following meaning(s)</p>
<div class="output-content">
<p class="prompt-box droid"></p>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="index.js"></script>
</html>