Click here to Skip to main content
15,908,445 members

Comments by Mr.Kcoder (Top 7 by date)

Mr.Kcoder 1-Aug-21 21:48pm View    
I managed to get the above error and managed to get it playing.
Thank you!
Mr.Kcoder 1-Aug-21 20:49pm View    
Curiosity
Mr.Kcoder 1-Aug-21 9:22am View    
I have updated it
Mr.Kcoder 1-Aug-21 9:05am View    
Deleted
<title>Feedback

body{
font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
align-items: center;
justify-content: center;
background-image: url(back.png);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
#input{
padding: 2px;
font-style: Calibri;
border: 2px solid black;
border-radius: 2px;
transition: 0.3s ease;
}
#input:focus{
color: white;
background: rgba(0,0,50.2, 0.5);
}

.form{
margin: auto;
align-items: center;
justify-content: center;
max-width: max-content;
padding: 2% 4%;
background-color: white;
border-radius: 30px;
box-shadow: -15px -15px 15px rgba(225, 225, 225, 0.2),
15px 15px 15px rgba(0,0,0,0.1),
-10px -50px 50px rgba(0, 0, 0, 0.2),
50px 50px 50px rgba(0,0,0,0.1);
margin-top:4%;
animation: top 1s;

}
input[type=Submit], input[type=Reset]{
padding: 9px 12px;
color: white;
background-color: navy;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s ease;
font-family: comic sans MS;
font-weight: bold;
}
input[type=Submit]:hover, input[type=Reset]:hover{
background-color: #047acf;
}
@keyframes top{
from{
opacity: 0;
margin-top: -10%;
}
to{
opacity: 1;
margin-top: 4%;
}
}





Please provide the following information




Enter your name:*
Address:*
City:*

Mobile:*



How much would you rate this website?*


Excellent

Good

Average

Bad

Very bad


Comments:*






<audio autoplay="" id="aud">



window.onload = ()=>{document.querySelector('#aud').play();}
Mr.Kcoder 1-Aug-21 8:57am View    
The javascript code is given in the "What I have tried" section. It is the only JS code.