Posts

Showing posts from November, 2021

3 Forcasting using Excel Forcast Sheet - Review

  Review                    The video itself is informative it teaches the audience to learn to create a forecast using excel but I noticed that the audio has a noise background which is the most common problem that we encounter every time that we record audio but since we are in the modern world there is a lot of software that we can use to reduce the noise background and also the volume of the narration should be maximized since it's not that hearable even that my volume is already maximum and I think it's also better if the video has a music background.                  When it comes to the video some of the details are small which is not readble to the some viewers especially to someone who are using a cellphone since the screen is small and it's important that the viewers can see the details on the video so it's more easier for them to understand and apply it. I also want ...

Web Programming: Drop down Menu

 

Web Programming:Activity 6

 

Web Programming:Activity 5

Image
  HTML CODE: <DOCTYPE html> <html> <head> <link rel="stylesheet" href="backgroundcode.css"> </head> <body> <style> body {background-color: black;}     h1 {color: white;}     p  {color: white;} </style> <center> <h1>Transparent Box</h1> </center> <center> <p>With opacity:</p> </center> <div class="row"> <div class="column" style"opacity:0.1;"> <h1>10% opacity</h1> </div> <div class="column" style="opacity:0.3;"> <h1>30% opacity</h1> </div> </div> <div style="opacity:0.6;"> <h1>60% opacity</h1> </div> <div> <h1>opacity</h1> </div> <center> <p>With RGBA color values:</p> </center> <div class="first"> <h1>10% opacity</h1> </div> <div class...