<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1759851003840262913</id><updated>2012-02-16T14:22:36.273+07:00</updated><title type='text'>BRILIANTA beri info</title><subtitle type='html'>Buat kalian yang pengen mencari info kurang penting tapi suatu saat akan menjadi penting. have fun..!!!</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://briliantapanjol.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1759851003840262913/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://briliantapanjol.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>brilianta</name><uri>http://www.blogger.com/profile/07516386513479954168</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='29' src='http://3.bp.blogspot.com/-Swzy_BAvu_s/TWUWWFcHimI/AAAAAAAAAFI/nLh5SQ08_yM/s220/Foto0898%2B-%2BCopy.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1759851003840262913.post-2490944000274932615</id><published>2011-03-01T20:46:00.000+07:00</published><updated>2011-03-01T21:24:28.634+07:00</updated><title type='text'>Script Bahasa C untuk Kalkulator Sederhana</title><content type='html'>&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;#include &lt;stdio.h&gt;&lt;/stdio.h&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;#include &lt;stdlib.h&gt;&lt;/stdlib.h&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;int main()&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;{&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("================================================\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("              Automation Engineering            \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("   Surabaya Shipbuilding State of Polytechnic   \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("    Sepuluh Nopember Institute of Technology    \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("================================================\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("             BRILIANTA FANNI SAIFULLAH          \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("                 NRP 6910040050                 \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("================================================\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("               Calculator Project               \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("================================================\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("       \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("       \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    int valid_operator =1;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    char operator;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    float Number1,Number2,result;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("Masukkan 2 Bilangan yang Diinginkan\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("Dengan format =&gt; Bilangan1 - operator - Bilangan2\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("       \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("       \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    scanf("%f %c %f", &amp;amp;Number1, &amp;amp;operator, &amp;amp;Number2);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '*')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1*Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '/')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1/Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '+')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1+Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '-')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1-Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    if (valid_operator);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("= %g",result);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    scanf("%f %c %f", &amp;amp;Number1, &amp;amp;operator, &amp;amp;Number2);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '*')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1*Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '/')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1/Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '+')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1+Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '-')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1-Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    if (valid_operator);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("= %g",result);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    scanf("%f %c %f", &amp;amp;Number1, &amp;amp;operator, &amp;amp;Number2);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '*')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1*Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '/')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1/Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '+')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1+Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '-')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1-Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    if (valid_operator);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("= %g",result);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    scanf("%f %c %f", &amp;amp;Number1, &amp;amp;operator, &amp;amp;Number2);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '*')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1*Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '/')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1/Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '+')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1+Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        if (operator == '-')&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;        result = Number1-Number2;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    if (valid_operator);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("= %g",result);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("       \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("       \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("================================================\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("          CopyRight By Brilianta | 2011         \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("              briliant_46@yahoo.com             \n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    printf("================================================\n");&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;    return 0;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;}&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-Z7sA67pPNAg/TW0BWspr-_I/AAAAAAAAAMQ/6vX8CrRzmPg/s1600/Kalkulator3.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/-Z7sA67pPNAg/TW0BWspr-_I/AAAAAAAAAMQ/6vX8CrRzmPg/s400/Kalkulator3.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5579117002836671474" style="cursor: pointer; width: 333px; height: 287px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;ini hasil run dari script di atas&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1759851003840262913-2490944000274932615?l=briliantapanjol.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://briliantapanjol.blogspot.com/feeds/2490944000274932615/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://briliantapanjol.blogspot.com/2011/03/script-bahasa-c-untuk-kalkulator.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1759851003840262913/posts/default/2490944000274932615'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1759851003840262913/posts/default/2490944000274932615'/><link rel='alternate' type='text/html' href='http://briliantapanjol.blogspot.com/2011/03/script-bahasa-c-untuk-kalkulator.html' title='Script Bahasa C untuk Kalkulator Sederhana'/><author><name>brilianta</name><uri>http://www.blogger.com/profile/07516386513479954168</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='29' src='http://3.bp.blogspot.com/-Swzy_BAvu_s/TWUWWFcHimI/AAAAAAAAAFI/nLh5SQ08_yM/s220/Foto0898%2B-%2BCopy.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-Z7sA67pPNAg/TW0BWspr-_I/AAAAAAAAAMQ/6vX8CrRzmPg/s72-c/Kalkulator3.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1759851003840262913.post-4822812984389619649</id><published>2011-02-25T20:24:00.000+07:00</published><updated>2011-03-04T22:32:26.782+07:00</updated><title type='text'>Sekilas Tentang Kampus ITS Surabaya (Institut Teknologi Sepuluh Nopember Surabaya)</title><content type='html'>&lt;div style="text-align: center;"&gt;ini beberapa foto tentang kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-XkeOV6WJ6T0/TWfB8NUXdxI/AAAAAAAAALU/WxG6yAcsjQc/s1600/DSC03610.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-XkeOV6WJ6T0/TWfB8NUXdxI/AAAAAAAAALU/WxG6yAcsjQc/s400/DSC03610.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577639903633045266" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Institut Teknologi Sepuluh Nopember &lt;/div&gt;&lt;div style="text-align: center;"&gt;Surabaya&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-UYtzXTNWkQM/TWet-wyrz4I/AAAAAAAAAHs/Lod29mLC618/s1600/DSC04260.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;span class="Apple-style-span" style="-webkit-text-decorations-in-effect: none; "&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/-UYtzXTNWkQM/TWet-wyrz4I/AAAAAAAAAHs/Lod29mLC618/s1600/DSC04260.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://4.bp.blogspot.com/-UYtzXTNWkQM/TWet-wyrz4I/AAAAAAAAAHs/Lod29mLC618/s400/DSC04260.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577617957282631554" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;identitas nama kampus yang terletak di ujung Jalan Kertajaya Indah Surabaya&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;a href="http://1.bp.blogspot.com/-oOv5pYdS6_I/TWet_CeHoEI/AAAAAAAAAH0/luZ-tJAM_3E/s1600/DSC04255.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;span class="Apple-style-span" style="-webkit-text-decorations-in-effect: none; "&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/-CL8KpIz3ng4/TWet-oNtr4I/AAAAAAAAAHk/FRVhV94T0Jw/s1600/DSC04200.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-CL8KpIz3ng4/TWet-oNtr4I/AAAAAAAAAHk/FRVhV94T0Jw/s400/DSC04200.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577617954980081538" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;Gedung Rektorat ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;a href="http://1.bp.blogspot.com/-7ZXC0oJ-VRM/TWkY5DZ5oLI/AAAAAAAAALc/MJjeti4yM6k/s1600/DSC02851.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/-7ZXC0oJ-VRM/TWkY5DZ5oLI/AAAAAAAAALc/MJjeti4yM6k/s400/DSC02851.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5578016981920620722" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;Gedung Perpustakaan ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;a href="http://4.bp.blogspot.com/-TWqV2yZFLzQ/TXD-VrujxBI/AAAAAAAAAMY/0pTRsWH9Uow/s1600/DSC04311.JPG"&gt;&lt;img src="http://4.bp.blogspot.com/-TWqV2yZFLzQ/TXD-VrujxBI/AAAAAAAAAMY/0pTRsWH9Uow/s400/DSC04311.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5580239586780759058" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;Gedung Perpustakaan ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;span class="Apple-style-span" style="-webkit-text-decorations-in-effect: underline; "&gt;&lt;a href="http://1.bp.blogspot.com/-oOv5pYdS6_I/TWet_CeHoEI/AAAAAAAAAH0/luZ-tJAM_3E/s1600/DSC04255.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-oOv5pYdS6_I/TWet_CeHoEI/AAAAAAAAAH0/luZ-tJAM_3E/s400/DSC04255.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577617962028212290" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;div style="text-align: center; "&gt;Graha Sepuluh Nopembe ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;disebut juga gedung serbaguna ITS&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;a href="http://1.bp.blogspot.com/-GpJScREHrF8/TWet_Sf--yI/AAAAAAAAAH8/KhfVsdqQbjw/s1600/DSC04258.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-GpJScREHrF8/TWet_Sf--yI/AAAAAAAAAH8/KhfVsdqQbjw/s400/DSC04258.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577617966331001634" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;Graha Sepuluh Nopembe ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;disebut juga gedung serbaguna ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;a href="http://4.bp.blogspot.com/-abd8OEZmMKU/TWet_nCI9EI/AAAAAAAAAIE/n9VPwBfmeHw/s1600/DSC04216.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://4.bp.blogspot.com/-abd8OEZmMKU/TWet_nCI9EI/AAAAAAAAAIE/n9VPwBfmeHw/s400/DSC04216.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577617971842970690" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;Masjid Manarul 'Ilmi ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;a href="http://4.bp.blogspot.com/-AliApYQu3EI/TWeyZBrOYXI/AAAAAAAAAKE/Vk8DvqJ32Rs/s1600/DSC03472.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://4.bp.blogspot.com/-AliApYQu3EI/TWeyZBrOYXI/AAAAAAAAAKE/Vk8DvqJ32Rs/s400/DSC03472.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577622806537855346" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;Gedung Pusat Robotika ITS&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center; "&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/-RwTzlYXvrPc/TWe1G95do-I/AAAAAAAAAKs/8VmlzOJozQE/s1600/Foto0950.jpg"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://2.bp.blogspot.com/-RwTzlYXvrPc/TWe1G95do-I/AAAAAAAAAKs/8VmlzOJozQE/s400/Foto0950.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5577625794821071842" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Gedung Pusat Robotika ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-KUaxhxJ5IvU/TWeyaCtz73I/AAAAAAAAAKk/03q3GmRKVoU/s1600/DSC03613.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-KUaxhxJ5IvU/TWeyaCtz73I/AAAAAAAAAKk/03q3GmRKVoU/s400/DSC03613.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577622823997009778" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Gedung Pusat Robotika ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-F8kh-I-p7Xc/TWeyZRs3-ZI/AAAAAAAAAKM/d19z1kEKlU8/s1600/DSC03474.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://2.bp.blogspot.com/-F8kh-I-p7Xc/TWeyZRs3-ZI/AAAAAAAAAKM/d19z1kEKlU8/s400/DSC03474.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577622810839742866" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Gedung Pusat Robotika ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-kWZcQ3fODSs/TWeyZp8tDLI/AAAAAAAAAKU/4n53vgRc464/s1600/DSC04237.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-kWZcQ3fODSs/TWeyZp8tDLI/AAAAAAAAAKU/4n53vgRc464/s400/DSC04237.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577622817348586674" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Gedung NASDEC (National Ship Design Engineering Center) ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-ry2D6sdGwWU/TWeyZwBXAAI/AAAAAAAAAKc/1TikUQ_B6Xg/s1600/DSC04241.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://4.bp.blogspot.com/-ry2D6sdGwWU/TWeyZwBXAAI/AAAAAAAAAKc/1TikUQ_B6Xg/s400/DSC04241.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577622818978725890" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Gedung NASDEC (National Ship Design Engineering Center) ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-RYp_wGIH9E8/TWeu99ZEjhI/AAAAAAAAAIM/jfi2z-0_xQA/s1600/DSC04219.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-RYp_wGIH9E8/TWeu99ZEjhI/AAAAAAAAAIM/jfi2z-0_xQA/s400/DSC04219.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577619042996620818" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;FTSP (Fakultas Teknik Sipil ) - ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;Ada beberapa Jurusan di FTSP :&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:sans-serif;font-size:13px;"&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.ce.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;Teknik &lt;/span&gt;&lt;/a&gt;Sipil&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;a href="http://www.ce.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;/a&gt;Program Sarjana (S1)&lt;/span&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Doktoral (S3)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.diplomasipil.its.ac.id/Program" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;Diploma III (D3)&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.arch.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;Teknik Arsitektur&lt;/span&gt;&lt;/a&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Doktoral (S3)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.enviro.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;Teknik Lingkungan&lt;/span&gt;&lt;/a&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Doktoral (S3)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.prodes.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;Desain Produk Industri&lt;/span&gt;&lt;/a&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Teknik Geomatika&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Perencanaan Wilayah dan Kota&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-2cm29GiCLpA/TWeu-zLwnvI/AAAAAAAAAIs/jc6udTM9HN8/s1600/DSC04223.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-2cm29GiCLpA/TWeu-zLwnvI/AAAAAAAAAIs/jc6udTM9HN8/s400/DSC04223.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577619057436303090" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;FTI (Fakultas Teknologi Industri) - ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;Ada beberapa Jurusan di FTI :&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:sans-serif;font-size:13px;"&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Teknik Mesin&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Diploma III (D3)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Teknik Elektro&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Doktoral (S3)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program DIII Computer Control&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Teknik Kimia&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Doktoral (S3)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Diploma III (D3)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Teknik Fisika&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program DIII Teknik Instrumentasi&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Teknik Industri&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Magister (S2)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Teknik Material &amp;amp; Metalurgi&lt;/li&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Sarjana (S1)&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://4.bp.blogspot.com/-nEGVVGTfQvU/TWeu-XjJBXI/AAAAAAAAAIc/-LQnsSHniRU/s1600/DSC04203.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://4.bp.blogspot.com/-nEGVVGTfQvU/TWeu-XjJBXI/AAAAAAAAAIc/-LQnsSHniRU/s400/DSC04203.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577619050018178418" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;FMIPA (Fakultas Matematika dan Ilmu Pengetahuan Alam) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:sans-serif;font-size:13px;"&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;S1 Fisika&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;S1 Matematika&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;S1 Statistika&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;S1 Kimia&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;S1 Biologi&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;D3 Statistika&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://3.bp.blogspot.com/-y_EeoMFEsbA/TWewC_ESd_I/AAAAAAAAAI8/yjwR5ga6fTY/s1600/DSC04247.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://3.bp.blogspot.com/-y_EeoMFEsbA/TWewC_ESd_I/AAAAAAAAAI8/yjwR5ga6fTY/s400/DSC04247.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577620228857296882" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;FTIf (Fakultas Teknologi Informasi) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:sans-serif;font-size:13px;"&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.if.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;S1 Teknik Informatika&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.si.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;S1 Sistem Informasi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://1.bp.blogspot.com/-_5Oa9Nm4V5w/TWeu-s0t9qI/AAAAAAAAAIk/LpPuzPf8cyg/s1600/DSC04232.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-_5Oa9Nm4V5w/TWeu-s0t9qI/AAAAAAAAAIk/LpPuzPf8cyg/s400/DSC04232.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577619055729047202" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;FTK (Fakultas Teknologi Kelautan) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://3.bp.blogspot.com/-m9sORT9hrwY/TWewDvinENI/AAAAAAAAAJM/26rBumZ_6n0/s1600/DSC04234.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://3.bp.blogspot.com/-m9sORT9hrwY/TWewDvinENI/AAAAAAAAAJM/26rBumZ_6n0/s400/DSC04234.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577620241869377746" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;FTK (Fakultas Teknologi Kelautan) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://2.bp.blogspot.com/-59il1tn__kY/TWewDBXE2XI/AAAAAAAAAJE/FWGXno0wEwY/s1600/DSC04233.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://2.bp.blogspot.com/-59il1tn__kY/TWewDBXE2XI/AAAAAAAAAJE/FWGXno0wEwY/s400/DSC04233.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577620229472967026" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;FTK (Fakultas Teknologi Kelautan) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:sans-serif;font-size:13px;"&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.na.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;S1 Teknik Perkapalan&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.mar-eng.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;S1 Teknik Sistem Perkapalan&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;a href="http://www.oe.its.ac.id/" class="external text" rel="nofollow" style="text-decoration: none; background-image: url(http://bits.wikimedia.org/skins-1.5/vector/images/external-link-ltr-icon.png?2); background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; padding-top: 0px; padding-right: 13px; padding-bottom: 0px; padding-left: 0px; background-position: 100% 50%; background-repeat: no-repeat no-repeat; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;S1 Teknik Kelautan&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://1.bp.blogspot.com/-LGJiTaGnmtA/TWexLBonaNI/AAAAAAAAAJk/siwD-XwSZzg/s1600/DSC04251.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-LGJiTaGnmtA/TWexLBonaNI/AAAAAAAAAJk/siwD-XwSZzg/s400/DSC04251.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577621466497116370" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;PPNS (Politeknik Perkapalan Negeri Surabaya) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a href="http://3.bp.blogspot.com/-BkWlaxhRXe0/TWexK-fS81I/AAAAAAAAAJc/Hqf6FB0eh-4/s1600/DSC04250.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://3.bp.blogspot.com/-BkWlaxhRXe0/TWexK-fS81I/AAAAAAAAAJc/Hqf6FB0eh-4/s400/DSC04250.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577621465652720466" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;PPNS (Politeknik Perkapalan Negeri Surabaya) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:sans-serif;font-size:13px;"&gt;&lt;ol style="line-height: 1.5em; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 3.2em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: none; "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Jurusan Teknik Keselamatan &amp;amp; Kesehatan Kerja&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Jurusan Teknik Bangunan Kapal&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-III Teknik Perancangan Dan Konstruksi Kapal&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-III Teknik Bangunan Kapal&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-IV Teknik Desain &amp;amp; Manufaktur&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-IV Teknik Pengelasan&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Jurusan Teknik Permesinan Kapal&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-III Teknik Permesinan Kapal&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-IV Teknik Perpipaan&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Jurusan Teknik Kelistrikan Kapal&lt;/li&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-III Teknik Kelistrikan Kapal&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;Program Studi D-IV Teknik Otomasi (Manufaktur)&lt;/li&gt;&lt;/ul&gt;&lt;/ol&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-vs6JOr5PE7s/TWexLjshdmI/AAAAAAAAAJ0/RbzRpqNIrHE/s1600/DSC04254.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/-vs6JOr5PE7s/TWexLjshdmI/AAAAAAAAAJ0/RbzRpqNIrHE/s400/DSC04254.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577621475640309346" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;PENS (Politeknik Elektronika Negeri Surabaya) - ITS&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-C4XV3CWa-Hs/TWexLdxOOwI/AAAAAAAAAJs/QyROTVAWVA4/s1600/DSC04253.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/-C4XV3CWa-Hs/TWexLdxOOwI/AAAAAAAAAJs/QyROTVAWVA4/s400/DSC04253.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577621474049407746" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;PENS (Politeknik Elektronika Negeri Surabaya) - ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span"   style="  line-height: 19px; font-family:sans-serif;font-size:13px;"&gt;&lt;h3   style="background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; font-weight: bold; margin-top: 0px; margin-right: 0px; margin-bottom: 0.3em; margin-left: 0px; padding-top: 0.5em; padding-bottom: 0.17em; border-bottom-width: initial; border-bottom-style: none; font-size:17px;color:initial;"&gt;&lt;span class="mw-headline" id="Program_Diploma_III"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Program Diploma III&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Elektronika&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Telekomunikasi&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Elektro Industri&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Informatika&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Multimedia Broadcasting&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3   style="background-image: none; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: initial; font-weight: bold; margin-top: 0px; margin-right: 0px; margin-bottom: 0.3em; margin-left: 0px; padding-top: 0.5em; padding-bottom: 0.17em; border-bottom-width: initial; border-bottom-style: none; font-size:17px;color:initial;"&gt;&lt;span class="mw-headline" id="Program_Diploma_IV"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;Program Diploma IV&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;ul style="line-height: 1.5em; list-style-type: square; margin-top: 0.3em; margin-right: 0px; margin-bottom: 0px; margin-left: 1.5em; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-image: url(http://upload.wikimedia.org/wikipedia/en/1/18/Monobook-bullet.png); "&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Elektronika&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Telekomunikasi&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Elektro Industri&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Informatika&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Mekatronika&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-bottom: 0.1em; "&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Teknik Komputer&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 60px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"   style=" line-height: normal;  font-family:Georgia, serif;font-size:13px;"&gt;&lt;a href="http://4.bp.blogspot.com/-REcGLRJn6Go/TWkY57DZkMI/AAAAAAAAALs/0IIOdyRs4B4/s1600/DSC04299.JPG"&gt;&lt;img src="http://4.bp.blogspot.com/-REcGLRJn6Go/TWkY57DZkMI/AAAAAAAAALs/0IIOdyRs4B4/s400/DSC04299.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5578016996858630338" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Keamanan super ketat&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-4pgeafaa-SA/TWexL0epgMI/AAAAAAAAAJ8/1_B9-fz1tPM/s1600/DSC04226.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://2.bp.blogspot.com/-4pgeafaa-SA/TWexL0epgMI/AAAAAAAAAJ8/1_B9-fz1tPM/s400/DSC04226.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577621480145518786" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/-wpCWlk23TQc/TWewD8H7HjI/AAAAAAAAAJU/ohtkfNXt0Uk/s1600/DSC04224.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://4.bp.blogspot.com/-wpCWlk23TQc/TWewD8H7HjI/AAAAAAAAAJU/ohtkfNXt0Uk/s400/DSC04224.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577620245247106610" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-rF1Htt-eN3M/TWewCriZ0qI/AAAAAAAAAI0/zSTUoR5-HY8/s1600/DSC04206.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/-rF1Htt-eN3M/TWewCriZ0qI/AAAAAAAAAI0/zSTUoR5-HY8/s400/DSC04206.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577620223614898850" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/--GakI-vVqqY/TWeu-Mzz5-I/AAAAAAAAAIU/QkaXb_9e7Mc/s1600/DSC04205.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 300px;" src="http://1.bp.blogspot.com/--GakI-vVqqY/TWeu-Mzz5-I/AAAAAAAAAIU/QkaXb_9e7Mc/s400/DSC04205.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577619047135307746" /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-UhinxGny23k/TWfB78cbu4I/AAAAAAAAALM/iNvDyO-9RVs/s1600/DSC04257.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://4.bp.blogspot.com/-UhinxGny23k/TWfB78cbu4I/AAAAAAAAALM/iNvDyO-9RVs/s400/DSC04257.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577639899103476610" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-BeC70vHf6t4/TWfB7iS-TSI/AAAAAAAAALE/48Af7XlSsp4/s1600/DSC04221.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://2.bp.blogspot.com/-BeC70vHf6t4/TWfB7iS-TSI/AAAAAAAAALE/48Af7XlSsp4/s400/DSC04221.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577639892084477218" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;u&gt;&lt;span class="Apple-style-span" style="-webkit-text-decorations-in-effect: none; "&gt;&lt;a href="http://4.bp.blogspot.com/-zHdb6WBzLHI/TWfB7Ua5i2I/AAAAAAAAAK8/Z4qRl1Paqx8/s1600/DSC04211.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://4.bp.blogspot.com/-zHdb6WBzLHI/TWfB7Ua5i2I/AAAAAAAAAK8/Z4qRl1Paqx8/s400/DSC04211.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577639888359623522" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/u&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-ITugQ-0Ge9g/TWfB6xTgxHI/AAAAAAAAAK0/qxpuRROYYNo/s1600/DSC04198.JPG"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;img src="http://1.bp.blogspot.com/-ITugQ-0Ge9g/TWfB6xTgxHI/AAAAAAAAAK0/qxpuRROYYNo/s400/DSC04198.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5577639878933398642" style="cursor: pointer; width: 400px; height: 300px; " /&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-U8McKaps6_4/TWkY6RiRxdI/AAAAAAAAAL8/W74tWvNtKpo/s1600/DSC04283.JPG"&gt;&lt;img src="http://2.bp.blogspot.com/-U8McKaps6_4/TWkY6RiRxdI/AAAAAAAAAL8/W74tWvNtKpo/s400/DSC04283.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5578017002893723090" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-53gCcayKn2I/TWkY6ILUOII/AAAAAAAAAL0/ftlp80oGvPE/s1600/DSC04296.JPG"&gt;&lt;img src="http://4.bp.blogspot.com/-53gCcayKn2I/TWkY6ILUOII/AAAAAAAAAL0/ftlp80oGvPE/s400/DSC04296.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5578017000381495426" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-0nNQqKFQbAQ/TXD-VznL0AI/AAAAAAAAAMg/flO6i198vec/s1600/DSC04314.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/-0nNQqKFQbAQ/TXD-VznL0AI/AAAAAAAAAMg/flO6i198vec/s400/DSC04314.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5580239588897312770" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-s4ah5Oxa9tY/TXD-WLIZFDI/AAAAAAAAAMo/81VkawM1dss/s1600/DSC04316.JPG"&gt;&lt;img src="http://4.bp.blogspot.com/-s4ah5Oxa9tY/TXD-WLIZFDI/AAAAAAAAAMo/81VkawM1dss/s400/DSC04316.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5580239595210609714" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/--RWKrp4cjU4/TWkY5Q1XPYI/AAAAAAAAALk/q8OaUu6FRlo/s1600/DSC04270.JPG"&gt;&lt;img src="http://4.bp.blogspot.com/--RWKrp4cjU4/TWkY5Q1XPYI/AAAAAAAAALk/q8OaUu6FRlo/s400/DSC04270.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5578016985525468546" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-2oon02DkHxs/TXD-W4pnlRI/AAAAAAAAAM4/1-wS-gwsIhw/s1600/DSC04323.JPG"&gt;&lt;img src="http://1.bp.blogspot.com/-2oon02DkHxs/TXD-W4pnlRI/AAAAAAAAAM4/1-wS-gwsIhw/s400/DSC04323.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5580239607429567762" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-k6UbZqhD_Ig/TXD-WTv_MrI/AAAAAAAAAMw/eMn-KhXKSus/s1600/DSC04322.JPG"&gt;&lt;img src="http://3.bp.blogspot.com/-k6UbZqhD_Ig/TXD-WTv_MrI/AAAAAAAAAMw/eMn-KhXKSus/s400/DSC04322.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5580239597524169394" style="cursor: pointer; width: 333px; height: 249px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Kawasan Kampus ITS&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;Website :&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;a href="http://www.blogger.com/www.its.ac.id"&gt;www.its.ac.id&lt;/a&gt;            =&gt; ITS&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;a href="http://www.blogger.com/www.ppns.ac.id"&gt;www.ppns.ac.id&lt;/a&gt;       =&gt; Poltek Perkapalan - ITS&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;a href="http://www.blogger.com/www.eepis-its.edu"&gt;www.eepis-its.edu&lt;/a&gt;  =&gt; Poltek Elektronika - ITS&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;sumber tulisan : &lt;a href="http://id.wikipedia.org/wiki/Institut_Teknologi_Sepuluh_Nopember"&gt;http://id.wikipedia.org/wiki/Institut_Teknologi_Sepuluh_Nopember&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1759851003840262913-4822812984389619649?l=briliantapanjol.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://briliantapanjol.blogspot.com/feeds/4822812984389619649/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://briliantapanjol.blogspot.com/2011/02/sekilas-tentang-kampus-institut.html#comment-form' title='3 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1759851003840262913/posts/default/4822812984389619649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1759851003840262913/posts/default/4822812984389619649'/><link rel='alternate' type='text/html' href='http://briliantapanjol.blogspot.com/2011/02/sekilas-tentang-kampus-institut.html' title='Sekilas Tentang Kampus ITS Surabaya (Institut Teknologi Sepuluh Nopember Surabaya)'/><author><name>brilianta</name><uri>http://www.blogger.com/profile/07516386513479954168</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='29' src='http://3.bp.blogspot.com/-Swzy_BAvu_s/TWUWWFcHimI/AAAAAAAAAFI/nLh5SQ08_yM/s220/Foto0898%2B-%2BCopy.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-XkeOV6WJ6T0/TWfB8NUXdxI/AAAAAAAAALU/WxG6yAcsjQc/s72-c/DSC03610.JPG' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1759851003840262913.post-9015533249830482701</id><published>2011-02-23T22:29:00.000+07:00</published><updated>2011-02-23T23:09:10.700+07:00</updated><title type='text'>Belajar Bahasa C sederhana</title><content type='html'>&lt;div&gt;&lt;p class="MsoNormal" align="center" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal; "&gt;&lt;span style="font-family: Georgia, serif; font-family:&amp;quot;;color:black;"&gt;&lt;a href="http://2.bp.blogspot.com/-9gNfNqysUWk/TWUq6Ac2PXI/AAAAAAAAAF0/tKkReg6ER0U/s1600/code%2Bblocks%2B2.jpg"&gt;&lt;span style="color:black;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Belajar CODE BLOCKS dengan Bahasa C&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" align="center" style="margin-bottom: 0.0001pt; text-align: center; line-height: normal; "&gt;&lt;span style="font-family:&amp;quot;;"&gt;&lt;o:p&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal; "&gt;&lt;span style="font-family: Georgia, serif; font-family:&amp;quot;;color:black;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Buat kalian yang pengen kenal dengan istilah bahasa pemrograman, kamu bisa latihan dari yang paling sederhana. Dengan &lt;/span&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Code blocks&lt;/span&gt;&lt;/i&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;merupakan salah satu cara alternatif.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-Azk_5S3-Rig/TWUtV3t2K1I/AAAAAAAAAGs/3nGN9vZHmuo/s1600/code%2Bblocks.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 250px;" src="http://1.bp.blogspot.com/-Azk_5S3-Rig/TWUtV3t2K1I/AAAAAAAAAGs/3nGN9vZHmuo/s400/code%2Bblocks.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5576913567324973906" /&gt;&lt;/a&gt;&lt;span&gt;&lt;div style="text-align: center;"&gt;tampilan &lt;i&gt;Code Blocks&lt;/i&gt;&lt;/div&gt;&lt;/span&gt;&lt;div&gt;&lt;/div&gt;&lt;span&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;di bawah ini adalah contoh kecil membuat suatu program .exe dengan menggunakan Code Blocks.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/-STXUR_UKXtA/TWUs9hyeUPI/AAAAAAAAAGc/7-ezyuzzRZU/s1600/code%2Bblocks%2B2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 333px; height: 208px;" src="http://4.bp.blogspot.com/-STXUR_UKXtA/TWUs9hyeUPI/AAAAAAAAAGc/7-ezyuzzRZU/s400/code%2Bblocks%2B2.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5576913149121941746" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Saat kita&lt;i&gt; run &lt;/i&gt;maka akan uncul program di bawah ini. Lebih dulu kita memasukkan angka sesuai perintah pertama&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/-rFw2j3JaAcE/TWUspoz6N3I/AAAAAAAAAGU/GTa-HEkPWTE/s1600/code%2Bblocks%2B2.jpg"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;/div&gt;&lt;span&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="text-align: center;"&gt;&lt;img src="http://2.bp.blogspot.com/-zeWODv00ETk/TWUumEg6XjI/AAAAAAAAAG0/VZV-Xt5m3ys/s400/code%2Bblocks%2B3.jpg" /&gt;&lt;/div&gt;&lt;div&gt;&lt;div style="text-align: left;"&gt;&lt;p class="MsoNormal" style="margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal"&gt;&lt;span style="font-family:&amp;quot;Georgia&amp;quot;,&amp;quot;serif&amp;quot;;mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;mso-bidi-Times New Roman&amp;quot;; mso-fareast-language:INfont-family:&amp;quot;;font-size:12.0pt;color:black;"&gt;&lt;a href="http://2.bp.blogspot.com/-9gNfNqysUWk/TWUq6Ac2PXI/AAAAAAAAAF0/tKkReg6ER0U/s1600/code%2Bblocks%2B2.jpg"&gt;&lt;span style="color:black;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" align="center" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal"&gt;&lt;span style="font-family:&amp;quot;Georgia&amp;quot;,&amp;quot;serif&amp;quot;;mso-fareast-Times New Roman&amp;quot;;mso-bidi-Times New Roman&amp;quot;; mso-fareast-language:INfont-family:&amp;quot;;color:black;"&gt;&lt;o:p&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal"&gt;&lt;span class="Apple-style-span"  style="color:#0000FF;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" align="center" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal"&gt;&lt;span class="Apple-style-span"  style="color:#0000FF;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" align="center" style="margin-bottom:0cm;margin-bottom:.0001pt; text-align:center;line-height:normal"&gt;&lt;span style="font-family: &amp;quot;Georgia&amp;quot;,&amp;quot;serif&amp;quot;;mso-fareast-font-family:&amp;quot;Times New Roman&amp;quot;;mso-bidi-Times New Roman&amp;quot;;mso-fareast-language:INfont-family:&amp;quot;;color:black;"&gt;&lt;o:p&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal"&gt;&lt;span style="font-family:&amp;quot;Georgia&amp;quot;,&amp;quot;serif&amp;quot;;mso-fareast-Times New Roman&amp;quot;;mso-bidi-Times New Roman&amp;quot;; mso-fareast-language:INfont-family:&amp;quot;;color:black;"&gt;&lt;o:p&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-bottom:0cm;margin-bottom:.0001pt;line-height: normal"&gt;&lt;span style="font-family:&amp;quot;Georgia&amp;quot;,&amp;quot;serif&amp;quot;;mso-fareast-font-family: &amp;quot;Times New Roman&amp;quot;;mso-bidi-Times New Roman&amp;quot;; mso-fareast-language:INfont-family:&amp;quot;;font-size:12.0pt;color:black;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1759851003840262913-9015533249830482701?l=briliantapanjol.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://briliantapanjol.blogspot.com/feeds/9015533249830482701/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://briliantapanjol.blogspot.com/2011/02/belajar-code-blocks-dengan-bahasa-c.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1759851003840262913/posts/default/9015533249830482701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1759851003840262913/posts/default/9015533249830482701'/><link rel='alternate' type='text/html' href='http://briliantapanjol.blogspot.com/2011/02/belajar-code-blocks-dengan-bahasa-c.html' title='Belajar Bahasa C sederhana'/><author><name>brilianta</name><uri>http://www.blogger.com/profile/07516386513479954168</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='29' src='http://3.bp.blogspot.com/-Swzy_BAvu_s/TWUWWFcHimI/AAAAAAAAAFI/nLh5SQ08_yM/s220/Foto0898%2B-%2BCopy.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/-Azk_5S3-Rig/TWUtV3t2K1I/AAAAAAAAAGs/3nGN9vZHmuo/s72-c/code%2Bblocks.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
