0% found this document useful (0 votes)
2 views2 pages

HTML CSS Java Explained Notes

This document provides an overview of HTML, CSS, and Java. HTML is a markup language used for structuring web pages, CSS is used for styling HTML elements, and Java is a popular programming language known for its security and object-oriented features. Each section includes examples and key concepts related to the respective technologies.

Uploaded by

hofefo2449
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

HTML CSS Java Explained Notes

This document provides an overview of HTML, CSS, and Java. HTML is a markup language used for structuring web pages, CSS is used for styling HTML elements, and Java is a popular programming language known for its security and object-oriented features. Each section includes examples and key concepts related to the respective technologies.

Uploaded by

hofefo2449
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML, CSS, Java Basic Notes - Explained

1. HTML (HyperText Markup Language) - Explained

HTML (HyperText Markup Language):

- HTML ek markup language hai jo web page banane ke liye use hoti hai.

- Ye page ka structure tay karti hai.

- Tags ka use hota hai jaise: <p>, <h1>, <a>, <img>.

Example:

<html>

<head><title>My Page</title></head>

<body>

<h1>Welcome</h1>

<p>Hello World!</p>

</body>

</html>

- Important tags: headings, paragraph, links, images, tables, lists.

2. CSS (Cascading Style Sheets) - Explained

CSS (Cascading Style Sheets):

- CSS se HTML elements ko design aur style milta hai.

- Aap color, font, spacing, layout sab control kar sakte ho.

- CSS 3 tariko se likha ja sakta hai: Inline, Internal, External.

Example:

p{

color: blue;

font-size: 18px;

- Common properties: color, font-size, background, margin, padding, border.

- CSS web page ko attractive banata hai.


HTML, CSS, Java Basic Notes - Explained

3. Java (Programming Language) - Explained

Java (Programming Language):

- Java ek popular programming language hai jo secure, fast aur object-oriented hai.

- Java se logic likha jata hai, jaise apps aur software banane ke liye.

Example:

public class Main {

public static void main(String[] args) {

System.out.println("Hello World");

- Java ke concepts: Variables, Data Types, Loops, Conditions, Classes & Objects, Inheritance.

- Ye platform-independent hai, yaani ek baar likhne ke baad kahin bhi chala sakte ho.

You might also like