rss

About Me

My Photo
irnanto dwi saputra
View my complete profile

22 May 2011

Ordered List and Unordered List

There are two kinds of list items is an ordered list and unordered list, or also called the numbering and bullets.

Sample list of an ordered list :

  1. First item
  2. The second item
  3. The third three

Example of unordered list items list:

  • First item
  • The second item
  • The third three

To create a sequential list of items we use the tag <OL> while to create a sequential list of items not used tags <UL>. and for each item marked with a tag <LI>.

Sample code for a list of items ordered or ordered list.

<ol>
<li>First item</li>
<li>The second item</li>
<li>The third three</li>
</ol>

And sample code for a list of items not ordered or unordered list.

<ul>
<li>First item</li>
<li>The second item</li>
<li>The third three</li>
</ul>

We can also create a stratified list of items or list items in the list of items. Examples are as follows:

  • First item
  • The second item
    • The first sub-item
    • The second sub-item
      • The first sub sub item
      • The second sub sub item
      • The third sub sub item
    • The third sub-item
  • The third item

To create a multilevel list of items as above, no additional tags or attributes. Has to do is place the tags into lower-level list item in the list of items level on it. For more details, below is the source code :

<ul>
<li>First item</li>
<li>The second item</li>
<ul>
<li>The first sub-item</li>
<li>The second sub-item</li>
<ul>
<li>The first sub sub item</li>
<li>The second sub sub item</li>
<li>The third sub sub item</li>
</ul>
<li>The third sub-item</li>
</ul>
<li>The third item</li>
</ul>

The browser will display the list using a space slightly to the inside to the levels below it.

We can use the same way to create a multilevel sequential list of items using an ordered list. We simply replace the tag <ul> with the tag <ol> , then it will be like this:

  1. First item
  2. The second item
    1. The first sub-item
    2. The second sub-item
      1. The first sub sub item
      2. The second sub sub item
      3. The third sub sub item
    3. The third sub-item
  3. The third item

From the sample list of items not ordered or unordered list that rise above, we see that by default, the browser will display the picture (bullet) black dots for the first level items, circle for the items to the second level, and black boxes for the items third-level items. Actually we can choose what type of bullet you want to use to add a TYPE attribute in the tag <UL>. Code: <UL TYPE="bullet type">. Where a bullet there are three kinds: "disc" for the black dots, "circle" to the circle, and "square" to kotam black. So if we want to list these items:

  • First item
  • The second item
  • The third item

So the HTML codes that must be specified as below.

<ul type="square">
<li>First item</li>
<li>The second item</li>
<li>The third item</li>
</ul>

For a list of items ordered or ordered list (numbering), type the numbers can be changed by using the same attribute. So the code: <OL TYPE="number type">. While the types of figures can be filled with 1, A, a, I, or i depending on our tastes. Example:

<ol type="I">
<li>First item</li>
<li>The second item</li>
<ol type="A">
<li>The first sub-item</li>
<li>The second sub-item</li>
<ol type="1">
<li>The first sub sub item</li>
<li>The second sub sub item</li>
<li>The third sub sub item</li>
</ol>
<li>The third sub-item</li>
</ol>
<li>The third item</li>
</ol>

Will produce a list of items as follows:

  1. First item
  2. The second item
    1. The first sub-item
    2. The second sub-item
      1. The first sub sub item
      2. The second sub sub item
      3. The third sub sub item
    3. The third sub-item
  3. The third item

Lessons on the bullet / unordered lists and numbering / ordered list .

sorry produced results inconsistent with my desire, because setting my template does not comply with this practice examples

DKBAAK3V7XP4

Read more.....

21 May 2011

Indent

Besides the set alignment, we can adjust the position of the lines of paragraphs from the margin (the edge of the page). There are three kinds of indented paragraphs.

First, the first line just a little inside. To create paragraphs of this kind we use the tag <dd>. Example:

<HTML>
<BODY>
<DD> Paragraph </DD> is a collection of sentences or paragraphs that contain one main thought. Between one paragraph to other paragraphs are usually separated by blank lines. But that paragraph is also commonly characterized by its first row position rather go into.
<BODY>
<HTML>

The results will be generated in the browser as shown below.

Paragraph
is a collection of sentences or paragraphs that contain one main thought. Between one paragraph to other paragraphs are usually separated by blank lines. But that paragraph is also commonly characterized by its first row position rather go into.

sorry the results produced are not liking me, because my templates are not supported with the code above. You can try it yourself by copying the code above and then run your browser with html format.

