webdev.ramyash@gmail.com
Web Development: Border radius in css.
Border radius in css
Home
About
Developer Tools
Contact
🏠 Home
›
Border radius in css.
The border-radius property is used to create rounded corners:
Example:
<a href="#home" style="background: #C00; border-radius: 50px;">Home</a>
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
🔍
Popular Posts
Insert data through ajax into MySql database.
1. Create form.php and copy below code into file. <script type="text/javascript"> $(document).ready(function(){ $(...
Create custom widget area in wordpress.
If you are familiar with Wordpress, then you can add easily widget area into the dashboard. 1. Go with an activated WordPress theme, open...
Add woocommerce custom product tabs.
Add in your functions.php add_filter( 'woocommerce_product_tabs', 'woocommerce_custom_product_tabs' ); function woocomm...
Check product if already exist in to cart using woocommerce.
Check product if already exist in to cart using woocommerce. add_action( 'woocommerce_add_to_cart_validation', 'check_produ...
Get post thumbnail by post id ("thumbnail,medium,large,full") in wordpress.
Get post thumbnail by post id ("thumbnail,medium,large,full"). <?php // without parameter -> Post Thumbnail (as set by t...
Create page templates in wordpress.
<?php /** * Template Name: PHP-AJAX-HTML * */ get_header(); ?> <div id="primary" class="content-area...
Thumbnail support custom post type wordpress.
Send email using php.
To send email using PHP, you use the mail() function. Example: $subject="Test"; $message="Test msg..."; $...
Open file in php and read the file.
<?php $myFile = "testFile.txt"; $myFile =fopen($myFile, 'r') or die("can't open file"); while(!...
Border radius in css.
The border-radius property is used to create rounded corners: Example: <a href="#home" style="background: #C00; bord...
Blog Archive
►
2019
(2)
►
March
(1)
►
February
(1)
►
2018
(10)
►
April
(1)
►
March
(3)
►
February
(1)
►
January
(5)
►
2017
(9)
►
December
(2)
►
November
(7)
▼
2015
(25)
►
November
(1)
►
October
(3)
►
February
(1)
▼
January
(20)
Border radius in css.
Fetch data randomly from database in PHP.
Count string length in PHP.
Reverse word in a string using PHP.
Confirmation Dialog Using JavaScript.
Find the number of rows in a table using MySQL.
Current date and time in php.
Open a directory, and read its contents.
Delete file from folder in PHP.
Send email using php.
Upload files in PHP.
Open file in php and read the file.
Open file in PHP.
Retrieve data from database in PHP.
Include file in PHP.
Insert data in database using PHP.
Create a Table using PHP and MySQL.
Create a database using PHP and MySQL.
Connect Mysql Database with PHP.
Use of "echo" in php
No comments:
Post a Comment