Programming Languages List


 PROGRAMMING LANGUAGES LIST

  • HTML
  • CSS
  • JAVASCRIPT
  • PHP
  • PYTHON
  • SQL
  • JQUERY
  • JAVA
  • C
  • C++
  • W3.CSS
  • BOOTSTRAP
  • C#
  • R
  • KOTLIN
  • MYSQL
  • NODEJS
  • REACT
  • JSON
  • ANGULARJS
  • W3.JS
  • XML
  • SASS
  • ICONS
  • RWD
  • GRAPHICS
  • SVG
  • CANVAS
  • RASPBERRY PI
  • CYBER SECURITY
  • COLORS
  • GIT
  • MATPLOTLIB
  • NUMPY
  • PANDAS
  • SCIPY
  • ASP
  • ACCESSIBILITY
  • APPML
  • AI
  • ML
  • STATISTICS
  • DATA SCIENCE

(1).HTML :-  

HTML is the standard markup language for Web pages.
 with HTML you can create your own Website.
HTML is easy to learn- you will enjoy it!

HTML Example

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

CSS :-  

CSS is the language we use to style an HTML document.
CSS describes how HTML elements should be displayed.

CSS Example


body { 
background-color: lightRed;
 }
 h1 {
 color: yellow;
 text-align: center;

 } 
{
 font-family: verdana;
 font-size: 25px;
 }

JavaScript :-

JavaScript is the world's most popular programming language.
JavaScript is the Programming language of the Web.
JavaScript is easy to learn.

JavaScript Example

My First JavaScript



PHP :-

PHP is a server scripting language, and a powerful tool for making dynamic and interactive web pages.
PHP is a widely-used, free, and efficient alternative to competitors such as Microsoft's ASP.

PHP Example

<!DOCTYPE html>
<html>
<body>

<?php
echo "My first PHP script!";
?>


</body>
</html>


PYTHON :-

Python is a programming language.
Python can be used on a server to create web applications.

PYTHON Example


print("Hello, World!")


SQL :-

SQL is a standard language for storing, manipulating and retrieving data in databases.
MySQL, SQL Server, MS Access, Oracle, Sybase, Informix, Postgres, and other database systems.

SQL Example

SELECT * FROM Customers;

jQuery :-

jQuery is a JavaScript Library.
jQuery greatly simplifies JavaScript programming.
jQuery is easy to learn.
jQuery Example
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});

JAVA :-

JAVA is a popular programming language.

JAVA is used to develop mobile Apps, Web Apps, Desktop Apps, Games and much more.

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

C :-

C is a general-purpose programming language, developed in 1972, and still quite popular.
C is very powerful; it has been used to develop operating systems, databases, applications, etc.


C Example

#include <stdio.h>

int main() {
  printf("Hello World!");
  return 0;
}

C++ :-

C++ is a popular programming language.
C++ is used to create computer programs, and is one of the most used language in game development.

C++ Example

#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!";
  return 0;
}


C# :-

C# (C-Sharp) is a programming language developed by Microsoft that runs on the .NET Framework.
C# is used to develop web apps, mobile apps, games and much more.

C# Example


using System;

namespace HelloWorld
{
  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("Hello World!");    
    }
  }
}


W3.CSS :-

W3.CSS is a modern, responsive, mobile first CSS framework.
W3.CSS provides equality for all browsers: Chrome. Firefox. Edge. IE. Safari. Opera.
W3.CSS provides equality for all devices: Desktop. Laptop. Tablet. Mobile.
W3.CSS is standard CSS only (No jQuery or JavaScript library).

W3.CSS Example

<div class="w3-container w3-teal">
  <h1>My Header</h1>
</div>

<img src="img_car.jpg" alt="Car">

<div class="w3-container">
  <p>A car is a wheeled, self-powered motor vehicle used for transportation.</p>
</div>

<div class="w3-container w3-teal">
  <p>My Footer</p>
</div>


Bootstrap :-

B3

Bootstrap 3 is the most stable version of Bootstrap, and it is still supported by the team for critical bugfixes and documentation changes.

Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first websites.

Bootstrap is completely free to download and use!

Bootstrap B3 Example

<div class="jumbotron text-center">
  <h1>My First Bootstrap Page</h1>
  <p>Resize this responsive page to see the effect!</p>
</div>

<div class="container">
  <div class="row">
    <div class="col-sm-4">
      <h3>Column 1</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
    <div class="col-sm-4">
      <h3>Column 2</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
    <div class="col-sm-4">
      <h3>Column 3</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
  </div>
</div>

B4

Bootstrap 4 is a newer version of Bootstrap; with new components, faster stylesheet and more responsiveness. However, Internet Explorer 9 and down is not supported.

Bootstrap 4 is a newer version of Bootstrap, which is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first websites.

Bootstrap 4 is completely free to download and use!

Bootstrap B4 Example

<div class="jumbotron text-center">
  <h1>My First Bootstrap Page</h1>
  <p>Resize this responsive page to see the effect!</p>
</div>

<div class="container">
  <div class="row">
    <div class="col-sm-4">
      <h3>Column 1</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
    <div class="col-sm-4">
      <h3>Column 2</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
    <div class="col-sm-4">
      <h3>Column 3</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
  </div>
</div>


B5 

Bootstrap 5 is the newest version of Bootstrap, which is the most popular HTML, CSS, and JavaScript framework for creating responsive, mobile-first websites.

Bootstrap 5 is completely free to download and use!

Bootstrap B5 Example

Column 1

Lorem ipsum dolor sit amet, consectetur adipisicing elit...

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...

Column 2

Lorem ipsum dolor sit amet, consectetur adipisicing elit...

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...

Column 3

Lorem ipsum dolor sit amet, consectetur adipisicing elit...

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...


R :-

R is a programming language.
R is often used for statistical computing and graphical presentation to analyze and visualize data.

R Example

How to output some text, and how to do a simple calculation in R:

"Hello World!"
5 + 5

Result:

[1] "Hello World!"
[1] 10

 

Kotlin :-

Kotlin is a modern, trending programming language.

Kotlin is easy to learn, especially if you already know Java (it is 100% compatible with Java).

Kotlin is used to develop Android apps, server side apps, and much more.

Kotlin Example

fun main() {
  println("Hello World")
}

Node.JS :-

Node.js is an open source server environment.

Node.js allows you to run JavaScript on the server.

Node.JS Example

var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type''text/plain'});
  res.end('Hello World!');
}).listen(8080);


React :-

React is a JavaScript library for building user interfaces.

React is used to build single-page applications.

React allows us to create reusable UI components.

 React Example

import React from 'react';
import ReactDOM from 'react-dom/client';

function Hello(props) {
  return <h1>Hello World!</h1>;
}





const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<Hello />);
Post a Comment (0)
Previous Post Next Post