Codes Program

Codesprogram is a free developers platform where developers learn and share their knowledge with programmers.

Articles

Create and explore programming artilces.

Icons

Explore web icons.

Image

Explore images and upload your Images.

Questions

Create and explore programming questions.

Snippets

Create and explore programming snippets.

Tags

Find your question easily by tag.

Questions

Ask your programming questions and write answers.

HTML

The language for building web pages.

<!Doctype html>
<html>
<head>
    <title>Html page title</head>
</head>...

CSS

The language for styling web pages.

html{
    font-family: sans-serif;
    font-size: 14px;
}
body{...

JAVASCRIPT

The language for programming web pages.

function myFunction() {
    alert('This is javascript');
}
// call function
myFunction();

PHP

A web server programming language.

<?php
function myFunction() {
    return 'Hello world';
}
echo myFunction();...

PYTHON

A programming language.

print ('Hello Python')

JAVA

A programming language.

public class Main {
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}

C

A programming language.

C++

A programming language.

C#

A programming language.

R

A programming language.

Ruby

A programming language.

Shell/Bash

A command language.

TypeScript

A programming language.

Unity

A cross-platform for developing games.

Bootstrap

A CSS framework for designing better web pages.

ActionScript

A programming language.

Assembly

A programming language.

BASIC

A programming language.

Dart

A programming language.

Go

A programming language.

Kotlin

A programming language.

Matlab

A programming language.

Rust

A programming language.

SQL

A language for accessing & managing databases.

Swift

A programming language.

VBA

A programming language.

AngularJS

A JavaScript framework.

Jquery

A JS library for developing web pages.

ReactJs

A JS library for developing web pages.

Laravel

A Php Framework.

CodeIgniter

A Php Framework.

Django

A Python Framework for developing web applications.

Snippets

Create and explore code snippets.

HTML

The language for building web pages.

<!Doctype html>
<html>
<head>
    <title>Html page title</head>
</head>...

CSS

The language for styling web pages.

html{
    font-family: sans-serif;
    font-size: 14px;
}
body{...

JAVASCRIPT

The language for programming web pages.

function myFunction() {
    alert('This is javascript');
}
// call function
myFunction();

Jquery

A JS library for developing web pages.

$(document).ready(function(){
  $("button").click(function(){
    $("p").hide();
  });
});

Bootstrap

A CSS framework for designing better web pages.

<div class="container">
  <h1>My First Bootstrap Page</h1>
  <p>This is paragraph 1.</p>
  <p>This is paragraph 2.</p>
</div>

Articles

Create and explore code articles.

HTML

The language for building web pages.

<!Doctype html>
<html>
<head>
    <title>Html page title</head>
</head>...

CSS

The language for styling web pages.

html{
    font-family: sans-serif;
    font-size: 14px;
}
body{...

JAVASCRIPT

The language for programming web pages.

function myFunction() {
    alert('This is javascript');
}
// call function
myFunction();

Jquery

A JS library for developing web pages.

$(document).ready(function(){
  $("button").click(function(){
    $("p").hide();
  });
});

Bootstrap

A CSS framework for designing better web pages.

<div class="container">
  <h1>My First Bootstrap Page</h1>
  <p>This is paragraph 1.</p>
  <p>This is paragraph 2.</p>
</div>
×