Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser.
-
- All HTML documents must start with a document type declaration:
<!DOCTYPE html>
- All HTML documents must start with a document type declaration:
-
- The HTML document itself begins with
<html>and ends with</html>
- The HTML document itself begins with
-
- The visible part of the HTML document is between
<body>and</body>
- The visible part of the HTML document is between
-
- HTML headings are defined with the
<h1>to<h6>tags.-
<h1>defines the most important heading.
-
<h6>defines the least important heading
-
- HTML headings are defined with the
-
- HTML paragraphs are defined with the
<p>tag
- HTML paragraphs are defined with the
-
- HTML links are defined with the
<a>tag
- HTML links are defined with the
-
- HTML buttons are defined with the
<button>tag
- HTML buttons are defined with the
<!DOCTYPE html>
<html>
<body>
<h1>h1 Tag</h1>
<h2>h2 Tag</h2>
<p>Paragraph Tag</p>
<a href="https://www.google.com">This is a link</a>
<button>Click me</button>
</body>
</html>Refer : Link for all different tags.
Java is a general-purpose programming language that is class-based, object-oriented, and designed to have as few implementation dependencies as possible.
-
- Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.)
-
- It is one of the most popular programming language in the world
-
- It is easy to learn and simple to use
-
- It is open-source and free
-
- It is secure, fast and powerful
-
- Mobile applications (specially Android apps)
-
- Desktop applications
-
- Web applications
-
- Web servers and application servers
-
- Games
-
- Database connection
-
- Java is an object-oriented programming language (OOPS)
-
- Everything in Java is associated with classes and objects, along with its attributes and methods.