Postingan

Menampilkan postingan dari Desember, 2022

jQuerry

  <! DOCTYPE html > < html > < head > < script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js" ></ script > < script > $ ( document ). ready ( function (){   $ ( "p" ). click ( function (){     $ ( this ). hide ();   }); }); </ script > </ head > < body > < p > If you click on me, I will disappear. </ p > < p > Click me away! </ p > < p > Click me too! </ p > </ body > </ html >

Bootstrap

 <!DOCTYPE html> <html lang="en"> <head>   <title>Bootstrap Example</title>   <meta charset="utf-8">   <meta name="viewport" content="width=device-width, initial-scale=1">   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> </head> <body> <div class="jumbotron text-center">   <h1>My First Bootstrap Page</h1>   <p>Resize this responsive page to see the effect!</p>  </div>    <div class="container">   <div class="row">     <div class="col-sm-4">       <h3>Column 1</h3>       <p>Lorem i...