-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·36 lines (35 loc) · 977 Bytes
/
index.html
File metadata and controls
executable file
·36 lines (35 loc) · 977 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
28
29
30
31
32
33
34
35
36
<html>
<head>
<link rel="stylesheet" type="text/css" href="assets/style/style.css">
<title>3D Animetion</title>
</head>
<body>
<div class="contain" >
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span id="txt" class="s1">?
</span>
</div>
<script>
const setTxt = document.getElementById("txt");
window.addEventListener('load', (event) => {
const txt = prompt('enter you text:-');
setTxt.innerText = txt.length== 0?"😅":txt;
});
</script>
</body>
</html>