Second, create a paragraph that all rows, just inside the inside. To create paragraphs of this kind we use tags that flank <blockquote> paragraphs shall we make go into.

<HTML> <BODY>

<P> This is a normal paragraph </P>

<blockquote> <P> This is the paragraph that somewhat get into. </P>

<P Align="left"> This is also an example paragraph rather go into. With a rather long sentence, we see that <b> all rows </b> in this paragraph is located just inside the inside. Same <i> average as far </i>.

</Blockquote>

<P> This paragraph is normal, because the tag <i> blockquote </i> has been closed at the top. do you understand? </P>

</BODY></HTML>

So that will be displayed in the browser as shown below.

This is a normal paragraph

This is the paragraph that somewhat get into.

This is also an example paragraph rather go into. With a rather long sentence, we see that all rows in this paragraph is located just inside the inside. Same average as far .

This paragraph is normal, because the tag blockquote has been closed at the top. do you understand?

Sorry for my style has changed blockquote customize the template that I have. for more details, please create a html file with contents as above, the results you can see in the browser.

Third, make paragraphs in the composition of the list of definitions (definition list). List of definitions is the composition of paragraphs alternating between normal paragraphs, which is a sentence that would be explained by the paragraph that somewhat get into which is the explanation or definition of the phrase on it. For more details, here is an example list of definitions:

To create a list of definitions used three kinds of tags marking the beginning of <dl> or an end to the list definition, <dt> a normal paragraph mark (described) and <dd> a paragraph mark rather go into (which explains the paragraph above) .

Examples of the use of definition list.

<HTML> <BODY>

<P Align="center"> <B> Glossary Important: </B> </P>

<DL>

<DT> <B> Internet </B>

<DD>Stands <i> interconnection network </i> or the relationship between networks. Internet is a global computer network and is the largest computer network in the world for being able to connect all computers in the world.

<DT> <B> HTTP </B>

<DD>Stands <i> Hypertext Transfer Protocol </i> is one of the protocol language used to communicate between the server computer on the internet. Protocols other language in the internet for example: Telnet, News, Gropher, FTP.
</DL>

<P> Because only an example, just two definitions only. Ok, this paragraph back to normal. </P>

</BODY></HTML>

The results will be displayed in the browser like this below

 

Glossary of Term Important:

Internet
Abbreviations of the interconnection network or network relationships. Internet is a global computer network and is the largest computer network in the world for being able to connect all computers in the world.
HTTP
It stands for Hypertext Transfer Protocol is one of the protocol language used to communicate between the server computer on the internet. Protocols other language in the internet for example: Telnet, News, Gropher, FTP.

sorry the results produced are not liking me, because my templates are not supported with the code above. You can try it yourself by copying the code above and then run your browser with html format.

Because only an example, just two definitions only. Ok, this paragraph back to normal.

Read more.....

19 May 2011

Display As You Wish

Although browsers do not recognize the tabulation, a space more than once, and making a line with enter, but by using tags <pre> then the browser will display the text as it is, that space is considered a space, tabulation considered tabulation and enter regarded enter. Even his font appeared in the original. This is an example:

<HTML>
<BODY>

<PRE>

<B>Song Lyrics </B>

I have a dream, a song to sing 
To help me cope with anything If you see the wonder of a fairy tale You can take the future even if you fail

</PRE>

</BODY>
</HTML>

Save the file above as an HTML file and then display in the browser, then it will be like this:


Song Lyrics 

I have a dream, a song to sing 
To help me cope with anything 


         If you see the wonder of a fairy tale
         You can take the future even if you fail 

<pre> tag is necessary if we want to display in ASCII character set of web pages in a specific arrangement, such as the following example:


Car Pick-up

                                          .------.
                                         :|||"""`.`.
                                         :|||     7.`.
                      .===+===+===+===+===||`----L7'-`7`---.._
                      []                  || ==       |       """-.
                      []...._____.........||........../ _____ ____|
                      \____/,---.\_       ||_________/ /,---.\_  _/
                       /_,-/ ,-. \ `._____|__________||/ ,-. \ \_[
                          /\ `-' /                    /\ `-' /
                            `---'                       `---'

The picture above is ASCII art. There are other examples of ASCII art Here.

Read more.....

Make Superscript and Subscript

Subscript is writing a rather small and located slightly below while the superscript is writing a rather small and located slightly above. To write a subscript we use <SUB> tag is to write us use superscript tag <SUP>. Here's an example:

Normal writing <sub>subscrip writing</sub>

Normal writing <sup>superscrip writing</sup>

