Style Switcher

Template Style

Dropdown Menu Style

Header Style

Footer Style

Codes

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Provident explicabo pariatur amet reprehenderit tempora sint laborum maxime, illo tenetur porro nobis vitae vero velit saepe distinctio sit aliquam quibusdam architecto.

Code Viewer HTML

                                    <span>
                                        I'm a span element. I hope I've been escaped properly... as otherwise I will be :-( and the browser will be :-O
                                    </span>
                                

Code Viewer CSS

                                        body {
                                            background-color: #fff;
                                            font-family: 'Raleway', sans-serif;
                                            line-height: 26px;
                                            font-weight: 400;
                                            font-size: 14px;
                                            color: #777;
                                        }
                                    

Code Viewer JavaScript

                                        $(function(){
                                            "use strict";

                                            //Elements Appear from top
                                            $('.item_top').each(function () {
                                                $(this).appear(function () {
                                                    $(this).delay(400).animate({
                                                        opacity: 1,
                                                        top: "0px"
                                                    }, 1000);
                                                });
                                            });

                                        });
                                    

Code Viewer PHP

                                        if (!isset($page_title)) $page_title="PHP code and online MySQL database - example username password";
                                        if (!isset($page_keywords)) $page_keywords="free PHP code, mysql sql";
                                        if (!isset($page_desc)) $page_desc="FREE example PHP code and a MySQL database";
                                    
top