Posts

Bootstrap loves Fontawesome!

<!DOCTYPE html> <html> <head> <title>Bootstrap</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style type="text/css"> img { min-height: 300px; max-height: 300px; width: 300px; padding-left: 10px; padding-right: 10px; } .footer { margin-top: 100px; } </style> </head> <body> <div class="container-fluid"> <div class="jumbotron text-center"> <h1>Welcome to My Website</h1> <p>My website consists of information on Web designing</p> <button class="btn btn-default btn-lg">Get Started</button> </div> <div class="row text-center"> <div...

Practical 5 (BSBC-205)

<!-- Write a JavaScript code to print your name with each letter in different size and color. --> <!DOCTYPE html> <html> <head> <title>Fourth JavaScript</title> <style> p { text-align: center; } </style> </head> <body id="body"> <p id="hello"></p> <script> function rand() { var hello = document.getElementById("hello"); hello.innerHTML = ""; var name = "Ajay Bhatia"; for (var i = 0; i < name.length; i++) { var tag = '<span id="s' + (i+1) + '">' + name.charAt(i) + '</span>'; hello.innerHTML += tag; var span = document.getElementById("s" + (i+1)); var size = Math.ceil(Math.random() * 12); span.style.fontSize = size + "em"; var r = Math.ceil(Math.random() * 255); var g = Math.ceil(Math.random() * 255); va...

TLEP BSBC 205 (Batch 2016-2019)

TLEP BSBC 205 for Batch 2016-2019 can be found here

TLEP MBA 986 (Batch 2015-2017)

TLEP MBA 986 for Batch 2015-2017 can be found here

TLEP BSBC 401 (Batch 2015-2018)

TLEP BSBC 401 for Batch 2015-2018 can be found here

Software Engineering Book

A Software Engineering book which is simple yet elegant. Download from here .

Normalization

https://www.youtube.com/shared?ci=zzVPxo7wV-s