Learning Today,
Leading Tomorrow

Welcome to Codingwith Anas
We are team of talented developers, Developing Websites
Using HTML, CSS, JavaScript, Python and many more languages

HTML %
CSS %
JavaScript %
Python %
DataBase %
C-Language %

Learn Free

Start Learning

If you don't know from where to start learning, then I consider you to take your first learning step from HTML then second step CSS then JavaScript or Python after these it's your choice.

<!DOCTYPE html>
<html>
    <head>
        <title>Welcome to Codingwith Anas</title>
    </head>
<body>
    <h1>Codingwith Anas Heading</h1>
    <p>Codingwith Anas Paragraph</p>
</body>
</html>

HTML

What is HTML?

HTML is a "Markup Language". It stands for "Hyper Text Markup Language" which is used to design the structure of web-pages. It was developed by "Tim Berners-Lee" in 1993. It was published as "HTML version 2.0" in 1995 and very soon as "HTML 4.01" in 1999, then in 2021 "HTML 5.0" was released and we can say that it is currently used as "www(World Wide Web)". HTML allows you native API, easily browse internet, create web documents, offline storage, game development, web development and it also supports data entry.


body {
  colorwhite;
  background-colorblack;
}

.text {
  font-sizexx-large;
  font-weightbolder;
  font-styleitalic;
}

CSS

What is CSS?

CSS is a StyleSheet language. It stand's for "Cascading Style Sheet". It is used to give styles to an object which is used to describe the presentation of the webpage. It was developed by "HÃ¥kon Wium Lie" in 1996 and the first verion of CSS was launched with the name "CSS1", then in 1998 "CSS2" and in 1999 "CSS3" but this time CSS3 was very different compare to "CSS1" and "CSS2", because it was published as a set of separate documents known as "modules".


function change() {
    let light = document.getElementById("light");

    if (light.src.match("LightOff")) {
      light.src = "LightOn.jpg";
      light.style.marginLeft = "-21.19px";
    }

    else {
      light.src = "LightOff.jpg";
      light.style.marginLeft = "0px";
    }
}

JavaScript

What is JavaScript?

JavaScript is a "Scripting Language". It is used to make Web Pages more faster and attractive by adding "Attractive Behavior" To Web Pages. It is used for Creating Web Pages, Web Servers, Mobile Apps, It is also used for Game Development and Developing Servers Applications. It was developed by "Brendan Eich" in 1995 and was published with the official name "Mocha" but later some days it was known as "LiveScript" and then know as "JavaScript". It was developed for "Netscape 2" and became "ECMA-262 standard" in 1997, After that Netscape handed JavaScript over to "ECMA". The official name of JavaScript then changed to "ECMAScript". ECMAScript versions were abbreviated to ES1, ES2, ES3, ES4, ES5 and ES6, Since 2016 new versions were named by years (ECMAScript 2016/2017/2018 and so on..). The latest version of JavaScript is "ES2022" and it is the 13th edition and it is released in "June 2022".