Monday, May 20, 2013

]=!|\|4|_ |*®()_)£©'][': $|_||3&4]v[£

My final project for my Computer Programming class is a game in which you play as a sub and try to survive as long as possible by avoiding and destroying enemies and collecting power-ups. It can be found here.

|*®()|)|_|©'][' \x/£|3 |*46£

So, Here is one of my finished web sites that I made for my Webdesign class, we were assigned to make a website about a product we liked and I chose the Alienware M17x Gaming Laptop. The images are not mine, they are modified versions of the ones that were hosted at Alienware.com at the time.

Thursday, March 8, 2012

']['/-\|3€|_$

so, tables, tables are used in many websites.
they help organize .  To make a tale you would use the table tag <table> this is followed by the table row tag <tr> and the table data tag <td> .  To make a cell longer than normal you add the colspan attribute <td colspan="5"> and you can do the same thing to rows <td rowspan="3"> . Also every table has a default border which you can change the size of with the border tag <table border="0">

Friday, March 2, 2012

]=()|\|']['$

looks like i forgot to talk about fonts. To change the font of some text you use the <font> tag. the color size and font are decided by attributes like the color, and face attribues. example.

<font face="wintermute" color="#addcee">

your text here

</face>

][/v\ /-\6€$ \^/()()']['

so lately we learned about how to make images appear on the web, you do this by using the tag <img> and putting the src attribute inside it with a path to the file. for example

<img src="images/example/yourimage.png">

the only images that work are .jpg, .gif and .png and out of those i like .png the best because it supports transparency

Tuesday, February 21, 2012

web design, links -_-

So, today in my class,we learned how to make links in html using the anchor tag (<a></a>). It is really easy and useful all you have to do is put the text or graphic you want to be the hotspot of the link in between the opening and closing of the <a> tag and add the attribute href="urlofwebsite" inside of the <a> part

Wednesday, February 8, 2012

Web design blog post three

So today in Web Design we learned how to do alignments, change the widths, and change colors of certain parts of our web pages. To do this you use attributes. Attributes are words that go inside of the tags, for example: <body bgcolor="#000000" text="#000000"> <hr width="90%" align="right"> etc. That is what we learned today.