This course will guide you through the basics of web designing with HTML, CSS, and JavaScript, along with an introduction to programming using C and C++. You will gain hands-on experience in designing websites and writing programs in C/C++.

Shreelakshmi
This tutorial will help you learn both web designing and programming techniques. You will become proficient in HTML, CSS, and JavaScript for front-end development, as well as C and C++ for understanding programming fundamentals.
This tutorial requires no prior experience in programming or web design. It is designed for beginners who want to get started with both web development and programming.
This module introduces C as a programming language, its history, and its core features that make it a foundational language for learning programming concepts. You’ll understand why C is widely used for system-level programming and embedded systems.
In this module, you'll learn about the essential software tools for C programming, specifically Turbo C++. We’ll cover the process of installing Turbo C++ and using it to compile and run C programs. You'll also explore how to set up the environment and get started with writing and executing your first C programs.
This section explores the structure of a C program, focusing on the main function and how to create a simple program that prints messages to the console. You'll also learn how to save, compile, and run C programs on your computer.
In this lesson, we discuss C’s data types, including primitive types like int, char, float, and double. You’ll learn how to declare variables, their scope, and their default values.
This section explains various operators used in C programming, such as arithmetic, relational, logical, and bitwise operators. You will learn how to manipulate data using these operators.
Learn the basics of control flow in C programming, such as conditional statements like if, else, and switch. You'll also explore decision-making structures and their use cases in real-world programming.
This lesson covers the use of the scanf function to take user input during program execution. You’ll learn how to accept different data types and validate the user’s input effectively
This section focuses on the switch-case control structure, an efficient way to handle multiple conditions and execute specific actions based on user input or variable values.
Learn how to use looping constructs in C—while, do-while, and for—to repeat actions in your program. This lesson explores the use cases and syntax of each loop and helps you understand when to use them.
In this module, you will learn about arrays, which are used to store multiple values of the same type. You’ll explore how to declare, initialize, and access array elements, as well as common array operations.
This section dives into pointers, one of C’s most powerful features. Learn how to use pointers to store memory addresses, manipulate data directly in memory, and understand how pointers can optimize your programs.
This module covers functions in C, including function declaration, definition, and invocation. You will learn how to write modular programs using functions to improve code readability and reusability.
File handling in C involves reading and writing to external files. This lesson will introduce you to file operations like opening, closing, reading from, and writing to text files using C’s file handling functions.
Explaining the use of structures to group different data types and the difference between structures and unions.
Using #define, #include, #ifdef, #ifndef, and other preprocessor commands to control code compilation
Introducing multi-threading in C using libraries like pthread (if applicable)
An introduction to C++, a language that builds on C by adding object-oriented programming features. This module covers C++ syntax, features, and the advantages of using C++ for modern application development.
Similar to the C programming introduction, but in C++ you’ll learn how to structure your C++ program, define header files, the main function, and execute a simple program that prints to the screen.
This hands-on module will guide you through converting C programs to C++ to see the differences in syntax and structure. You’ll understand how C++ introduces new concepts like classes and objects.
A three-day practical session where students can work on coding exercises and challenges independently, applying what they’ve learned about C and C++ to solve real-world programming problems.
Introduction to Object-Oriented Programming (OOP) in C++. You’ll learn how to define classes and objects, the key principles of encapsulation (hiding data) and abstraction (simplifying complex systems), and how they are implemented in C++.
This lesson explains inheritance, where one class can inherit the properties and behaviors of another class. You'll learn how to create parent-child class relationships in C++ and how inheritance promotes code reuse.
Polymorphism allows methods to have different behaviors based on the object calling them. In this section, you'll learn about runtime polymorphism using function overriding and static polymorphism with function overloading.
Learn how to overload operators in C++ to perform custom operations on user-defined types. This feature allows you to give new meaning to operators like +, -, *, etc., when used with your own objects.
C++ templates allow you to write generic code that can operate on different data types. In this module, you'll learn how to create function templates and class templates, making your code reusable and type-independent.
C++ enhances file handling compared to C. This lesson will teach you how to read and write data to files using file streams, and how to manage files with more flexibility in C++.
Explanation of different types of constructors (default, parameterized, and copy) and destructors
Understanding the concept of friend functions in C++ for accessing private and protected data of classes.
Explaining runtime polymorphism using virtual functions, and understanding abstract classes and pure virtual functions.
Using try, catch, and throw blocks in C++ for handling exceptions.
Introduction to important STL containers like vector, map, set, and algorithms to manipulate them.
Discussing resource management in C++ through constructors and destructors to ensure resources are freed properly.
Understanding namespaces to avoid name collisions in large C++ programs.
This section introduces you to the basics of web design, explaining its importance in the web development process. You’ll learn about design principles such as usability, aesthetics, and user experience (UX), as well as an overview of the tools and software used in the industry.
In this section, you’ll learn how to create your first HTML web page. You will explore HTML tags like <html>, <head>, and <body>, as well as the process of saving your file and the basic structure of a web page. Additionally, you’ll learn about the client-server model and the difference between client-side and server-side web technologies.
Learn the basic structure of an HTML project, including file organization and how to maintain a clean structure for larger web projects. This will help you manage and organize code efficiently as you develop web pages.
Explore fundamental HTML tags such as <h1>, <p>, <a>, and others. Understand their functions and learn how to use them to create a basic webpage with text and links.
Learn how to add images to your HTML page using the <img> tag, insert headings with <h1>, and add running text using the <marquee> tag. This section covers more advanced HTML text elements.
Dive into HTML block-level elements like <div> and inline elements like <p>. Understand their uses in structuring content, creating layouts, and improving webpage organization.
Explore how to create ordered lists, unordered lists, and definition lists using <ol>, <ul>, and <dl>. You’ll also learn how to style and manage lists.
This section teaches you how to create and style tables in HTML using <table>, <tr>, <td>, and <th>. You’ll learn how to structure data effectively on a webpage.
Further exploration of HTML tables, including techniques for adding borders, cell spacing, and cell padding for better visualization of your tables.
Learn the principles of creating a well-organized web page layout using HTML. This includes the proper use of sections, headers, footers, and sidebars to create a responsive design.
In this section, you’ll understand how to add CSS to your HTML page. You’ll learn about inline, internal, and external CSS, as well as the difference between ID and class selectors, which are key concepts for styling HTML elements.
Learn how to add inline CSS directly within HTML tags. This section also explains why inline CSS should be used sparingly in favor of external stylesheets for cleaner code.
Understand the method of placing CSS styles inside the <style> tag in the <head> section of your HTML document. This is ideal for styling a single page without affecting others.
Learn the benefits of using external CSS for a website, including creating a separate .css file and linking it to your HTML document. This method keeps your HTML code clean and enables you to style multiple pages with one CSS file.
Explore how to create and style vertical and horizontal navigation menus using CSS. You’ll learn how to use unordered lists to create menus and how to apply styling to make them functional and visually appealing.
In this section, you’ll learn how to create forms using HTML5 elements like <input>, <select>, <textarea>, and <button>. You’ll also cover form validation features in HTML5.
Build on your understanding of HTML5 forms by learning how to implement features like date pickers, email validation, and number fields to improve form usability.
Learn the distinction between padding and margin in CSS. This section covers how padding is used inside elements, while margin defines the space between elements, and how to adjust these properties for layout control.
Understand advanced CSS properties like float, display, position, and overflow, which allow you to control the layout and positioning of elements on your webpage.
Further delve into these properties to understand their effects on elements like divs, text, and images, and learn how to avoid common issues like layout shifting.
Start learning JavaScript by understanding how to integrate it into your webpage. You’ll explore basic functions like alert(), document.write(), and console.log(), which help you interact with users and debug code.
Explore JavaScript’s data types, variables, and how to store and manipulate values. Learn about JavaScript comments and how they help document your code.
Learn how to define and use functions in JavaScript, allowing you to group related code together, making it reusable and easier to manage. You'll explore function arguments, return values, and scope.
This section covers advanced function topics like anonymous functions, arrow functions, and callback functions. You’ll gain a deeper understanding of how functions work in JavaScript and how to use them to make your code more flexible and concise.
Costs: ₹13,000 ₹15,000
Include This Course