Posts

Showing posts from November, 2021

9- DROP DOWN MENU LIST

Image
  <head> <title>DropDown List</title> </head> <body> <h4>Seven Wonders of the world</h4> <form> <select name = "dropdown"> <option value = "taj" selected>Taj Mahal</option> <option value = "china">Great Wall of China</option> <option value = "chirst" required>Christ the Redeemer Satue</option> <option value = "machu" disabled>Machu Picchu</option> <option value = "chichen">Chichen Itza</option> <option value = "colossem">The Roman Colosseum</option> <option value = "petra">Petra</option> </select> </form> </body> file:///C:/Users/noy2/Documents/nunoy.html

ACTIVITY 2.1 USING RBGA COLOR VALUES

Image
 <!DOCTYPE html> <html>     <head>         <title>rgba property</title>         <style>             h1 {                 color: green;             }             h1, h2 {                 text-align: center;             }             div {                 background: rgb(0, 151, 19);                 padding: 10px;                 text-align:justify;              }                    div.first {                 /*setting alpha = 0.1*/...