Sunday, March 20, 2011

Here is a link to my Website that I have created for David Bowie as my last assignment David Bowie I validated all the pages, So I have no errors at all.
I'm really happy with the design I did.

Monday, March 14, 2011

Results of the placement

really good results came back from Honda,
received the Observation Sheet for Working and Professional Practice after the finished it at Honda and emailed it to the college.

Sunday, February 6, 2011

Finished my placement
  A week placement at Honda UK Manufacturer (HUM), was an excellent week. I didn't expect that I'll have that responsibility of creating the policy and procedure to develop the overall strategy for (HUM) to dispose all the computer hardware. The policy they already have wasn't clear enough, and the management team put comments on each point of the old policy, so I started to read all these points just to get an idea about there current policy, but that was on the third day.
On my first day I had a half day induction with Nick Mackey from the HR Department, he was showing me my locker and my uniform which I have to wear each day. then he give me a card that i can top it up with some money to buy coffee from the coffee machine, and then an hour presentation about HUM and the health and safety information, then we went to the production line to show me how they built the car from the beginning until it's ready for the customer. I would like to show you this video but trust me if you watch it live in the production line it's much much better. Part 1, Part 2 .

Thursday, January 13, 2011

Formatting My laptop at midnight

I had to format my laptop after attacked by virus, started formatting at midnight and will finish just before 3am. lost most of my programmes NetBeans and XAMPP and from my files MySQL files, PHP files and saved as much as I can from the JAVA,.Not so happy but will try to get all what I lost back,...

Wednesday, January 5, 2011

My charity website

didn't get to validate my website was about 80 errors then I started to fix it and now I have 15 errors but I don't know how to fix them. check out my charity website click here.

Monday, January 3, 2011

Finished

Finished my work on my blog and the report 1000 words , and all i have to do is some little work on my website then it's ready.

Wednesday, December 29, 2010

Tuesday, December 28, 2010

Worked on my website and waiting for my 46" 3d TV

Did some nice work on my website and very happy with what I did hope it's all good for my assignment, then went to buy 3D 46" tv cost a lot but really nice, and now time to go to work.

Monday, December 20, 2010

Some links to my exercises

These are the fruits of my labour. All my hard work over the past 6 weeks. Please, check them out. I am very impressed with myself. Goooo Ish! Why don't you check them out yourself and GIVE ME SOME FEEDBACK people!

Move the mouse over the pictures see what will happen.
move the mouse over to change the person shown.
calculator

XMAS and Snowman
Alert box
try the loop.

Monday, December 13, 2010

Everything going well

Had lots of Java, and HTML and almost half way to finish my charity website,...
but will need to stop now, that is enough for today.

Tuesday, December 7, 2010

Loops
Often when you write code, you want the same block of code to run over and over again in a row.


In JavaScript, there are two different kind of loops:


while - loops through a block of code while a specified condition is true

for - loops through a block of code a specified number of times


The while Loop

The while loop loops through a block of code while a specified condition is true.


Example of while loop:-

<script type="text/javascript">
var i=0;
while (i<=5) { document.write("The number is " + i);
document.write("<br />");
i++;
}

</script>

Explanation:

i is equal to 0.

While i is less than , or equal to, 5, the loop will continue to run.

i will increase by 1 each time the loop runs.

try the loop.

Thursday, December 2, 2010

The If Statement




if statement
use this statement to execute some code only if a specified condition is true


if...else statement
use this statement to execute some code if the condition is true and another code if the condition is false


if...else if....else statement
use this statement to select one of many blocks of code to be executed

switch statement
use this statement to select one of many blocks of code to be executed

Using the If Statement

Try this in your page


<script type="text/javascript">
var d = new Date()
var time = d.getHours()
if (time<10)>Good morning");
}
else if (time>10 && time<16)>Good day");
}
else
{
document.write("Hello World!");
}
</script>


Prompt Box

<html>
<head>
<script type="text/javascript">
function show_prompt()
{
var name=window.prompt("Please enter your name","Harry Potter");
if (name!=null && name!="")
{
document.write("Hello " + name + "! How are you today?");
} }
</script>
</head>
<body>
<input type="button" onclick="show_prompt()" value="Show prompt box" />
</body>
</html>

Check the prompt box on top of the page on the right.


Sunday, November 28, 2010

Exercise 1:







exercise 1.Write the following web page:

<html>
<head> <title>Javascript</title> </head>
<body>
<p>
The following text is written to the page by Javascript.
</p>
<script type="text/javascript">
document.write("<center> <h1> Hi! </h1></center>")
</script>
</body>
</html>

