Kak Irudini

Catatan Belajar, Kuliah, Kerja, dll.

Showing posts with label howto. Show all posts
Showing posts with label howto. Show all posts

2022/02/08

How to Create Avatar Images

Posted by Kak Irudini on 2022/02/08 8:41 PM in CSS, howto

IRUDINI.ID -


Set a matching height and width that looks good, and use the border-radius property to add rounded corners to an image. 50% will make the image circular:

2022/02/07

How to Center Images

Posted by Kak Irudini on 2022/02/07 12:25 PM in CSS, howto

IRUDINI.ID -


To center an image, set left and right margin to auto and make it into a block element. Note that it cannot be centered if the width is set to 100% (full-width).

2022/02/01

How to make photo size in Ms.Word

Posted by Kak Irudini on 2022/02/01 1:38 PM in howto

IRUDINI.ID -


1. Size 4x6
• in milimeter: 38,1 x 55,9 mm.
• in centimeter: 3,81 x 5,59 cm.
• in inchi: 1,50 x 2,20 in.
• Pixel 72 DPI: 108 x 158 pixel.
• Pixel 96 DPI: 144 x 211 pixel.
• Pixel 150 DPI: 225 x 330 pixel.

2022/01/25

How to show Alternate Image if source image is not found

Posted by Kak Irudini on 2022/01/25 8:02 PM in howto, JavaScript

IRUDINI.ID -


<img src="imagenotfound.gif" alt="Image not found" onerror="this.onerror=null;this.src='imagefound.gif';" />

Reference:
https://stackoverflow.com/questions/3984287/how-to-show-alternate-image-if-source-image-is-not-found-onerror-working-in-ie

2022/01/17

How to embed image from google drive

Posted by Kak Irudini on 2022/01/17 12:46 PM in howto

IRUDINI.ID -


https://drive.google.com/uc?export=view&id=uniqcodefromgoogledrive

if you want to embed this code into blogger template, you need to change '&' to '&amp;'

2020/04/01

How to get Page Load Time using PHP

Posted by Kak Irudini on 2020/04/01 2:41 PM in howto, PHP

IRUDINI.ID -


Letakan di awal script

$begin=microtime(true);