Latest News

Thursday, June 30, 2016

Dahican Beaches In Mati City

1. Amihan sa Dahican (Tent)

Home of the Amihan Boys, those skimboarders who fly on waves you always see on photos, this area of the beach is the busiest during weekends.

Accommodation is possible by setting up tent. They also have tents for rent.

What I love about Amihan sa Dahican is the community feel and that most kids sleep inside hammocks. What I usually do is buy fresh fish or squids in the morning good for everyone in the kubo and share breakfast. This is good vibes! Kuya Jun and Winston Plaza are leading this group of young skimmers and surfers and are taking care of the beach area and turtles since 2004.

If you are into surfing, the beach break is on from late October to Early March or the Amihan season.


Sunrise at Dahican Beach


Tent with the girlfriend at Amihan sa Dahican

Fee: Tent set-up P50
Tent Rental Fee: Php300

2. Botona Beach Resort (AC Rooms and cottages)

They have cottages that are perfect for family and barkadas and friends traveling in a group because their rooms are big. There rooms have 2 queen sized beds and is good for 4pax. Rates starts at Php1,800/night.

Room with private terrace

2 queen sized beds (good for 4pax)

Contact number: +63 918 525 5227
Official Website: www.botona.com

3. Surf Village Hostel

This is one of the new accommodation in Dahican. Owned by my good friends Harry and Irene. If I’m in Mati you will definitely see me since I live next door. About 200 meters from the beach, very quiet and safe. Recommended!


Rates:
Hut, fan, shared bathroom. 1 person- P700, 2persons- Php1,000
Hut, fan, with private bathroom. 1 person- Php1,000, 2 persons- Php1,300
Hut, good for 3 people- Php1,500
Contact number: 0946-299-2751
Email: info@surf-village.ph

4. Dahican Surf Resort / DSR

Another place which is near the beach break. Managed by surfers, they rent out longboards and skimboards at Php300/hour with instructor.
They have kubo-type cottages covered with mosquito net-like curtain where you can stay for a night.

Contact Numbers: 0923-407-6381
Website: www.dahicanbeachclub.com/dsrHOME.html

5. Tropical Kanakbai

The most high-end accommodation available in Dahican Area. They are far away from the crowd on the far end of Dahican Beach and is safer for kids to swim since it is end of the cove. The owner also owns Dahican Surf Resort.
Rates below:
HABAGAT HOUSE – P 3,500 – Per couple w/ breakfast     – Additional person P 1,000
AMIHAN HOUSE – P 4,000 – Per couple w/ breakfast     – Additional person P 1,000
HABAGAT HOUSE – P 10,000 – Whole house (Max. 10 Persons)
AMIHAN HOUSE – P 12,000 – Whole house (Max. 10 Persons)


Facebook: www.facebook.com/Dahicanbeachclub
Contact: GABBY SIBALA 0927-287-1790
Email: admin@dahicanbeachclub.com

6. Pacific Breeze

This is a beach resort owned by the Mayor’s sister.  They have a nice homey accommodation and lawn area. Not a lot of sand on their front beach since its rocky. But it is perfect spot for surfing especially during high and mid tide.

Master bedroom at Pacific Breeze

See that peeling wave?

Exclusive use of the whole area, whole house with 2 air-conditioned rooms, dining area, living area, kitchen and kiosk outside. Plus 2 helpers to assist the guest. Maximum of 12 persons at Php6,000/night
Contact: Jing C. Rabat 0908-863-6710
Facebook: www.facebook.com/pacific.breeze.mati

7. Kubo sa Dahican

I haven’t seen this when I was in Mati maybe because I only hang out at Amihan area. But I saw this come up on many blog sites. If you are interested, Just contact them directly.

Entrance fee: P50.00 includes free use of swimming pool and shower areas .
Day use of Cottages/Kiosks: P300.00
Mobile numbers: 0917-721-2724 / 0906-155-2094
Website: www.kubosadahican.com/index.html