The above script demonstrates the basic object.method (object-dot-method) paradigm.

  • The ‘document’ object (the web page) has a 'write' method associated with it.
  • The 'write' method acts on an ‘argument’ (a techie word for the target of a method).
  • The ‘argument’ is placed in () brackets after the method.



  • Saturday, November 27, 2010


    I managed to write HTML tags as TEXT and here it is.


    HTML Basic Document


    <html>
    <head>
    <title>Title of document goes here</title>
    </head>
    <body>
    Visible text goes here...
    </body>
    </html>


    Heading Elements


    <h1>

    Largest Heading

    </h1>


    <h2> . . . </h2>
    <h3> . . . </h3>
    <h4> . . . </h4>
    <h5> . . . </h5>

    <h6>

    Smallest Heading
    </h6>




    Text Elements


    <p>This is a paragraph</p>
    <br /> (line break)
    <hr /> (horizontal rule)
    <pre>This text is preformatted</pre>


    Logical Styles


    <em>This text is emphasized</em>
    <strong>This text is strong</strong>
    <code>This is some computer code</code>


    Physical Styles


    <b>This text is bold</b>
    <i>This text is italic</i>


    Links

    Ordinary link:
    <a href="http://www.example.com/">Link-text goes here</a>
    Image-link:
    <a href="http://www.example.com/"><img src="URL"
    alt="Alternate Text" /></a>
    Mailto link:
    <a href="mailto:webmaster@example.com">Send e-mail</a>
    A named anchor:
    <a name="tips">Tips Section</a>
    <a href="#tips">Jump to the Tips Section</a>


    Unordered list


    <ul>
    <li>Item</li>
    <li>Item</li>
    </ul>


    Ordered list


    <ol>
    <li>First item</li>
    <li>Second item</li>
    </ol>


    Definition list


    <dl>
    <dt>First term</dt>
    <dd>Definition</dd>
    <dt>Next term</dt>
    <dd>Definition</dd>
    </dl>


    Tables


    <table border="1">
    <tr>
    <th>Tableheader</th>
    </tr>
    <td>sometext</td>
    </tr>
    </table>


    Frames


    <frameset cols="25%,75%">
      <frame src="page1.htm" />
      <frame src="page2.htm" />
    </frameset>


    Forms


    <form action="http://www.example.com/test.asp" method="post/get">
    <input type="text" name="email"
    size="40" maxlength="50"/>
    <input type="password" />
    <input type="checkbox" checked="checked" />
    <input type="radio" checked="checked" />
    <input type="submit" value="Send" />
    <input type="reset" />
    <input type="hidden" />
    <select>
    <option>Apples</option>
    <option selected="selected">Bananas</option>
    <option>Cherries</option>
    </select>
    <textarea name="comment" rows="60"
    cols="20"></textarea>
    </form>


    Entities


    &lt; is the same as <
    &gt; is the same as >
    &#169; is the same as ©


    Other Elements


    <!-- This is a comment -->


    Validate Your HTML Files


    To validate an HTML document, a doctype declaration must be added.
    The doctype declaration is not an HTML tag; it is an instruction to the web
    browser about what version of the markup language the page is written in.
    The doctype declaration refers to a Document Type Definition (DTD). The DTD
    specifies the rules for the markup language, so that the browsers can render the
    content correctly.
    The doctype declaration should be the very first thing in an HTML document,
    before the <html> tag.

    HTML 4.01 Strict


    This DTD contains all HTML elements and attributes, but does NOT INCLUDE
    presentational or deprecated elements (like font). Framesets are not allowed:


    <!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">


    HTML 4.01 Transitional


    This DTD contains all HTML elements and attributes, INCLUDING presentational
    and deprecated elements (like font). Framesets are not allowed:
    <!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">


    HTML 4.01 Frameset


    This DTD is equal to HTML 4.01 Transitional, but allows the use of frameset
    content:
    <!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">


    More information about HTML codes at WWW.W3schools.com


    Additional reading (Web Design Nutshell, Second Edition- by Jennifer Niederst)
    It had a very useful chapter on formatting text as well as HTML tags.




    Thursday, October 1, 2009

    want to design Incredibly useful blog, still thinking about it


    Time is too short


    Since I started to get ready for my study at UWE , I decided to organize my time as much as I can, hopefully it will work out some how?!! Getting the degree will take two years and the bad part is that I'm working in a full time job, But I’m super excited to start fresh!....