Posts

Showing posts from September, 2023

1=PROFILE PAGE

Image
 <!DOCTYPE html> <html> <head> <title>My Profile</title> <style> body {background-color: skyblue;} // styles applied to body tag h1 {color: blue;} // styles applied to h1 tag p {color: red;} // styles applied to p tag hr{ border: 10px solid red; } </style> </head> <body> <h1> Name : Matthew Christopher F. Tamon </h1> <h1>My favorite app for entertainment </h1> <hr> <ol> <li> Yotube <li> Facebook <li> Spotify <li> Clip Studio </lol> <h1>My favorite Songs </h1> <hr> <ol> <li> My Songs Know What You Did In The Dark by Fall Out Boy <li> Runaway Baby by Bruno Mars <li> Everything Goes On by Porter Robinson <li> "Song Of The Dead" by KANA-BOON <h1> About Me: </h1> <hr> <ol> <li> My Zodiac Sign is Taurus <li> My birth date is : March 23,2002 <li> I'm already 21 years old...

2-REGISTRATION FORM

Image
 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> * {   box-sizing: border-box; } .menu {   float: left;   width: 20%; } .menuitem {   padding: 8px;   margin-top: 7px;   border-bottom: 1px solid #f1f1f1; } .main {   float: left;   width: 60%;   padding: 0 20px;   overflow: hidden; } .right {   background-color: lightblue;   float: left;   width: 20%;   padding: 10px 15px;   margin-top: 7px; } @media only screen and (max-width:800px) {   /* For tablets: */   .main {     width: 80%;     padding: 0;   }   .right {     width: 100%;   } } @media only screen and (max-width:500px) {   /* For mobile phones: */   .menu, .main, .right {     width: 100%;   } } </style> </head> <body style="font-family:Verdana;"> <div style="backgro...