Posts

Showing posts from March, 2021
Image
 html EXERCISE NUMBER 1  PROFILE html   <!DOCTYPE html> <html> <head> <title>My Profile</title> <style> body {background-color: Skyblue;} // styles applied to body tag h1 {color: black;} // styles applied to h1 tag p {color: red;} // styles applied to p tag hr{ border: 10px solid red; } </style> </head> <body> <h1> Name : EMMANUEL B UBALDO </h1> <h1>My favorite Songs </h1> <hr> <ol> <li> 2002 by edge sheeran <li> centimeters by peggies <li> thru these tears lany <li> Gospel by panic at the disco <li> Meant it Lany and Lauv </lol> <h2>My favorite Subjects </h2> <ul> <li> Web programming <li> 3D modelling  <li> Drawing </ul> <h1> Links to your portfolio </h1> <p> <a href="https://www.instagram.com/emmonztah/"> instagram </a> </p> <p><a href="https://portaitart.blo
Image
EXERCISE NUMBER 4 EVENT FINDER <!DOCTYPE html> <html>  <head>   <title><b>EVENT CALENDAR</b></title>     <style>format and styles     div{      Margin-bottom:10px       }       label{       Display:inline-block;       width:200px;       }       fieldset{        background:lightblue;       }       legend{        padding:20px 0;        font-size:20px;       }      </style>     </head> <body> <h1>SEARCH A MONTH </h1> <h4><p>Please type in the Month (1-12); </p></h4> <fieldset> <label for="number">Month: </label> <input type="number" placeholder="Enter the number of Month" onfocus="this.placeholder=''" name="Month" id="number" ><br><br>  <button onclick="Display()" style="margin-left: 174px;" name="Display" id="display" value="
Image
  EXERCISE NUMBER 3  SCHOLARSHIP <!DOCTYPE html> <html>     <head>         <style>             div {                 margin-bottom: 10px;             }             label {                 display: inline-block;                 width: 120px;             }             fieldset {                 background: #CD5C5C;             }             legend {                 padding: 20px 0;                 font-size: 20px;             }         </style>         </head>     <body>         <p>Fulfill the details below:</p>         <fieldset>             <legend><b>SCHOLARSHIP APPLICATION RESULT</b></legend>             <div>                 <label>ENTER YOUR NAME</label>                 <input type="text" name="NAME:" id="fname" value=""/>             </div>             <div>                 <label>ENTER YOUR COURSE:</label>    
Image
 DATABASE AND VARIABLES TOPIC EXERCISE NUMBER 2  EQUIVALENT  the formula  the result
Image
  ASSIGNMENT IN WEB PROGRAMING  ASSIGNMENT IN WEB PROGRAMING  html> <head> <title>First Javascript Program place on the body </title> </head> <body> <script language = "javascript" type = "text/javascript"> <!-- use comment for browsers that does not support javascipt var name, course,address,talent,subject ; document.write("Hello World!") ; document.write("<br> welcome to Javascript Programming <" ); name=prompt("Enter your name") document.write("<br> Name : <b>" +name ); document.write("<br> Address: <b>" +address ); course=prompt("Enter your course") document.write("<br> Course <b>:" +course); document.write("<br> Address: <b>" +talent ); //--> </script> </body>