Join over 38,000 friends and followers on Twitter

banner >

You Can Learn Many Subjects Like HTML, PHP, CSS, Android And Many More.

1. Learn HTML

Hypertext Markup Language

Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications.

With Cascading Style Sheets (CSS) and JavaScript it forms a triad of cornerstone technologies for the World Wide Web.

HTML Example

<!DOCTYPE html>
<html>
<title>Your HTML Title</title>
<body>

<h1>Your heading</h1>
<p>Your paragraph.</p>

</body>
</html>


2. Learn CSS

Cascading Style Sheets

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language.












CSS Example

body {
    background-color: red;
}
h1 {
    color: white;
    text-align: left;
}
p {
    font-family: verdana;
    font-size: 15px;
}


3. Learn JavaScript
JavaScript

JavaScript is a high-level, dynamic, untyped, and interpreted run-time language. It has been standardized in the ECMAScript language specification.

<script>
function yourFunction() {
    var y = document.getElementById("test");
    y.style.fontSize = "30px";
    y.style.color = "blue";
}
</script>

<button onclick="yourFunction()">Click Here!</button>


4. Learn PHP

PHP: Hypertext Preprocessor

PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.

PHP Example

<!DOCTYPE html>
        <html>
        <body>
                <?php
                echo  "<h2>PHP is Fun!</h2>";
                echo  "Hello world!<br>";
                echo  "I'm about to learn PHP!<br>";
                echo  "This ", "string ", "was ", "made ", "with multiple parameters.";
                ?>
        </body>
        </html>


5. SQL

SQL (Structured Query Language) is a domain-specific language used in programming and designed for managing data held in a relational database management system (RDBMS), or for stream processing in a relational data stream management system (RDSMS).

6. jQuery

jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.


7. Bootstrap

Bootstrap is a free and open-source front-end web framework for designing websites and web applications.

It contains HTML- and CSS-based design templates for typography, forms, buttons, navigation and other interface components, as well as optional JavaScript extensions.

 Unlike many web frameworks, it concerns itself with front-end development only.

Source: http://freeeducation.me/

Here you will be given freedom to express yourself, your thoughts and views in the form of blogs.

No comments:

Post a Comment

Note: If Your Comment Is Irrelevant Or Inappropriate, It Will Be Removed. The Views Expressed In The Comments Do Not Necessarily Represent That Of The Owner Of The Blog. For more information see terms of use and privacy policy link. Reach 0092348033451818 for more details. Thank you for visiting.