Archive for the ‘Web Design’ Category

5 Inspiration for Typographies

Monday, February 22nd, 2010

Typography plays an important role in anything that has to do with media. With a proper choice of word font and design, it has a potential of grabbing a lot more people. Here are some great posters or banners that have good typographies.

Digitizing a Bespoke Font – This simple choice of color and a good arrangement of words make this design looks dashing.

Three-dimensional Type – This design looks very realistic. In fact, it may look like it was shot from a camera instead of being made digitally.

A-Typography – A single letter can create so many different words and this design by Guillhermes is very spectacular.

Flaming Meteor – What more can we say? Everyone is a fan of meteors and this text design looks very catchy as well.

Super Cool Frilly Bits – This typography uses a good combination of floral patterns and color.

10 Inspirational vCard Designs

Friday, February 12th, 2010

Inspired by Tim Van Damme, a vCard is an online business card that can be used by companies as well as individuals to give out their basic information. A lot of these vCards have only one page and it shows some of their information as well their social networking pages. Most of these vCards follows roughly the original design made by Tim Van Damme.

Tim Van Damme – This is where it all began. This vCard has a minimalistic design that looks rather simple yet attractive as well. All of the information needed about the author is given on the site.

Nouincolor – Nouincolor uses very little combination of colors and mostly in shades of gray but it didn’t stop making the site look attractive.

Maykel Loomans – This site offers a very basic introduction of the owner but it has a lot of social networking links that would accommodate with this lack of information.

Visuacademic – Like many other vCards, Visuacademic is very simple and has an attractive illustration as well.

Alibahsisoglu – This site takes the iPhone fever to a whole new level with its attractive usage of the iPhone as the base of the website.

Jan Van Lysebettens – The designer for this site has made a very good use of nature for its vCard purposes.

Micheal Betsch – The design for this vCard is rather humble and yet quite amusing in a way. It gives all the information that the owner wishes to give that makes it very easy for visitors to keep in touch.

Rogie King – The usage of a wooden layer as well as a carbon background creates a very attractive and pleasing effect for the site.

John Bloomfield – The owner of the vCard incorporates a good usage of flash in its site that makes it look rather elegant and trendy.

Lekevicius – Black and white looks very trendy on the site. A good inspiration to those wanting to create a black and white vCard.

Creating a basic page using HTML

Saturday, February 6th, 2010

It is good to learn a bit more or less about HTML. Today, we are going to learn how to create a basic website using HTML. It will consist of the title of the website, the body, a paragraph as well as a header. To grasp the idea better, we recommend that you use Notepad. Do type and do not copy and paste the whole thing.

Now, open up notepad and type the following:

<html>

<head>

<title>

Hello There

</title>

</head>

All HTML tags are in pairs: one is the opening tag while the other is the closing tag. As you can see, the <title> tag is closed by the </title> tag. Most of the time, it works that way with the exception of line break which is <br />.

The title tag is the website title that you usually see on the browser. For instance, if you go to Yahoo, the title on the browser will read Yahoo. Everything that is in the head tag will not appear on the screen and most of the time, it is to be read by the browser or the search engine. The <html> tag on the other hand is used to tell the browser that the file is to be read as HTML and is closed only at the end of document.

Once that is done, we’ll start with the body of the page. Type the codes below.

<body>

<h1> Here is a header </h1>

<p> This one here is a paragraph tag </p>

<p>It automatically creates a new paragraph with the usage of a different paragraph tag</p>

</body>

</html>

Save the file as a test.html and voila! You’re done. Now for the explanations: <body> tags are used for contents that are going to be shown to the viewers. The header tag ranges from <h1> to <h6> with 1 being the largest font and 6 is the lowest. As for the paragraph tags, it is self explanatory. The </body> tag is used to tell the browser to stop showing the contents to the viewer while </html> marks the end of the page.

Overall, your test.html should look like this:

<html>

<head>

<title>

Hello There

</title>

</head>

<body>

<h1> Here is a header </h1>

<p> This one here is a paragraph tag </p>

<p>It automatically creates a new paragraph with the usage of a different paragraph tag</p>

</body>

</html>