Although we try to list all the tutorials in the top menu but if you are still unable to get your tutorial then you can search the topic by entering keyword in the following form.
Looking for Dummy addresses as per country?
Checkout the following address generators as per the country.
Our Vision is to make it easy for the students to learn by providing best study material and best code snippets for the developers so that they can get all in their hands from a single website and don't need to search here and there for the day to day codes.
Tutsocean.com is a website which provides the best tutorials and study materials for the freshers as well as experienced developers. The best part is the content is free of cost for learning. You can copy and paste the code into your projects. We provide the tutorials for HTML, CSS, javascript, Jquery till now. These topics will get on going to increase by the time. fell free to choose your topic from the following listing and start your tour to that topic. Happy learning!!!!
This website provide free tutorials for learning.
It provide better tryit editor in which you don't need to worry about the closing tags.
All Topics
Following are some of the topics we provide for freshers as well as experienced peoples which are going to increase day by day
HTML
CSS
jquery
PHP
Wordpress
Top 5 Topics From HTML
In this chapter, we will talk about the HTML intro or the basics of what is HTML. What is HTML? HTML is a language for describing web pages. From the … Continue reading HTML Intro
HTML has a lot of tags that we can use to create simple to a very complex web page. Before going deep into the ocean of HTML tags, we should … Continue reading HTML Basic Tags
From this post, we will learn about the HTML attributes used to make the web pages and websites with static content. HTML Attributes are another important part of HTML markup. … Continue reading HTML attributes
Web pages can contain links that take you directly to other pages and even specific parts of a given page. These links are known as hyperlinks. In web world language, … Continue reading HTML Text Link ( HTML anchor )
Tables are very useful to arrange in HTML and they are used very frequently by almost all web developers. HTML Tables are just like spreadsheets and they are made up … Continue reading HTML Tables
Top 5 Topics From CSS
The css display property controls the box’s type generated by an element. CSS Display Property The CSS specification defines the default display value for all the elements, e.g. the <div>element … Continue reading CSS Display
The visual formatting model typically explains how elements in the document tree are processed for visual media such as computer screen. CSS Visual Formatting Model The CSS visual formatting model … Continue reading CSS Visual Formatting
Css Units are used to specify non-zeronon-zero length value in CSS properties. Understanding CSS Units The units in which length is measured can be either absolute such as pixels, points … Continue reading CSS Units
The CSS dimension properties used to control the height and width of an element. CSS Dimension Properties The CSS provides several properties such as width, height, max-width and max-height etc. … Continue reading CSS Dimension
The overflow property specifies the behavior that occurs when an element’s content overflows (doesn’t fit) the element’s box. CSS Overflow Property There may be a situation when the content of … Continue reading CSS Overflow
Top 5 Topics From jQuery
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.10/css/select2.min.css" rel="stylesheet" /> <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.10/js/select2.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".chooser").select2({ tags: true, width: 250 }); $("ul.select2-selection__rendered").sortable({ containment: 'parent' }); }); </script> </head> <body> <select class="chooser form-control" multiple="multiple"> <option>yellow</option> <option>blue</option> <option>purple</option> <option>red</option> </select> </body> |
In this tutorial we learn how to “create a Login system & jquery validation“. The prestored username, password are verified from database whether both exists or not in our database, … Continue reading jQuery Validation on Login Page
In this tutorial, we will learn about how to make “Registration system & jquery validation”. jquery will be used to validate the form with simple steps. we will also learn … Continue reading jQuery Validation on Registration Page
In this tutorial you will learn how to use jQuery Remove property to remove the HTML elements or its contents as well as its attribute from the document using jQuery. jQuery … Continue reading jQuery Remove
In this tutorial you will learn how to use jQuery Insert to insert new elements or contents to the document using jQuery. jQuery Insert New Content jQuery provides several methods, … Continue reading jQuery Insert
Top 5 Topics From PHP
Using cURL
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?php $address = "Kathmandu, Nepal"; $url = "http://maps.google.com/maps/api/geocode/json?address=".urlencode($address); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $responseJson = curl_exec($ch); curl_close($ch); $response = json_decode($responseJson); if ($response->status == 'OK') { $latitude = $response->results[0]->geometry->location->lat; $longitude = $response->results[0]->geometry->location->lng; echo 'Latitude: ' . $latitude; echo '<br />'; echo 'Longitude: ' . $longitude; } else { echo $response->status; var_dump($response); } ?> |
In this article, we provide PHP Interview Questions which you can use to crack any level of php interview. Feel free to ask any question in questionbank. Question # 41) … Continue reading Top PHP Interview Questions 2018 – part3
In this article, we provide PHP Interview Questions which you can use to crack any level of php interview. Feel free to ask any question in questionbank. Question # 21) … Continue reading Top PHP Interview Questions 2018 – part2
In this article, we provide PHP Interview Questions which you can use to crack any level of php interview. Feel free to ask any question in questionbank. Question # 1) … Continue reading Top PHP Interview Questions 2018 – part1
PayPal is an American international e-commerce business allowing payments and money transfers to be made through the Internet. PayPal is very popular payment gateway for every web project. This tutorial … Continue reading PayPal payment gateway integration in PHP
Top 5 Topics From wordPress
Introduction The “Custom Elementor Widget” is a powerful option that allows you to create stunning and dynamic widget with ease, all within the popular Elementor page builder. Whether you’re a … Continue reading Custom Elementor Widget: Minimal widget for beginners
WordPress doesn’t have SEO-friendly URLs for the search results page, which could lower your SEO ranking. This guide will be helpful if you want to change the default search URL … Continue reading Change the Default Search URL Slug in WordPress
As we all know, “taxonomy” is a prominent feature provided by WordPress that we can allocate to a default post or custom post type. This feature is not available for … Continue reading Create Taxonomy For a WordPress User
We are getting a lot of requests for a tutorial on how to Add WordPress customizer fields using Customizer API. This will be a handy tutorial for the WordPress developer who … Continue reading Add WordPress customizer fields using Customizer API
In this tutorial, we will walk you through a very simple process regarding Customize Forgot Password Email. By default, WordPress sends an email with basic information when someone fills in the … Continue reading WordPress Customize Forgot Password Email