Tuesday, December 18, 2018

Medical store management system with visualization of data (using visual C#.NET and MYSQL)

Send your query regarding this project through email...

How to make a simple picture gallery using lightbox library in web?

HTML code <!DOCTYPE html> <html> <head> <title>PicGallery</title> <link rel="stylesheet" type="text/css" href="css/picgallery.css"> <link rel="stylesheet" type="text/css" href="css/lightbox.min.css"> <script type="text/javascript" src="js/lightbox-plus-jquery.min.js"></script> </head> <body> ...

Friday, December 7, 2018

Design simple yet attractive log in form using HTML and CSS.

HTML code <!DOCTYPE html> <html> <head> <title>Feedback form</title> <link rel="stylesheet" type="text/css" href="css/feedbackform.css"> </head> <body> <h3>Send your feedback...</h3> <div class=blurform> <div class="form1"> <form action="" method="get"> <br><br><label...

Design Home page of facebook using HTML and CSS.

HTML code: <!DOCTYPE html> <html> <head> <title>facebook</title> <link rel="stylesheet" type="text/css" href="css/facebook.css"> </head> <body> <div class="topbar"> <div class="facebookfont"> <p>facebook</p> </div> <div class="email"> <form action="" method="get"> ...

Draw the pattern.

Program code (in c++) #include<iostream> using namespace std; int main() {     int a[10]={0,1,2,3,4,5,6,7,8,9};     for(int i=1;i<=5;i++)     {         for(int p=1;p<=5-i;p++)         {             cout<<" ";         }  ...

Find smallest positive integer in an array.

Write a function: function solution(A); that, given an array A of N integers, returns the smallest positive integer (greater than 0) that does not occur in A. For example, given A = [1, 3, 6, 4, 1, 2], the function should return 5. Given A = [1, 2, 3], the function should return 4. Given A = [−1, −3], the function should return...