Introduction to Internet Report- - creating a website

Authors Avatar

CC1003N   2010/11 Sem 2

CC1003N Coursework Report

Name: Gediminas Tamenas                

Student ID: 1102495                

Website Name: SideWays        

Website URL:          

Contents

Web Site Proposal        

Screen Dumps        

Source Code of Home Page        

Explanation of CSS        

Explanation of JavaScript        


Web Site Proposal

(5 marks)                                                Date: ……………

Title of Web Site

SideWays

Purpose and Audience for Web Site

The audience of the web site is everyone who is interested in drifting and cars, who’s passion is speed, big engines and hundreds of horse power under the bonnet, burning tires and crazy people.

The purpose of the web site is that people can share they experience about drifting and cars, how to make any modifications, what to do and some points. Also we do have a section with events, so people can come and see or even go around the track with their own car. After every event we post pictures/videos on the web site, just to remember how awesome the event was!

What Web Pages Will You Need


Screen Dumps

Only 2 dumps per A4 page. In case of > 5 web pages, choose the important ones only (5 marks).

index.html

sidew.html


videos.html

events.html


contact.html

references.html

In every page on the bottom you can find small link called References


Source Code of Home Page

The home page (index.html) should be internally commented using HTML comment TAGS (5 marks).
All comments are in green, this way user can find them easily.

DO NOT TRY TO COPY THIS CODE TO HTML FILE IT WONT WORK! BECOUSE OF THE COMMENTS THAT I MADE IN WORD DOCUMENT! USE FILES FROM ZIP FOLDER. 

<!--Beginning of web site-->

<head>

<!--Web page Title-->

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>SideWays Home</title>

<!--CSS Code Name-->

<style type="text/css">@import"style.css";</style>

<!--[if IE]><style type="text/css">@import"ie.css";</style><![endif]-->

</head>

<!--Java Script-->

<body>

<div id="container" class="clearfix">

<!--Java Script for the Time on Header 1 "H1" can be find in CSS code-->

<h1>

  <script type="text/javascript">

function startTime()

{

var today=new Date();

Join now!

var h=today.getHours();

var m=today.getMinutes();

var s=today.getSeconds();

// add a zero in front of numbers<10

m=checkTime(m);

s=checkTime(s);

document.getElementById('txt').innerHTML="SideWays "+h+":"+m+":"+s;

t=setTimeout('startTime()',500);

}

function checkTime(i)

{

if (i<10)

  {

  i="0" + i;

  }

return i;

}

</script>

<!--End of Java Script-->

<!--CSS Code Name-->

<body onload="startTime()">

<div id="txt"></div>

</h1>

<!--Header Image-->

<img src="images/sideways.jpg" alt="" width="801" height="144" />

<ul id="navigation">

<!--Links to next page-->

<li><a href="index.html" title="?">Home</a></li>

<li><a href="sidew.html" title="?">SideW News </a></li>

<li><a href="" title="?">Videos</a></li>

<li><a href="" title="?">Events</a></li>

<li><a href="" title="?">Contact</a></li>

</ul>

<!--Header 3 "H3" can be find in CSS code-->

<blockquote id="quotes" cite=""><h3></h3>

<p> Great slide, more fun!</p>

 

</blockquote>

<!--Here where I keep my news. ...

This is a preview of the whole essay