So who will appear in the browser as below.

Normal writing subscrip writing

Normal writing superscrip writing

Writing subscrip and superscrip usually used in writing a chemical formula and powers. For example:

Sulfuric acid chemical formula is H <sub>2 </sub> SO <sub>4 </sub>

150 m<sup>2 </sup> wide field and the volume of a sphere 300 m <sup>3 </ sup>

Then the results will be displayed in the browser as shown below.

Sulfuric acid chemical formula is H 2 SO 4

150 m2 wide field and the volume of a sphere 300 m3

Read more.....

18 May 2011

Create a Link

The command to create a link is to <A HREF="http://weblearning27.blogspot.com"> Link Name </ A>. You see that the tag starts with A which is an abbreviation of the Anchor, then HREF (hypertext reference), which after it resumed the destination address. Keep in mind this destination address should be between quotation marks. After that

you write his name freely link up to you, and finally closing with a closing </ A>. So how to make a link.

Here's an example link that you click. Please:

My Links

Links above will take you to the site with the address: http://irnanto-ilmupengetahuan.blogspot.com

Based on the location of destination, the link can be divided into:

  1. Link to the homepage of a site
  2. Link to other pages within the same site
  3. Link to another page in another site
  4. Link to a particular section (bookmark) in the same page.
  5. Link to a particular section (bookmark) in different pages
  6. Links that point to a file that can be displayed in the browser, such as image files or animations such as GIF, JPG, BMP and so on.
  7. The link leads to a specific file that can not be displayed or executed in the browser for example: program files (EXE), file compression (ZIP), audio files (like MP3, RM), video files, and others. If such a link is clicked, a dialog box will appear asking if you want to save the file in your hard drive or run it with the appropriate programs. The process of retrieval and storage of such files is called downloading.
  8. Links pointing to your email address. If this link is clicked will open a window sending mail from an email program installed on the user's computer (eg Microsoft Outlook). In an email destination box (To:) has listed the destination mail address.

 

For each type of link above, the important thing to note is the way of writing the address or location (URL) of the site or file designated by the link. This location is written between the quotes after the href= attribute. Provisions are as follows:

  1. Link to the homepage of another site, simply write the URL address of the website, for example: href = "http://irnanto-ilmupengetahuan.blogspot.com".
  2. Link to another page in another site, then should we write the URL address and the location of the file.
    For example: href = "http://irnanto-ilmupengetahuan.blogspot.com/2010/04/ptc-list.html".
  3. Link to other pages within the same site, then simply written down the location of the file, without writing the URL address of the site. In this case there are several possibilities:
    a) If the file is located in the same folder with the files from the link then simply write the name of the file, for example: href = "ptc-list.html".
    b) If the target file is located in another folder under the folder that is occupied by the link, it must be written the name of the folder. For example: href = "04/ptc-list.html".
    c) Conversely, if the target file is located in another folder above the folder that is occupied by the file from the link is then written as follows: href ="../ ptc-list.html ".
    d) If the file is located two levels above the double-colons are written like this: href ="../../ irnanto.jpg " and so on.
  4. To create a link to a particular section of a web page, before we have to give names to the places or locations to be addressed it by putting tags <a name="lokasi"> </ a> on line that will link it. Only then we can make the link to that section. In this case there are two possibilities.
    a) If the destination is contained within the same page with the link then simply write the name of the field. For example: href = # locations.
    b) If the destination is located on another page it must be written the name of the file from that page just name the place. For example: href = "other.htm # location".
  5. Links that point to a file that is not an HTML file for example program files, audio, image, and others. The way writing is tantamount to an HTML file as in point 1, 2 and 3 above.
  6. Link that contains the email addresses are written like this: href = "mailto: irnanto@yahoo.com".

 

We already know that, if a link is clicked, the browser will display the target page by the link. How to bring up the browser page, there are two kinds of purposes.

  1. Published in the same window. That is, the page where the link is replaced by the target page by the link. This is the way the default appearance.
  2. Published in another window. That is, a new window will appear that displays the intended page. To create a link of this kind, we must add the attribute TARGET = "_blank" in the tag <A HREF>. Example: href="webpage.html" target="_blank">.

A few lessons about the links, especially text links. and then We'll learn about creating image links and links with more specific targets.

Read more.....

17 May 2011

Examples of ASCII Art

