(HTML,CSS And JS Editor)
HTML
The language for building web pages
Copy the code and try it yourself, click here.
कोड कॉपी करें और try it yourself पेर क्लिक करें
CSS Example Code
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
p {
font-family: verdana;
font-size: 20px;
}
</style>
</head>
<body>
<h1>My First CSS Example</h1>
<p>This is a paragraph.</p>
</body>
</html>
CSS
The language for styling web pages
Copy the code and try it yourself, click here.
कोड कॉपी करें और try it yourself पेर क्लिक करें
JAVA SCRIPT
The language for styling web pages
Copy the code and try it yourself, click here.
कोड कॉपी करें और try it yourself पेर क्लिक करें
JavaScript Example Code
- <!DOCTYPE html>
<html>
<body>
<h1>My First JavaScript</h1> - <button type=”button” onclick=”document.getElementById(‘demo’).innerHTML = Date()”>
Click me to display Date and Time.</button> - <p id=”demo”></p>
- </body>
</html>
