Program : <html> <head> <title> BIO-DATA </title> <body> <table border="1" width=...
Read More
Home / Archive for January 2018
How to create image link in html
Program : File name : Mainpage.html <html> <body> <a href="link2.html"> <img src="index.jpg...
Read More
How to refresh images in html
Program : <html> <head> <title> Image auto reload for every 5 seconds </title> <meta http-equiv=...
Read More
How to write cascading style sheets
Program 4 <html> <head><h1>UG COMPUTER SCIENCE</h1> <link rel="stylesheet" href="style2.css...
Read More
How to calculate age using html with php program
Program : <html> <body> <form action="welcome.php" method="post"> DOB: <input type="t...
Read More
How to create multiplication table using php
Program: <html> <body> <form id="form1" name="form1" method="post" action=""...
Read More
How to create authenticate a web page in html and PHP
Program : File name : Login.html <!DOCTYPE> <html> <head> <title>Login Page</title> </head>...
Read More
How to create session and cookies in php
Program : HTML Code <?php // Start the session session_start(); ?> <html> <head> <title>Employee In...
Read More
Example C Program for Arithmetic operators
Program : #include <stdio.h> #include <conio.h> void main() { int a,b,c; clrscr(); printf("\nEnter the value 1...
Read More
Scope of variables in C Program
Program : #include <stdio.h> #include <conio.h> int x=1; /* external variables */ static int count=0; int main() { in...
Read More
Special Character using in C Program
Program : #include <stdio.h> #include <conio.h> void main() { clrscr(); printf("Hello! C program"); prin...
Read More
Variable Declaration in C Program
Program : #include <stdio.h> #include <conio.h> // Variable declaration: int a, b; int main () { /* variable definit...
Read More
Your First C Program
Program : /* First C program: Hello World */ //include information about standard library and Console Library header files #include ...
Read More
How to create different login in C Program
Program : #include <stdio.h> #include <conio.h> #include <dos.h> #include <string.h> #include <process.h...
Read More
HTML List
Program : <html> <head> <title> HTML List </title> </head> <Body> Places <ol ty...
Read More
HTML Table
Program : <html> <head> <title> HTML Table </title> <style> th {background-color:red;color:whi...
Read More
HTML Images
Program: <html> <head><title> HTML Images </title></head> <Body> <center><img src=...
Read More
HTML Style CSS
Program : File name : HTMLStyleCSS.html <html> <head> <title> Style CSS </title> <link rel="s...
Read More
HTML Colors
Program : <html> <head><title> HTML Colors </title></head> <Body> <h1 style="border:2px...
Read More
HTML Comments
Program : <html> <head><title> HTML Comments</title></head> <Body> <!-- This information wil...
Read More
HTML Text Format
Program : <html> <head><title> HTML Text Format </title></head> <Body> <del>Welcome to Op...
Read More
HTML Style
Program : <html> <head><title> HTML Style </title></head> <Body style="background-color:red;...
Read More
HTML Paragraph
Program : <html> <head><title> HTML Paragraph</title></head> <Body> <p>This program is fr...
Read More
HTML Headings
Program : <html> <head><title> HTML Headings</title></head> <Body> <h1> HTML Heading 1...
Read More
HTML Elements
Program <html> <head><title> HTML Elements</title></head> <Body> <b>At its heart,</b...
Read More
Subscribe to:
Posts
(
Atom
)
PHP Registration form using GET, POST Methods with example
Program : HTML Code <html> <head> <title>Student Info</title> </head> <body><center> ...