Posts

Showing posts from July, 2023

Script link comment marquee

  <!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <meta name ="description" content ="Free Web tutorials" > <meta name ="keywords" content ="HTML, CSS, JavaScript" > <meta name ="author" content ="John Doe" > <meta name ="viewport" content ="width=device-width, initial-scale=1.0" <title> Title </title> <link href ="test.css" rel ="stylesheet" > </head> <body> <div> <marquee><h1> Computer </h1></marquee> </div> <div> <marquee direction ="right" ><h1> Computer </h1></marquee> </div> <!--------Marquee Table------------------> <table width ="100%" > <tr> <td><div > <marquee direction ="up" scrollam...

Nav Select/Option Meta

  <!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <meta name ="description" content ="Free Web tutorials" > <meta name ="keywords" content ="HTML, CSS, JavaScript" > <meta name ="author" content ="John Doe" > <meta name ="viewport" content ="width=device-width, initial-scale=1.0" > <title> Title </title> </head> <body> <nav> <a href ="#menu1" > Menu1 </a> <a href ="#menu2" > Menu1 </a> <a href ="#menu3" > Menu1 </a> <a href ="#menu4" > Menu1 </a> </nav> <select > <option value ="Item1" > ----Select Option------ </option> <option value ="Tem1" > Item1 </option> <option> Item1 </option> ...

Image MAP

  <!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <title> Title </title> </head> <body> <h1> iframe Test </h1> <iframe src ="Page/mouse.html" ></iframe> <img src ="img/1.jpg" alt ="Dell Computer" usemap ="#imgMap" > <map name ="imgMap" > <area shape ="rect" coords ="215,19,941,436" alt ="Monitors" href ="Page/monitor.html" > <area shape ="poly" coords ="978,677,946,655,944,605,1066,602,1084,693" alt ="mouse" href ="Page/mouse.html" > </map> </body> </html>

Table

  <!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <title> Title </title> </head> <body> <table border ="2" bgcolor ="yellow" width ="500" > <tr align ="center" > <th> Sr.No </th> <th> Name </th> <th> Class </th> </tr> <tr align ="center" > <td> 1001 </td> <td> Sabir </td> <td> BCA </td> </tr> <tr align ="center" > <td> 1002 </td> <td> prem </td> <td> BCA </td> </tr> <tr align ="center" > <td> 1003 </td> <td> Tejas </td> <td> BCA </td> </tr> </table> <table border ="2" bgcolor ="r...

anchor Tag

  <!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <title> Title </title> <style> div { height : 700 px ; } </style> </head> <body> <a href ="index2.html" target ="_blank" > Click </a> <a href ="index2.html" target ="_parent" > Click </a> <a href ="https://wa.me/331882000022" > 882000022 </a> <a href ="https://api.whatsapp.com/send?phone=882000022" > Send Message </a> <a href ="tel:0123456789" > add number </a> <a href ="#Home" > Home </a> <a href ="#About" > About </a> <a href ="#Contact" > Contactus </a> <div id ="Home" style =" background : red" > <h1> Home </h1> </div> <div id ="About" sty...

List

  <!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <title> Title </title> </head> <body> <ol start ="5" > <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> </ol> <ul> <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> <li> Item1 </li> </ul> </body> </html>

Strangerchat