Toyota Cars

    ___________________
   |,-----.,-----.,---.\
   ||     ||     ||    \\
   |`-----'|-----||-----\`----.
   [       |    -||-   _|    (|
   [  ,--. |_____||___/.--.   |
   =-(( `))-----------(( `))-==
      `--'             `--'

Clouds and sun

              .
                    
              |     
     .               /    
      \       I         
                  /
        \  ,g88R_
          d888(`  ).                   _
 -  --==  888(     ).=--           .+(`  )`.
)         Y8P(       '`.          :(   .    )
        .+(`(      .   )     .--  `.  (    ) )
       ((    (..__.:'-'   .=(   )   ` _`  ) )
`.     `(       ) )       (   .  )     (   )  ._
  )      ` __.:'   )     (   (   ))     `-'.:(`  )
)  )  ( )       --'       `- __.'         :(      ))
.-'  (_.'          .')                    `(    )  ))
                  (_  )                     ` __.:'
                                         
--..,___.--,--'`,---..-.--+--.,,-,,..._.--..-._.-a:f--.

Buildings

__                  __                 __
___  .-~~'.      ___~~-_.-~~'.    ___~  ~~-.-~~'.  ___ -~  ~~-.-~~' ___
| ''|`-...--' ~' | ''|  `-...--'  | ''|    `-...-- | ''|      `-... | ''|
|' '| -'     ': _|' '| ..--'      |' '| _....--'   |' '| ___....--' |' '|
| ''|_   _     | | ''| _   _     || ''|  _   _     | ''|   _   _    | ''|
| ''| |_| |____| | ''|| |_| |____|| ''|_| |_| |____| ''||_| |_| |___| ''|
|'' | | | |    | |'' || | | |    ||'' | | | | |    |'' || | | | |   |'' |
| ''|____ |    | | ''|____  |    || ''|____ | |    | ''|____  | |   | ''|
| ' |'' '|_______| ' |'' '|_______| ' |'' '|_______| ' |'' '|_______| ' |
|' '|' ' |''''  '|' '|' ' |''''  '|' '|' ' |''''  '|' '|' ' |''''  '|' '|
| ' | '''| ''  ''| ' | '''| ''  ''| ' | '''| ''  ''| ' | '''| ''  ''| ' |
____  ______________  ______________  ______________  ______________  ___
=||=)(=||===||===||=)(=||===||===||=)(=||===||===||=)(=||===||===||=)(=||
#########################################################################
| \\#//  |'' '''  \\#//   |'' ''' \\#//    |'' '' \\#//     |'' ' \\#//
|' |#| ''| ''''  | |#|  ''| ''''   |#|   ''| ''''  |#| |  ''| '''' |#| '|
|''|#| ' |'''   '|'|#| '' |'''   ' |#| ''' |'''    |#|'|''' |'''   |#| '|
|' |#|  '| '  '' |'|#| ' '| '  ''  |#|  ' '| '  '' |#|'| ' '| '  ' |#| '|
   |#|             |#|             |#|             |#|             |#|

Geert-Jan Thomas  

Apartement

       _._._._    ^  _._._._       _._._._ ^
       | ___ |_._._._| ___ |_._._._| ___ |
       | |_| |  ___  | |_| |  ___  | |_| |
       |_III_|  |_|  |_III_|  |_|  |_III_| ^!^
 ^     | ___ |__III__| ___ |__III__| ___ |
    ^  | |_| |  ___  | |_| |  ___  | |_| |   ^!^
       |_III_|  |_|  |_III_|  |_|  |_III_|
       | ___ |__III__| ___ |__III__| ___ | _)o(_
       | |_| |  ___  | |_| |  ___  | |_| | /(|)\
   /)  |_III_|  |_|  |_III_|  |_|  |_III_|   H
 _/ )  | ___ |__III__|_____|__III__| ___ |   H
 ~^~^~ | |_| |"""""""||~|~||"""""""| |_| |   H
    ^~'|_III_|@@@@@@@||_|_||@@@@@@@|_III_|^~^H '
 @@@@@@@@@@@@@@     @/=====\@     @@@@@@@@@@@@@@

