This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> | |
<title>jQuery.ScrollTo</title> | |
<meta name="keywords" content="javascript, jquery, plugins, scroll, scrollTo, smooth, animation, to, effect, ariel, flesler, window, overflow, element, navigation, customizable" /> | |
<meta name="description" content="Demo of jQuery.ScrollTo. A very light and highly customizable jQuery plugin, to scroll overflowed elements or the window itself, made by Ariel Flesler." /> | |
<meta name="robots" content="index,follow" /> | |
<link type="text/css" rel="stylesheet" href="css/style.css" /> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-color: blue; | |
color: white; | |
font-size: 72px; | |
font-weight: bold; | |
letter-spacing: -2px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$requestedstat = $_REQUEST["stat"]; | |
// Variable | |
$stat = "Average salary subjects in a September study offered a fictional woman applying for a U.S. university laboratory position: $26,508"; | |
$stats = Array( | |
"Average salary subjects in a September study offered a fictional woman applying for a U.S. university laboratory position: $26,508", | |
"Amount Massachusetts has been ordered to pay for the sex-reassignment surgery of an inmate serving life in prison : $23,000", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Setting a variable equal to a string | |
/* $color = "Blue"; */ | |
// Getting input from the user | |
$firstname = $_REQUEST["firstname"]; | |
$color = $_REQUEST["color"]; | |
$bgcolor = $_REQUEST["bgcolor"]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.z-contain { | |
width:600px; | |
height:600px; | |
background-color:#eee; | |
position:relative; | |
} | |
.pop { | |
position: absolute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.triangle { | |
border-bottom: none; | |
border-top: 400px solid blue; | |
border-right: 240px solid transparent; | |
border-left: 240px solid transparent; | |
width:0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.circle { | |
width: 300px; | |
height: 300px; | |
background-color: red; | |
border-radius: 150px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
width: 200px; | |
height: 350px; | |
background-color: yellow; | |
position: relative; | |
} | |
.shape { | |
width:100px; | |
height: 220px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.button { | |
display: block; | |
width: 250px; | |
height: 250px; | |
background-image: url('sprite.gif'); | |
background-repeat: no-repeat; | |
overflow:hidden; | |
text-indent:100%; | |
white-space: nowrap; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>Interaction</title> | |
</head> | |
<body> | |
<div id="content-wrapper"> | |
<div id="header"> |