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://porta...
Posts
Showing posts from March, 2021
- Get link
- X
- Other Apps
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='...
- Get link
- X
- Other Apps
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>