Classic Home

                           (   )
                          (    )
                           (    )
                          (    )
                            )  )
                           (  (                  /\
                            (_)                 /  \  /\
                    ________[_]________      /\/    \/  \
           /\      /\        ______    \    /   /\/\  /\/\
          /  \    //_\       \    /\    \  /\/\/    \/    \
   /\    / /\/\  //___\       \__/  \    \/
  /  \  /\/    \//_____\       \ |[]|     \
 /\/\/\/       //_______\       \|__|      \
/      \      /XXXXXXXXXX\                  \
        \    /_I_II  I__I_\__________________\
               I_I|  I__I_____[]_|_[]_____I
               I_II  I__I_____[]_|_[]_____I
               I II__I  I     XXXXXXX     I
            ~~~~~"   "~~~~~~~~~~~~~~~~~~~~~~~~

Bedroom

            _      ()              ()      _
           / \     ||______________||     / \
          /___\    |                |    /___\
            |      |      ~@@~      |      |
           (_)     |_______  _______|     (_)
        ___/_\___  {_______}{_______}  ___/_\___
         |__~__|   %%%%%%%%%%%%%%%%%%   |__~__|
      ___|_____|__%%%%%%%%%%%%%%%%%%%%__|_____|___
         |     | %%%%%%%%%%%%%%%%%%%%%% |     |
          `=====%%%%%%%%%%%%%%%%%%%%%%%%=====`
         `=====%%%%%%%%%%%%%%%%%%%%%%%%%%=====`
        `=====%%%%%%%%%%%%%%%%%%%%%%%%%%%%=====`
       `=====/||||||||||||||||||||||||||||\=====`
      `======||||||||||||||||||||||||||||||======`
     `=======||||||||||||||||||||||||||||||=======`
    `==============================================`
   `================================================`

Toilet

                                                         |
                                            __________   |
                           _    __    _    |          |  |
                          /_\  /  \  /_\   |          |  |
                          =|= | // | =|=   |          |  |
                           !   \__/   !    |          |  |
                                 _         |          |  |
 ___               ___          //'        |          |  |
[___]       _   :=|   |=:   __T_||_T__     |p=        |  |
|  ~|     =)_)=   |   |    [__________]    |          |  |
|   |      (_(    |xXx|     \_      _/     |          |  |
|   |      )_)    """""       \    /       |          |  |
\___|                          |  |        |          |  |
 |  `========,                 |  |        |          |  |
__`.        .'_________________|  |________|_____________|
    `.    .'                  (____)                      \
    _|    |_...             .;;;;;;;;.                     \
   (________);;;;          :;;;;;;;;;;:
        :::::::'            '::::::::'

Cup Of Coffee

                       .
                        `:.
                          `:.
                  .:'     ,::
                 .:'      ;:'
                 ::      ;:'
                  :    .:'
                   `.  :.
          _________________________
         : _ _ _ _ _ _ _ _ _ _ _ _ :
     ,---:".".".".".".".".".".".".":
    : ,'"`::.:.:.:.:.:.:.:.:.:.:.::'
    `.`.  `:-===-===-===-===-===-:'
      `.`-._:                   :
        `-.__`.               ,' 
    ,--------`"`-------------'--------.
     `"--.__                   __.--"'
            `""-------------""'

Syrup Bottles

               __
              )==(
              )==(
              |H |
              |H |
              |H |
             /====\
            / Dr S \
           /========\
          :HHHHHHHH H:
          |HHHHHHHH H|
          |HHHHHHHH H|
          |HHHHHHHH H|
   \______|=/========\________/
    \     :/oO/      |\      /
     \    / oOOO  Le | \    /
      \__/| OOO Grape|  \__/
       )( |  O       |   )(
       )( |==========|   )(
       )( |HHHHHHHH H|   )(
       )( |HHHHHHHH H|   )(
      .)(.|HHHHHHHH H|  .)(.
     ~~~~~~~~~~~~~~~~  ~~~~~~

Mineral Water Bottle

            _________
           |_-_-_-_-_|
           |_________|
            )_______(
           (_________)
           |uuuuuuuuu|
           /         \
          /           \
         /             \
        /               \
       /                 \
      /                   \
     (_____________________)
      )___________________(
     (_____________________)
     |                     |
     |_____________________|
      )___________________(
     |_____________________|
      )___________________(
     |                     |
     |_____________________|
      )___________________(
     |_____________________|
      )___________________(
     |                     |
     |                     |
     |_____________________|
     (_____________________)
     |_____________________|
     (_____________________)
     |                     |
     |                     |
     \_____________________/
      '-------------------'

Suspension bridge

                                           ^^
      ^^      ..                                       ..
              []                                       []
            .:[]:_          ^^                       ,:[]:.
          .: :[]: :-.                             ,-: :[]: :.
        .: : :[]: : :`._                       ,.': : :[]: : :.
      .: : : :[]: : : : :-._               _,-: : : : :[]: : : :.
  _..: : : : :[]: : : : : : :-._________.-: : : : : : :[]: : : : :-._
  _:_:_:_:_:_:[]:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:[]:_:_:_:_:_:_
  !!!!!!!!!!!![]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!![]!!!!!!!!!!!!!
  ^^^^^^^^^^^^[]^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^[]^^^^^^^^^^^^^
              []                                       []
              []                                       []
              []                                       []
   ~~^-~^_~^~/  \~^-~^~_~^-~_^~-^~_^~~-^~_~^~-~_~-^~_^/  \~^-~_~^-~~-
  ~ _~~- ~^-^~-^~~- ^~_^-^~~_ -~^_ -~_-~~^- _~~_~-^_ ~^-^~~-_^-~ ~^
     ~ ^- _~~_-  ~~ _ ~  ^~  - ~~^ _ -  ^~-  ~ _  ~~^  - ~_   - ~^_~

Curved Bridge

                             ___....___
   ^^                __..-:'':__:..:__:'':-..__
                 _.-:__:.-:'':  :  :  :'':-.:__:-._
               .':.-:  :  :  :  :  :  :  :  :  :._:'.
            _ :.':  :  :  :  :  :  :  :  :  :  :  :'.: _
           [ ]:  :  :  :  :  :  :  :  :  :  :  :  :  :[ ]
           [ ]:  :  :  :  :  :  :  :  :  :  :  :  :  :[ ]
  :::::::::[ ]:__:__:__:__:__:__:__:__:__:__:__:__:__:[ ]:::::::::::
  !!!!!!!!![ ]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!![ ]!!!!!!!!!!!
  ^^^^^^^^^[ ]^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^[ ]^^^^^^^^^^^
           [ ]                                        [ ]
           [ ]                                        [ ]
           [ ]                                        [ ]
   ~~^_~^~/   \~^-~^~ _~^-~_^~-^~_^~~-^~_~^~-~_~-^~_^/   \~^ ~~_ ^

Six Aspects Tiles

\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
\__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_

Tiles Aspects 12

 \__   \__   \__   \__   \__   \__   \__   \__   \__   \__   \_
_/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
 \     \     \     \     \     \     \     \     \     \     \
_/   __/   __/   __/   __/   __/   __/   __/   __/   __/   __/
 \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
 /     /     /     /     /     /     /     /     /     /     / 
 \__   \__   \__   \__   \__   \__   \__   \__   \__   \__   \_
_/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
 \     \     \     \     \     \     \     \     \     \     \
_/   __/   __/   __/   __/   __/   __/   __/   __/   __/   __/
 \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_
 /     /     /     /     /     /     /     /     /     /     / 
 \__   \__   \__   \__   \__   \__   \__   \__   \__   \__   \_
_/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/ 
 \     \     \     \     \     \     \     \     \     \     \
_/   __/   __/   __/   __/   __/   __/   __/   __/   __/   __/
 \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \__/  \_

Bicycle Racing

            /'=----=           ______
            ((    ||          "--.__."
             "  @>||_____________//
          _______ /^\"""""""""""//\========)
         _--"""--/-. "\        // _\-:::-/_-.
       ." .-"""-/ "_\  "\  == // ;::\:::/::".\
      ; /     _/ "  \\   "\-+//--..._\_/:::::\\
      . ;    o    . ||   ( ()/)======(o)::::::.
      . \         ; .|    -|.;____...."b:::::;
       . -._  _ -  ;       ==    :::::::::::;
        "-..____.'     ls         ":::::::'

