PY
py
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
#_Python Alert Box
print("Here must be your code.")
import os
print("""
<div class="alert"><h3 style="color:black;"> Code playground</h3><p> Custom Python Alert Box </p>
<p class="closebtn" onclick="this.parentElement.style.display='none';"> OK </p>
</div>
""")
print("""
<style>
body {
font-size:16px;
color: aqua;
height:700px;
}
.alert {
position:fixed;
top:30%;
right:5%;
background-color: white;
height:160px;
width:90%;
box-shadow: 0 0 3px 3px #cccccc, 0 0 500px 500px Gainsboro;
font-family:Tahoma;
color:black;
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run