Tampilkan postingan dengan label Presentation. Tampilkan semua postingan
Tampilkan postingan dengan label Presentation. Tampilkan semua postingan

Rabu, 07 Januari 2015

3 Alat Untuk Melakukan Riset Kata Kunci Dari Google

Di Internet saat ini bisa dibilang hampir semua pebisnis online bersaing untuk mencapai posisi teratas atau halaman utama dari mesin pencari, berada di posisi pertama tentu memperbesar kemungkinan website untuk dikunjungi oleh orang lain. Jadi posisi pertama atau berada di halaman utama adalah jalan utama untuk mendatangkan pengunjung.
Sebagian pengunjung yang datang ke website anda tentu dapat di konversi menjadi pelanggan, semua mengharapkan agar pengunjung tidak hanya berkunjung sekali saja, dan itu tentu akan menjadi nilai positif untuk bisnis anda.
Untuk memulai bersaing tentu sangat penting untuk memilih kata kunci yang tepat, karena tidak bisa di pungkiri bahwa orang mencari di mesin pencari ya tentu berdasarkan kata kunci yang ada di kepala mereka masing masing-masing, dan apa yang mereka temukan tentu itu langsung akan mereka klik.
Research Keyword
Google sebagai mesin pencari nomor satu didunia bisa membantu anda untuk meneliti atau menganalisa kata kunci (research keyword) yang tepat dan potensial.
Mereka menyiapkan alat yang mumpuni yang bisa membantu anda untuk melakukan analisa.
Berikut adalah 3 alat untuk menganalisa kata kunci yang disediakan google.
3. Google Insights for Search
http://www.google.com/insights/search
Setelah anda menemukan kata kunci (keyword) yang tepat untuk website anda, dan setelah anda gunakan dan implementasikan, maka penting untuk meneliti dan memantau kata kunci yang anda gunakanan, apakah sudah memberikan perubahan atau peningkatan pengunjung, ini tentu harus menjadi catatan anda sejak hari petama anda memasang keyword tersebut pada website anda.

Selasa, 20 November 2012

Quick Tip: Use a Google Docs Presentation as a Product Tour

Google Docs, the online productivity suite developed by the search giant, includes a rarely talked about feature – a fully fledged application for building presentations. As with everything done by Google, the presentations are HTML5 based and can be embedded into any web site. They also support transitions and effects that you would normally expect from something like Powerpoint, but implemented entirely in CSS3. This turns them into the perfect tool for building product tours!

Here is what you need to do:
Create a Google Docs presentation that explains how your web app works. You can choose a design, drag and drop images from your desktop, use fonts from Google Web Fonts, define animations and even embed videos from YouTube;Publish the presentation to the web (from File -> Publish to the web..);In the Publish dialog, find the text area with the iframe embed code and copy the URL from the src attribute. This will be the link that we will be using, as the document link you see above it cannot be shown cross-domain;
So now you have the direct link to an embeddable and publicly accessible version of your presentation.
CSS3 Animated Dropdown MenuGoogle Docs - Powered Product Tour Google Docs - Powered Product Tour

All we need to do is show the presentation to people who visit our web application. To do this, we will need a lightbox script. Any plugin would do, but I chose to give fancybox2 a try.

After you download the plugin, you need to include the fancybox.css and js files in your HTML. Next, add a hyperlink that will trigger the lightbox:
Launch Tour
The link is assigned an id, and two classes. The first is a special class which tells fancybox the href should open in an iframe. The second is a class that I use to style the link into a button (you can see the relevant code in assets/css/styles.css). The href attribute points to the URL we copied from the embed code earlier.

Now to initialize the fancybox plugin:
$(function(){$('#tour').fancybox({maxWidth: 746,maxHeight: 600,fitToView: false,width: '80%',height: '80%',padding: 0}).click(); // Open the tour on page load});
Here we are passing a handful of options to fancybox and at the end trigger a click to show the plugin on load. And just like that you get a powerful tool that generates HTML5 tours and hosts them for you for free!