0% found this document useful (0 votes)
5 views1 page

HTML, CSS, Java Notes Explained

The document provides brief notes on HTML, CSS, and Java. HTML is used for structuring webpages with tags, CSS is for designing HTML pages through various methods, and Java is a programming language for creating applications and software. Each section includes a simple example to illustrate the concepts.

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)
5 views1 page

HTML, CSS, Java Notes Explained

The document provides brief notes on HTML, CSS, and Java. HTML is used for structuring webpages with tags, CSS is for designing HTML pages through various methods, and Java is a programming language for creating applications and software. Each section includes a simple example to illustrate the concepts.

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

HTML, CSS, Java Basic Notes - Explained

1. HTML - Short Notes

HTML (HyperText Markup Language):

- Webpage ka structure banata hai.

- Tags se kaam karta hai. Jaise: <p>, <h1>, <a>, <img>.

- Example:

<html><body><h1>Hello</h1></body></html>

2. CSS - Short Notes

CSS (Cascading Style Sheets):

- HTML page ko design karne ke liye.

- 3 tareeke: Inline, Internal, External.

- Example:

p { color: red; font-size: 16px; }

3. Java - Short Notes

Java (Programming Language):

- Ek programming language hai.

- Apps & software banane ke liye.

- Example:

public class Main {

public static void main(String[] args) {

[Link]("Hello");

You might also like