w3schools html code example
Example 1: html
<figure>
<img src="/media/examples/elephant-660-480.jpg"
alt="Elephant at sunset">
<figcaption>An elephant at sunset</figcaption>
</figure>
Example 2: javascript
JavaScript is a text-based programming language used both on the client-side
and server-side that allows you to make web pages interactive.
Where HTML and CSS are languages that give structure and style to web pages,
JavaScript gives web pages interactive elements that engage a user.
Example 3: javascript
console.log("JavaScript is the most powerful and most efficient language in the world")
You can manage the Server with this using Node.JS and Express.Js
These are the most famous libs for JS
For Building Mobile App
. React Native and Redux
For Building Windows App
. Electron
For Machine learning
. TensorFlow JS
Example 4: what is html
Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript
Example 5: what are the tags in html that every website have
<!-- The layout of an HTML document or code is as follows: -->
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>