CIS363 web interface design w/ lab weeks 2-6 ilabs
iLab6/cis363wk6iLab.jpg
iLab6/e.jpg
iLab6/library.js
/* Function NYEDays() Purpose: Calculate the number of days between New Year's and a given date Variables CheckDay: A date object containing the given date XYear: The 4-digit year value of the given date XDay: December 31 in the year of the given date DayCount: The number of days between New Year's Eve and the given date */ function NYEDays(CheckDay) { var XYear=CheckDay.getFullYear(); var XDay=new Date("December, 31, 2014"); XDay.setFullYear(XYear); var DayCount=(XDay-CheckDay)/(1000*60*60*24); DayCount=Math.round(DayCount); return DayCount; }
iLab6/newyearseve.gif
iLab6/nyeProblem.html
| The New Year's Event Agenda New Year's Eve Happy Hour New Year's Eve Concert New Year's Eve Party New Year's Day Brunch | ||
|
||
| Elegance Entertainment | 324 King Avenue | Atlanta, GA 30332 | (404) 555-2015 |
iLab6/styles.css
body {margin: 0px} p b {color:green} h3 {font-family: sans-serif; color:red; margin-bottom:-20px} #npn {background-color:white; width:100%} #contact {font-family: sans-serif; color:red; font-size:8pt; text-align:center; border-top: 2px solid rgb(128,0,0)} #daycell {text-align:center; background-color:gold; color:red; font-size:10pt; font-family: sans-serif; border-bottom: 2px solid rgb(128,0,0)} #links {background-color: rgb(128,0,0); width: 100px} #links a {color: gold; text-decoration:none; font-size:8pt; font-family: sans-serif; display: block; padding: 1px; border: 3px solid rgb(128,0,0); margin: 0px; width: 100%} #links a.newgroup {margin-top: 10px} #links a:hover {border: 3px outset white; color: white} #logo {text-align: center; border-bottom: 1px solid rgb(128,0,0)} #firstcol {width: 50%; border-right: 1px solid rgb(128,0,0)} #secondcol {width: 50%} .firstp:first-line {font-variant: small-caps}