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 Example
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
CSS :-
CSS Example
JavaScript :-
My First JavaScript
PHP :-
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>
PYTHON :-
PYTHON Example
SQL :-
jQuery :-
$("p").click(function(){
$(this).hide();
});
});
JAVA :-
JAVA is a popular programming language.
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.
int main() {
printf("Hello World!");
return 0;
}
C++ :-
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
C# :-
C# Example
W3.CSS :-
<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 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, 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!
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 :-
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 />);