Web Page Video Background Using HTML and CSS

Submitted by GeePee on
This project will teach you on how to set video as a background on your web page using HTML and CSS. It is important that you have knowledge in CSS so you can arrange your text, input field or whatever you want to include in your page properly. We have many CSS tutorials in sourcecodester that you can check out. Hope you learn from this.

Email Subscription List in PHP/HTML

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple email subscription service - part 1 - allowing the user to enter their email address. HTML: Before we can process any information the user enters and then add it to our database of email subscription addresses, we need to take the information from the user - for this we need a simple HTML form.

Stacks Using C++ Part2

Submitted by moazkhan on

Stacks using c++ part2

In this tutorial, you will learn 1. When stacks should be implemented by arrays. 2. When stacks should be implemented by linked list. 3. Implementation of stacks using linked list. When should the stacks be implemented by linked list? In stacks, data is entered and removed from same end. So, there is no insertion and deletion from middle. As we learnt that while inserting data in the middle of an array, this creates a problem. Since in stacks, data is inserted and removed from one end only.

K-Means Project

Submitted by kdhanamjay on
PROJECT TITLE: K-Means Clustering PURPOSE OF PROJECT: Implement k-means clustering on a training data set to predict classification values of a test data set. AUTHORS: Dhanamjay VERSION or DATE: 1.0 14/08/2014 INSTRUCTIONS: 1) Compile both Java files (javac Data.java KMeansClustering.java) 2) Run KMeansClustering (java KMeansClustering) 3) After prompted, specify number of centroids to use. ------

CSS 3D

Submitted by waqasyaqoob on
You'll find six pre-built CSS classes that will apply the 3D effect in six different colors. You'll also find classes for five different font variations, served up via Google Fonts. To make it easier to add your own colors, I've added additional style sheets built with Sass and LESS. These use a mixin that only requires you to set a single color, from there the preprocessor takes care of the rest.

Hint in CSS

Submitted by waqasyaqoob on
This project will teach you on how to create a tooltip. I have here an example of where we can position tooltips. We can put it on the top, left, right, and in bottom. And also some notifications like system error, for information and warning. The "hint.css" is written as a pure CSS tooltip library which you can use to create cool tooltips for your site. Hope you will enjoy it

Thumbnails Shrink and Grow Effect in jQuery

Submitted by GeePee on
This project will teach you on how to zoom and shrink thumbnails in an easy way using the hover pulse jquery plugin. The thumbnails automatically magnifies on mouse hover. We can also customize the speed of animation and the size of thumbnails when it is hovered. In my example, each thumbnail is also linked to their corresponding page. Hope you learn from this.