├── CSS └── index.style ├── HTML ├── Education.html ├── README.md ├── Registration Form.html ├── Sign in page.html └── index.html ├── JavaScript └── index.js └── README.md /CSS/index.style: -------------------------------------------------------------------------------- 1 | update soon 2 | -------------------------------------------------------------------------------- /HTML/Education.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Education 8 | 9 | 10 |

I am currently learning third year Computer Engineering

11 |
12 |

College name- Parikrama college of engineering

13 |

Parikrama is best college in our Ahmednagar district because it is best for student. 14 | Placements: In this department, total SGPA required is 8.00 and above, not below. The highest package is 5LPA and lower package is 3LPA. There are small companies are here like TCS, Wipro, Bajaj etc. Most students who are talented got internship in top MNCs.

15 |
16 |

Infrastructure:

department provides practical labs, a library, a classroom and Wi-Fi. There is a very big practical lab with DELL PCs. Wi-Fi is also available in our college at high-speed in the hostel. There are very big rooms with proper cleanliness.

17 | Parikrama 18 |
19 | YouTube 20 |
21 | Parikrama 22 |
23 |
24 | 25 | Location--Kashti 26 | 27 | 28 | -------------------------------------------------------------------------------- /HTML/README.md: -------------------------------------------------------------------------------- 1 | # Web Development 2 | - This is my Web Development learning journey. 3 | 4 | - This journey will Continue Upto 1 to 2 months 5 | 6 | - This will cover following Topics 7 | 8 | 9 | - Stage 1 10 | 11 | - - HTML 12 | 13 | --- 14 | 15 | - Stage 2 16 | 17 | - - CSS 18 | 19 | --- 20 | - Stage 3 21 | 22 | - - JavaScript 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /HTML/Registration Form.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 |

Registration Form

11 |
12 | 13 |
14 |
15 | 16 |

17 |

18 |
Select your class
19 | 22 |

23 | 26 |

27 |
Select your fav subject
28 | 31 |

32 | 35 |

36 | 39 |

40 | 43 |

44 | 47 |

48 | Select your city 49 | 56 |

57 | 58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /HTML/Sign in page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Login Page 8 | 9 | 10 |

Login to Your Account

11 |
12 | 13 | 14 |

15 | 16 | 17 |

18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /HTML/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | My first page 8 | 9 | 10 |

My Portfolio

11 | 12 | -------------------------------------------------------------------------------- /JavaScript/index.js: -------------------------------------------------------------------------------- 1 | update soon 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Web-Development 2 | 3 | - This is my Web Development learning journey. 4 | 5 | - This journey will Continue Upto 1 to 2 months 6 | 7 | - This will cover following Topics: 8 | 9 | 10 | ## Stage 1- 11 | 12 | ### HTML- 13 | - HTML stands for HyperText Markup Language. 14 | - It is used for creating web pages. It is a type of code that is used to structure content on the web. 15 | - HTML uses tags to indicate how each element should be displayed on the page. 16 | 17 | --- 18 | 19 | ## Stage 2- 20 | 21 | ### CSS- 22 | - CSS stands for Cascading Style Sheets. 23 | - It is used to style and format the layout of web pages. 24 | - CSS works by targeting specific HTML elements and applying styles to them. 25 | 26 | --- 27 | 28 | ## Stage 3- 29 | 30 | ### JavaScript- 31 | - JavaScript is a programming language used to make web pages interactive and dynamic. 32 | - It allows web developers to add features like pop-up messages, interactive forms, and animations to web pages. 33 | - JavaScript code is executed by a web browser and can be added to HTML pages in a variety of ways. 34 | - It's a versatile language that's used in both client-side and server-side programming. 35 | --------------------------------------------------------------------------------