Skip to main content

Posts

Showing posts with the label Web Designing

Featured Post

Product Design of a 4 wheel differential drive robot

www.ieeegecskp.in

  After a weeks hard work www.ieeegecskp.in is now up and running.This site was designed for the IEEE Student Branch wing of my college (Govt. Eng College Sreekrishnapuram). This site was created using HTML 5 standard and used CSS 2 for designing. Jquery is used for simple animations. All rights reserved for the content and code used for making this website. This site deals with dynamic data and used MySQL database. Browser support were tested and this site works perfectly in Chrome, Firefox, Opera and Internet Explorer. No browser dependent functions are necessary for proper working of this site. Source code will be posted on githhub soon.

Authentication of username and password using PHP(MySQL)

  For sites that need login facilities, entered username and password should be checked with the database to verify the username. Here is an example for doing this. Form.html has a form to enter login and password details. When clicking the submit button it will pass the login username and password to auth.php. Codes needed for both files are given below. Form.html 1: < form action = 'http://auth.php' method = 'post' name = 'form1' class = 'loginbg' id = 'form1' > 2: < p align = 'left' > UserName 3: < input name = 'username' type = 'text' size = '10' /> 4: </ p > 5: < p align = 'left' > Password 6: < input name = 'password' type = 'password' size = '10' /> 7: </ p > 8: < p align = "center" > 9: < input name = 'Login' type = "submit" class = ...

Sastra Systems

  This is my second work. Our seniors have started a new company, Sastra Systems. Have designed this site for them. They started the company at kochi with the help of startup village project at kalamassery. They became the one of the top 5 promising companies started at Startup Village.The site is not hosted yet. Good luck for them….(Aronin P,Akhil Aleppy) …

www.inventogecskp.com

  This is my first work along with my colleagues. This site was for our college tech-fest, invento. Web Designers: Muhammad Salah P. | Lijina P. | Anantha Krishnan U.S. | Muhammed Niyas Pavil | Arjun R. | Shefna K.S. | Rosni K.V. | Sahya N.S. | Panchami K.S. | Amitha Girish N. | Namitha T.M.

HTML | Where to begin?

  After you have a basic idea about the HTML language and how to test it, you can move towards simple tags for adding images, tables, frames etc. The best place to start learning is from www.w3schools.com . It is the best online site where you can learn Web languages.. It is very easy to follow and have option to test your html tags. The site is specifically for all web development. You will find all the tags listed there for reference. Start with simple tags like adding image files,hyper links,and then to tables to frames. Here is a simple example covering some basic tags 1: < html > 2: < title > Eionix Media </ title > 3: < head > </ head > 4: < body > 5: 6: < center > < h1 > This is a heading </ h1 > </ center > 7: 8: </ br > 9: 10: < center > < img src = "http://www.google.com/images/srpr/logo3w.png" /> </ center > 11: 12: < ...

A Basics to HTML

HTML stands for Hyper Text Mark-up Language. It is the backbone of any web page.. Backbone means it defines the the structure of a webpage and you guys can put things inside this structure. You can put simple texts, picture, java scripts,flash,videos,server side programming codes like PHP,ASP etc.. Let’s come to simple aspects… Every browser can view a webpage. It is build for that purpose. .. You can open up a text editor like note pad and write those simple codes and then save it as <name>.html. If you simple type some text and save it as a webpage, that text will be there if you open it in the browser. Tags: There are tags in a web page. You have to close each tag with a  ’ / ‘ . Basic Structure of a web page is shown below.. 1: < html > 2: < title > Web Page Title </ title > 3: 4: < body > 5: 6: Content of a web page.. 7: 8: </ body > 9: 10: </ html > An Example   1: < html > 2: < title > My ...