Posts

Showing posts from May, 2022

Personal dev. selfconfidence picture

Image
  This is my self confidence picture  Feb 24 2020 that's the day when I become so free in my life all the problems disappear every time I sing on stage, all the pain disappears all the trauma disappears every time I perform in front of people. music and art are the only sources of my strength.

Javascript activity midterm

Image
  html> <head>Javascript Events</head> </br> <body id="bodybg" onload="window.alert('Page successfully loaded');"> <script> <!-- n=Math.floor(Math.random()*10); document.write("The page is loaded successfully" +n); switch(Number(n)) { case 1:document.body.style.background="pink"; break; case 2:document.body.style.background="red"; break; case 3:document.body.style.background="maroon"; break; case 4:document.body.style.background="brown"; break; case 5:document.body.style.background="yellow"; break; case 6:document.body.style.background="orange"; break; case 7:document.body.style.background="green"; break; case 8:document.body.style.background="blue"; break; case 9:document.body.style.background="gray"; break; default:document.body.style.background="aqua"; break; } //--> </script> ...

Java script midterm

Image
  <!DOCTYPE html> <html> <head> <title>JavaScript Selected Value</title> <style> //format and styles div { margin-bottom: 10px; } label { display: inline-block; width: 200px; } fieldset { width:30%; background: #e1eff2; } legend { padding: 20px 0; font-size: 20px; } p{ display: inline-block; width: 1000px; } .btn { color:white; display: block; width: 40%; border: none; background-color:blue; padding: 14px 28px; font-size: 16px; cursor: pointer; text-align: center; } select { width: 150px; } option { width: 150px; } </style> </head> <body> <div id="container"> <form> <fieldset> <label for="name"style="color:white">Add Products :</label> <br> ...