HOW TO GET TO DAHICAN BEACH FROM DAVAO CITY INTERNATIONAL AIRPORT:
1. WALK. From Davao International Airport, you just have to walk outside until you reach the highway.
2. BUS/VAN. Board the Bachelor Bus (yellow bus) to Mati. They pass by there almost every hour from 3am-8pm (Travel time is 5hours). You may also opt to take the taxi/jeepney going to GMALL or Victoria Plaza (jeepneys are available when you cross the highway). They have van terminals that goes to Mati City, fare is Php220 and travel time is 3-4hours.
3. HABAL-HABAL/MOTORBIKE. From Mati City Bus Terminal, you can take the motorbike (habal-habal) to Dahican Beach. Expect to pay Php50-100 depending on what time you arrive at Mati City. Tell the driver to bring you to Dahican, particularly to Amihan sa Dahican. After about 15 minutes you would find yourself walking towards the Pacific blue sea.





Media Queries or View for Different Sizes Using CSS

Hello Guys! below are the sample codes for coding CSS in different sizes of Devices such as mobile phones, tablet, laptop and PC.



# Desktop
@media only screen and (min-width:769px){
.desktopquery ul{margin-left : 95% !important}
}

# Desktop
@media only screen and (min-width: 992px) {
.desktopquery ul{margin-left : 95% !important}
}

# Huge
@media only screen and (min-width: 1280px) {
.desktopquery ul{margin-left : 95% !important}
}

