Posts

Showing posts from January, 2020

ONE PAGE WEBSITE

<HTML> <!DOCTYPE html> <html>   <head>     <title>WebDesign</title>     <link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">     <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>     <script src="//code.jquery.com/jquery-1.11.1.min.js"></script>     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">   </head>   <body>     <div class="container">       <header>         <div class="main">           <div class="logo">             <img src="http://www.pngmart.com/files/10/PUBG-Logo-PNG-File.png">           </div>...

Bootstrap Table Design with JavaScript

Image
< div class = "fresh-table full-color-orange" > < div class = "toolbar" > < button id = "alertBtn" class = "btn btn-default" > Students Table </ button > </ div > < table id = "fresh-table" class = "table" > < thead > < th data-field = "name" > Student`s Name </ th > < th data-field = "father_name" > Father`s Name </ th > < th data-field = "class" > Class </ th > < th data-field = "section" > Section </ th > < th data-field = "address" > Address </ th > </ thead > < tbody > < % @ members.each do | member |%> < tr > < td > < %=member.name% > </ td > < td > < %=member.father_name% > </ td > < td ...