Sedan Cars

                                              _____________
                                  ..---:::::::-----------. ::::;;.
                               .'""""""                  ;;   \  ":.
                            .''                          ;     \   "\__.
                          .'                            ;;      ;   \\";
                        .'                              ;   _____;   \\/
                      .'                               :; ;"     \ ___:'.
                    .'--...........................    : =   ____:"    \ \
               ..-""                               """'  o"""     ;     ; :
          .--""  .----- ..----...    _.-    --.  ..-"     ;       ;     ; ;
       .""_-     "--""-----'""    _-"        .-""         ;        ;    .-.
    .'  .'                      ."         ."              ;       ;   /. |
   /-./'                      ."          /           _..  ;       ;   ;;;|
  :  ;-.______               /       _________==.    /_  \ ;       ;   ;;;;
  ;  / |      """"""""""".---."""""""          :    /" ". |;       ; _; ;;;
 /"-/  |                /   /                  /   /     ;|;      ;-" | ;';
:-  :   """----______  /   /              ____.   .  ."'. ;;   .-"..T"   .
'. "  ___            "":   '""""""""""""""    .   ; ;    ;; ;." ."   '--"

 ",   __ """  ""---... :- - - - - - - - - ' '  ; ;  ;    ;;"  ."
  /. ;  """---___                             ;  ; ;     ;|.""
 :  ":           """----.    .-------.       ;   ; ;     ;:
  \  '--__               \   \        \     /    | ;     ;;
   '-..   """"---___      :   .______..\ __/..-""|  ;   ; ;
       ""--..       """--"                      .   ". . ;
             ""------...                  ..--""      " :
                        """"""""""""""""""    \        /
                                               "------"

Hot rod

                                 _..-------++._
                             _.-'/ |      _||  \"--._
                       __.--'`._/_\j_____/_||___\    `----.
                  _.--'_____    |          \     _____    /
                _j    /,---.\   |        =o |   /,---.\   |_
               [__]==// .-. \\==`===========/==// .-. \\=[__]
                 `-._|\ `-' /|___\_________/___|\ `-' /|_.'     hjw
                       `---'                     `---'

Car Pick-up

                                          .------.
                                         :|||"""`.`.
                                         :|||     7.`.
                      .===+===+===+===+===||`----L7'-`7`---.._
                      []                  || ==       |       """-.
                      []...._____.........||........../ _____ ____|
                     c\____/,---.\_       ||_________/ /,---.\_  _/
                hjw    /_,-/ ,-. \ `._____|__________||/ ,-. \ \_[
                          /\ `-' /                    /\ `-' /
                            `---'                       `---'

Ambulance Car

    EeeiiiiiEEiiiii.....
       \|/
        n______     .....iiiiiEEiiiieeEE
       :~;     :                  \|/
-----;``~'  +  ;------------ ______n --------------------------------
     `-@-----@-=            :     :~:
=========================== ;  +  '~``; =============================
                            =-@-----@-'
jgs------------------------------------------------------------------

       _____,_                __________  __,_
------ |  +  |\__       ----- | ||||||| | | |_|
 ----- | _   ' _ |       ---- |  _ . _. |_|tre|
   --- `(o)---(o)'        --- `-(o)-(o)----(o)'

______________________________________________________________________

Train

                 __,-_-_--_-.___         ___,-----._
               /,--'   ||  `,---.'-._ -''       .   
              //    \  ||  /     | | _-.         `  
             /'--.--,-'.`---...__| || | `-.         
           ,'      ((_ ))           H |    `-.      
           |o       `--'         o  H`|-._   |`-.   
    ,--._ ,---..            ,,-----.  |   `-.|   `-.
  ,'    _ |_`_||    ,--.    ||_81__|. | -.   |`-._  
     ,-'   |       ((_ ))         | : | -. -.| -_ `-
   ,'      |--...__,`--'.__..._-_-. : |-...__|   _- 
           |=_= -_-\::::/-_--_-=_=' : |      |`''---
      ,'   |    \-_/||||\-_/         _|      |      
           |_______`----'_________ ______.... ......
           |=======[____]=========|       __ | -- __
        _, |     ||  ||  | |     --   --'  __/'--'  
   _,-     |     ||  ||  | |      | ___,--'         
           `--.  ''--''--'-' ,----' -               
            _ '_----_-------','-  _                 

Warship

                                     |__
                                     |\/
                                     ---
                                     / | [
                              !      | |||
                            _/|     _/|-++'
                        +  +--|    |--|--|_ |-
                     { /|__|  |/\__|  |--- |||__/
                    +---------------___[}-_===_.'____                 /\
                ____`-' ||___-{]_| _[}-  |     |_[___\==--            \/   _
 __..._____--==/___]_|__|_____________________________[___\==--____,------' .7
|                                                                     BB-61/
 \_________________________________________________________________________|
  Matthew Bace

Aircraft

                                            |
                                      --====|====--
                                            |  

                                        .-"""""-. 
                                      .'_________'. 
                                     /_/_|__|__|_\_\
                                    ;'-._       _.-';
               ,--------------------|    `-. .-'    |--------------------,
                ``""--..__    ___   ;       '       ;   ___    __..--""``
                 jgs      `"-// \\.._\             /_..// \\-"`
                             \\_//    '._       _.'    \\_//
                              `"`        ``---``        `"`


Keyboard

               ________________________________________________
               |      _____________________________           |
               | [][] _____________________________ [_][_][_] |
               | [][] [_][_][_] [_][_][_][_] [_][_] [_][_][_] |
               |                                              |
               | [][] [][][][][][][][][][][][][][_] [][][][]  |
               | [][] [_][][][][][][][][][][][][][] [][][][]  |
               | [][] [__][][][][][][][][][][][][_] [][][][]  |
               | [][] [___][][][][][][][][][][][__] [__][][]  |
               |          [_][______________][_]              |
               |______________________________________________|

Flower Blooms

                       ___ .
                   _~"|  ~~ ~.\.~
                  /   :   /   /  \_
                 ?""  ;  `  ,'     )
        /-,      /    .   .     .  |
       /   ~-_  /   dp   .    .    |
    .%"":    .? |:    . .   .      |
   %    '.   . \|:. . ..  .   .   /
 /  '.   '.: : :| :   .. . .    _/