/**MOBILE VIEW**/
@media only screen and (max-device-width: 480px) {

/*Logo alignment
.banner .op-logo img{margin-left:1cm !important}*/

  .ajsize img{width: 150px !important;margin-bottom:22px !important;margin-left: 75px !important}

.frontdev img{
  margin-left: 28% !important;
}

You will put this in your main css or create new css file and link this to your page.

/* ================================================ */
/* Responsive - Media queries                       */
/* Based on:                                        */
/* http://lab.maltewassermann.com/viewport-resizer/ */
/* ================================================ */


/* ============================================== */
/* HDTV                                           */
/*                                      1920x1080 */
/* ============================================== */
@media screen and (min-width: 1080px) and (max-width: 1920px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

/* ============================================== */
/* Widescreen                                     */
/*                                       1280x800 */
/* ============================================== */
@media screen and (min-width: 800px) and (max-width: 1280px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

/* ============================================== */
/* Twitter Bootstrap                              */
/*                                       980x     */
/* ============================================== */
@media screen and (min-width: 980px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

/* ============================================== */
/* Twitter Bootstrap                              */
/*                                       x979     */
/* ============================================== */
@media screen and (max-width: 979px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

/* ============================================== */
/* iPad Landscape & Portrait                      */
/*                                       1024x768 */
/* ============================================== */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

/* ============================================== */
/* iPad Landscape                                 */
/*                                       1024x768 */
/* ============================================== */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

/* ============================================== */
/* iPad Portrait                                  */
/*                                       768x1024 */
/* ============================================== */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}

/* ============================================== */
/* Small Tablet Landscape/Portrait                */
/*                                        800x600 */
/* ============================================== */
@media screen and (min-width: 600px) and (max-width: 800px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}


/* ============================================== */
/* iPhone5/Android landscape (& narrow browser)   */
/*                                        568x320 */
/* ============================================== */
@media screen and (min-width: 320px) and (max-width:568px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

/* ============================================== */
/* iPhone4/Android landscape (& narrow browser)   */
/*                                        480x320 */
/* ============================================== */
@media screen and (min-width: 320px) and (max-width:480px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

/* ============================================== */
/* iPhone4/Android portrait               320x480 */
/* iPhone5 portrait                       320x568 */
/* ============================================== */
@media screen and (max-width:320px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

/* ============================================== */
/* Smaller devices                                */
/* Android Landscape                      320x240 */
/* ============================================== */
@media screen and (min-width:240px) and (max-width:320px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

/* ============================================== */
/* Smaller devices                                */
/* Android Portrait                       240x320 */
/* ============================================== */
@media screen and (max-width:240px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}

Thursday, June 23, 2016

List of Smart and Talk 'N Text Unli Promo

Smart and Talk 'N Text Unli Promo


20pesos
(Promo) - UNLITALKPLUS

PROMO FEATURES:
Unlimited texts to TNT/Smart
* Unlimited calls to TNT/Smart from 10PM to 5PM
Validity: 1 day
Amount needed: Php 20

HOW TO REGISTER T20?
Just type T20 and send to 4547

HOW TO CALL USING T20?
To call, just dial *4547 + 11-digit TNT/Smart number

Example: *454709461234567

Remember: 

The Unlitalk (unlimited call) feature of this promo can only be used from 10PM to 5PM of the next day.

Please maintain a P1.00 balance while enrolled in T20.

Recommended for you


NamePriceKeywordDescription

Big Unli Text 50
P50.00/7 daysTEXT50Unlimited Smart, SUN, TNT SMS
30 MB Data
Text TEXT50 to 9999
Buy Online

All in 25
P25.00/dayALLIN25Unlimited SMS to all networks
60 Smart, SUN, TNT Minutes
10 MB Data
Text ALLIN25 to 9999
Buy Online

SurfMax 50
P50/1 dayText SURFMAX50 to 9999All-day surfing for 1 day
Offers 2G or 3G, where available
Learn MoreBuy Online

SurfMax Plus 995
P995/30 daysText SURFMAXPLUS995 to 9999All-day surfing for 30 days
Offers 2G, 3G or 4G, where available 
Learn More 
Buy Online

Mega All in 250
P250.00/30 daysMEGA250Unlimited SMS to all networks
180 Smart, SUN, TNT Minutes
100 MB Data
Text MEGA250 to 9999
Buy Online




TRINET300 TNT: 30 DAYS UNLI TEXTS + 300 MINS CALLS + 30MB INTERNET

PROMO FEATURES

  • 30 days of unlimited texts to TNT/Smart/Sun
  • 300 minutes worth of calls
  • 30MB mobile internet
  • Validity: 30 days
  • Amount: Php 300

HOW TO REGISTER TO TRINET300?

Just text TRINET300 and send it to 2477

HOW TO CALL USING TRINET?

Just dial *2477 + 11-digit TNT/Smart/Sun number
Example: *247709461234567
REMEMBER: Multiple promo registration is prohibited. You must first finish consuming your currently registered promo before availing another one.

TP10 TNT UNLITEXT + 10 MINS CALL + 50 ALL NET TEXTS


PROMO NAME: UNLITTXTPLUS10
Promo Features:

– Unlimited texts to TNT/Smart

– 10 minutes call to TNT/Smart
– 50 texts to all networks

– Valid for 1 day

HOW TO REGISTER TP10?
On your phone, type TP10 and send it 3545

HOW TO CALL USING TP10?
Just dial *3545 + 11 digit TNT/Smart number
Example: *354509461234567

To enjoy this promo, you must have a P1 maintaining balance.

AL30 TNT – UNLITEXT + 30 MINS CALLS + 30 MINS SURFING



PROMO NAME: ARAW-ARAW LOAD 30
Promo Features:

Unlimited text to TNT/Smart
30 mins calls
30 mins surfing
Validity: 3 days
HOW TO REGISTER AL30?
Type AL30 and send it to 4545

HOW TO CALL USING AL30?

Just dial *6565 + 11-digit TNT number.
Example: *656509461234567
To enjoy this promo, you must have a P1 maintaining balance.

UA20 OR UNLITXT2ALL20

Promo Name: UnliTxt2All20
Promo CodeUA20
How to register UA20?
On your phone, type UA20 and send it to 4545
Validity: Two (2) days
Balance needed: 20 pesos
P10 Promo
Unli call and text to SMART and Talk 'N Text
How To Register?
Just Type P10 and send to 3545
After that you can extend the promo for only 5 peso.
How To extend?
Just type EDAY and send to 4545

Enjoy all this Promo...

Recent Post