Proud!

Hold your horses! I have created yet another webpage!

This time it’s actually gonna be used for something. Yeah, you guessed right, HYPERTEXT ESSAY! woooh..
Check it out, I made it all by myself! (I got some help from Rosa of course)
It’s loading a bit slow, but if you let it finish loading before you look I’m sure you’ll be impressed. (haha)

It took aaages to figure out to make that stupid cloud move the way we wanted to, cause when it goes behind the transparent text box you can’t click it. Not that it matters at the moment, it doesn’t link to anywhere yet, but when the page about “professional blogging” is ready it will :)

COOL HUH?

 

Share

HTML practice

More messing around with HTML.. I though that I would try to use HTML to create a blogpost insted of providing examples of how to do it, so lets see how far we can go with this

And yes, I am aware that this is vey basic stuff, but I felt like I needed the practice..
So far so good
I figured that this post must have some interesting content and not just different HTML stuff.. So I decided to make a list over things that I have done lately, and which of them i liked/disliked.

LIKE DISLIKE
Gone to Parklife Seen Graped of Wrath Ordered tickets home
Got two bad marks My legs hurt Had cheap/bad food for three months

Gaaah! I couldn’t figure out how to put those to on the third row under the LIKE and DISLIKE..

LIKE DISLIKE
Gone to Parklife Got two bad marks
Ordered tickets home Had cheap/bad food for three months
Seen Graped of Wrath My legs hurt
Awesome friends Been moody for no reason

HURRAY!

So that took a while to figure out, but I got it. For every table row you can fit in two columns (unless you choose to use more) and the first one goes to the left and the second to the right.

Did I do good?

YES

NO

Whatever you might think, here’s some commercial for myself. Look! My blog within my blog!

That’s some serious inception shit right there..

Hmm.. with the help of w3schools I managed to get this far.. It seems like the blog isn’t capable of dealing with more advanced HTML (correct me if I’m wrong), so I might just end it here.
Thank you so much w3schools!W3Schools.com

EDIT

Just realised that my blog within a blog doesn’t show :( It did when I previewed it, here’s proof!

Share

HypertXXX

Remember I talked about using the slicing tool in Photoshop as the method for linking the different images on our webpage? That didn’t happen. But I’m not whining, at least I know that it can be an option.

Instead we decided to create a map image code, which means finding the location of the image we want to link from within the full image (I think this sentence is a product of my poor english and my lack of html language, but bear with me). We did this in Photoshop by opening the Information button on the left hand side, then holdind the arrow over the image to find the x and y properties. When it comes to the code used in the image map we had to provide the x and y properties plus the size of the image (I use image here for the piece within the main image that we are going to link from).

This is the code for it:

<img src=”imagemap.gif” usemap=”#mymap” width=”your width” height=”your height” alt=”your description” border=”0″

<map name=”mymap”>
<area shape=”rect” coords=”0,0,50,50” href=”frames.shtml” alt=”frames”>
<area shape=”rect” coords=”50,0,100,50” href=”tables.shtml” alt=”tables”>
<area shape=”rect” coords=”100,0,150,50” href=”postcards.shtml” alt=”postcards”>
<area shape=”rect” coords=”0,50,50,100” href=”index.shtml” alt=”index”>
<area shape=”rect” coords=”50,50,100,100” href=”javascript.shtml” alt=”javascript”>
<area shape=”rect” coords=”100,50,150,100” href=”css.shtml” alt=”css”>
</map>

Rosa, who is the proud owner of Adobe Flash, have been playing around and has made an AMAZING cloudbook. From her blog:

“What each bubble was linking to was a cloud book – this was managed by making a flipping book animation flash file, made in InDesign, exported to flash, then finding a code to embed the flash file within the website. That was easy enough, then it was just positioning with <DIV STYLE=”position: absolute; top:__px; left:__px;”> tag to put it infront of the cloud made in photoshop and putting it in the <body> of the html file.

Oh, and I’ve been sneaking around to get inspiration from other students blogs. Cinzia Sammassimo had a couple of links to very helpful youtube videos, and I decided to save them here so I can revisit them if I need them.

http://www.youtube.com/watch?v=k6U-i4gXkLM

http://www.youtube.com/watch?v=Pij6J0HsYFA&feature=channel

http://www.youtube.com/watch?v=X6ilT3uUOBo&feature=channel

http://www.youtube.com/watch?v=SXR9CDof7qw&feature=channel

Share

So my career as a nerd continues..

Just got started on HTML, and created what is going to become my webpage. It’s pretty basic stuff, but my head refuses to cooperate, so I’m putting all my faith in the readings I’m going to go through over the weekend. I feel like I’m far behind just from staying home from one tutorial.
ANYWAYS!

I’ve linked it to here

And just to show how complicated this was, check out how the HTML version of it looks like.

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html>
<head>
<b><title>I wish I had a life</title></b>
</head>
<br>
<body>
<p><h1>I wish I had a life</h1></p>
<p>Clearly I don’t</p>
<p>I <em>do</em> on the other hand have a <strong>cold</strong></p>
</br>
<p><h2>So this is my first website</h2></p>
<p><h3>I know, it’s pretty sweet</h3></p>
<p><h4><em>Guess I’ll just keep putting in random stuff</em></h4></p>
<p><h5>HAH, almost thought HTML was fucking with me, but turns out I forgot to put in a / at the end.</h5></p>
<p><h6>Silly me</h6></p>
<p> P makes a paragraph, Br makes a break, and Div divides (a bigger break) </p>
<br><i>Italics</i> can be created by < I >, and <b>Bold</b> is made by < B ></br>
</body></html>

Screen shot 2011-08-04 at 1.20.11 PM

Dont try to copy it, this is MY blog. Alright I’ll be back in a few hours, I’m going to heckle the teacher and get him to put me on the right track.

Share