/ ~~~::.   .:: ::. . .::.:. ..'~
\::... `'.. : : : " . :. .  ~~|    _____
(:::. ..   '.: .:.::. : . : "/__-""     --
 )"".>  --~~~__. ::::*## :.:.:)  :    .:` ~\
|..::'      >>    #######  '.: .' .  .`     ?
\_.___      :''> ######### ::.".    ~ ..~'" |,
     _">~____~~::. #* )#### :  ..~       .   )
    /:.:'';.:::_-  _-#####*:;: ::>,,          }
   o__o___q~_-" _-"###### .:.''     ..~~ ~    |
  ( o() &@&__--"  *::####::"  ";..    ~~...::.)
 (o& O& O?S).`   .:':::*: :      ~~~...     "/
   oS %@&>/    .:'  ::::: :.       .~  "'.  {
   \~*~~""   __:/   "::::..L        ~     ''/
    |::'    /##)     :':::::\         .   %
    \:; .  |#/       : :::::::-___      -"

     \::::: |        : :::::::::::\----"
     \::::::|:.      : :::::::::::|
     \::::::|'     . : ::::::::::::|
      -::::/ \     :.'::::::::::::/
        ~__/  \.   ;:.::::::::::_/       
               \::.::::::::::::/
                 --_;::::::_-~/
                     """"""

Laras shoes

      .-'\
   .-'  `/\
.-'      `/\
\         `/\
 \         `/\
  \    _-   `/\       _.--.
   \    _-   `/`-..--\     )
    \    _-   `,','  /    ,')
     `-_   -   ` -- ~   ,','
      `-              ,','
       \,--.    ____==-~
        \   \_-~\
         `_-~_.-'
 _ Seal _ \-~

Frame Chest

       __________________
      /\  ______________ \
     /::\ \ZZZZZZZZZZZZ/\ \
    /:/\.\ \        /:/\:\ \
   /:/Z/\:\ \      /:/Z/\:\ \
  /:/Z/__\:\ \____/:/Z/  \:\ \
 /:/Z/____\:\ \___\/Z/    \:\ \
 \:\ \ZZZZZ\:\ \ZZ/\ \     \:\ \
  \:\ \     \:\ \ \:\ \     \:\ \
   \:\ \     \:\ \_\;\_\_____\;\ \
    \:\ \     \:\_________________\
     \:\ \    /:/ZZZZZZZZZZZZZZZZZ/
      \:\ \  /:/Z/    \:\ \  /:/Z/
       \:\ \/:/Z/      \:\ \/:/Z/
        \:\/:/Z/________\;\/:/Z/
         \::/Z/____________\/Z/
          \/ZZZZZZZZZZZZZZZZZ/

Plaid

              ______________________
             /\    _______  _______ \
            /  \  /\      \/\      \ \
           / _  \   \      \ \      \ \
          / /\   \   \      \ \      \ \
         / /  \   \   \______\ \______\ \
        / /    \   \  / _____/_/ _____/_ \
       / /      \_  \  /\      \/\      \ \
      / _\      / _  \   \      \ \      \ \
     / /\ \    / /\   \   \      \ \      \ \
    / /  \ \  / /  \   \   \______\ \______\ \
   / /    \ \/_/    \   \  /      / /      /  \
  / /      \_ /      \_  \_____________________\
  \ \      / _\      /   /                     /
   \ \    / /\ \    /   /  \______\ \______\  /
    \ \  / /  \ \  /   /   /      / /      / /
     \ \/_/    \ \/_  /   /      / /      / /
      \  /      \_   /   /      / /      / /
       \ \      /   /  \/______/\/______/ /
        \ \    /   /  \______\ \______\  /
         \ \  /   /   /      / /      / /
          \ \/_  /   /      / /      / /
           \    /   /      / /      / /
            \  /  \/______/\/______/ /
             \/_____________________/

Read more.....
 

Site Info

Google Pagerank Powered by  MyPagerank.Net My Ping in TotalPing.com TopOfBlogs My Zimbio Blog Directory