0% found this document useful (0 votes)
14 views6 pages

Web Programming Technologies Guide

The document outlines teaching guidelines for a Web Programming Technologies course at ACTS, Pune, aimed at introducing students to various web technologies including HTML, CSS, JavaScript, JSON, AJAX, Node.js, Express.js, and React. It includes a detailed session plan covering lectures and lab exercises, along with references for further reading. The course is designed to provide practical skills in web development through hands-on projects and assignments.
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)
14 views6 pages

Web Programming Technologies Guide

The document outlines teaching guidelines for a Web Programming Technologies course at ACTS, Pune, aimed at introducing students to various web technologies including HTML, CSS, JavaScript, JSON, AJAX, Node.js, Express.js, and React. It includes a detailed session plan covering lectures and lab exercises, along with references for further reading. The course is designed to provide practical skills in web development through hands-on projects and assignments.
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

ACTS, Pune

Teaching Guidelines for


Web Programming Technologies
PG-DAC August 2025

Objective: To introduce the students to HTML, CSS, JavaScript, XML, JSON, Ajax, [Link], [Link],
React, React-Redux and practical relevance of all these technologies.

References:
• Fundamentals of Web Development, 1e, by Randy Connolly, Ricardo Hoar / Pearson
• MERN Quick Start Guide – Build web applications with MongoDB, [Link], React, and Node by
Eddy Wilson IriarteKoroliova / Packt
• Ajax in Action by Dave Crane, Eric Pascarello /Dreamtech Press
• JavaScript: The Good Parts by Douglas Crockford / O'Reilly
• Pro MERN Stack: Full Stack Web App Development with Mongo, Express, React, and
NodebyVasan Subramanian / Apress
• Web Application Security: A Beginner's Guide by Bryan Sullivan & Vincent Liu / Tata McGraw Hill
• W3Schools Tutorials [[Link]
• Mozilla Developer Network Web Development Tutorials [[Link]
US/docs/Learn/Getting_started_with_the_web]
• Curated Tutorial Links on ES6, React, etc. [[Link]

Session 1: Architecture of Web


Lecture:
• Brief history of the Internet
• Working of Internet work
• Internet Protocol; HTTP
• Domain Names; Domain Name Service servers
• HTTP Protocols
o Difference between HTTP1.0, HTTP 1.1, and HTTP 2.0
o Methods – GET, POST, HEAD, PUT, DELETE, etc.
o Status codes
o Stateless nature of the protocol and HTTP Session
o HTTPS
• Architecture of the Web
• Web servers – IIS, Apache server

Lab:
• Exploring different browsers
o Mozilla Firefox, Google Chrome, Safari
• Exploring different text editors
o Windows: Notepad++, Linux: Gedit or Vim or Emacs

PG-DAC Page 1 of 6
ACTS, Pune

Session 2: HTML
Lecture:
• Introduction to HTML5
• Introduction to basic HTML Tags
o Alignment, Headings, Anchor, Paragraph, Image, Lists, Tables, and iFrames
• HTML5
o New features in HTML5
o New elements, new attributes, link relations, microdata, ARIA accessibility, objects,
events, and Canvas tags
o HTML5 Validation
o Audio & Video Support
o Geo-location Support
• HTML Forms & Controls
o Input, Text Area, Radio Button, Checkbox, Dropdown, Submit, Reset, Button, etc.
• Introduction to Document Object Model(DOM)
Lab:
• Create a HTML form for building your resume.

Session 3: Cascading Style Sheets (CSS)


Lecture:
• Introduction to CSS, Styling HTML with CSS, Structuring pages with CSS,
• Inline CSS, Internal CSS, External CSS, Multiple styles, CSS Fonts
• CSS Box Model
• id Attribute, class Attribute
• HTML Style Tags
• Linking a style to an HTML document
Lab:
• Apply inline, internal,and external CSS to change colors of certain text portions, bold,
underline, and italics certain words in the previously created HTML resume form.

Session 4: Responsive Web Design


Lecture:
• Introduction of UI Scripting
• The Best Experience for All Users
o Desktop, Tablet, Mobile
• Bootstrap
o Overview of Bootstrap
o Need to use Bootstrap
o Bootstrap Grid System
o Grid Classes
o Basic Structure of a Bootstrap Grid
o Typography
o Components – Tables, Images, Jumbotron, Wells, Alerts, Buttons, Button Groups,
Badges/Labels, Progress Bars, Pagination, List Groups, Panels, Dropdowns, Collapse,
Tabs/Pills, Navbar
o Forms, Inputs
o Bootstrap Themes, Templates
Lab:
• Update the design of the Resume form using Bootstrap

PG-DAC Page 2 of 6
ACTS, Pune

Session 5: JavaScript
Lecture:
• Introduction to JavaScript
• Variables in JavaScript
• Statements, Operators, Comments, Expressions, and Control Structures
• JavaScript Scopes
• Strings, String Methods
• Numbers, Number Methods
• Boolean Values
• Dates, Date Formats, Date Methods
• Arrays, Array Methods
Lab:
• Practice writing basic JavaScript programs for better understanding of the language constructs

Sessions 6 & 7: JavaScript


Lecture:
• Objects, Object Definitions, Object Properties, Object Methods, Object Prototypes
• Functions, Function Definitions, Function Parameters, Function Invocation, Function Closures
• Introduction to Object Oriented Programming in JS
o Method, Constructor, Inheritance, Encapsulation, Abstraction, Polymorphism
Lab:
• Write a JavaScript program to sort a list of elements by implementing a sorting algorithm.
• Write a JavaScript program to list the properties of a JavaScript object.

Sessions 8 & 9: JavaScript


Lecture:
• Document Object Model (DOM)
o Object hierarchy in JavaScript
o HTML DOM
o DOM Elements, DOM Events
o DOM Methods
o DOM Manipulation
• Forms, Forms API, Forms Validation
• Regular Expressions
• Errors, Debugging
• Introduction to Browser Dev Tool
• Pushing code quality via JSLint tool
Lab:
• Write a JavaScript function to get the First name and Last name from the previously created
Resume form
• Validate the entire Resume form using client-side JavaScript
• Write a JavaScript function to validate whether a given value is RegEx or not.

Session 10: JSON & jQuery


Lecture:
● JSON: JavaScript Object Notation (JSON)
o Introduction and need of JSON
o JSON Syntax Rules
o JSON Objects, JSON Arrays, JSON Files
o JSON parsing

PG-DAC Page 3 of 6
ACTS, Pune

● jQuery: Introduction
o jQuery selectors
o jQuery events
o jQuery animation effects
o jQuery DOM traversal and manipulation
o Data attributes and templates
o jQuery DOM utility functions
o jQuery plugins
Lab:
● Create a JSON object, array, and file to store a cricket match (or any team sport) scoreboard.
● Write a jQuery program to get a single element from a selection of elements of a HTML page.
● You are having sample data for the link. Write jQuery code to change the hyperlink and the
text of an existing link.
● Write a jQuery program to attach a click and double-click events to all <p> elements.
● Write a jQuery program to hide all headings on a page when they are clicked.
o Also find the position of the mouse pointer relative to the left and top edges of the document.

Sessions 11 & 12: AJAX & Axios HTTP Client


Lecture:
● AJAX: Asynchronous JavaScript and XML
o Introduction to AJAX
o AJAX framework and its architecture
o Web services and AJAX
o AJAX using jQuery and jQuery
● Axios: A promise-based HTTP client
o The Axios instance and its config
o Handling request and response
o Handling errors
Lab:
● Design and implement a webpage that displays a live scoreboard. Use AJAX (XMLHttpRequest)
to retrieve and interpret JSON data from a URL provided by the faculty.
● Design and implement a webpage that displays live news headlines. Use the Axios HTTP client
to retrieve and interpret JSON data from a URL provided by the faculty.

Session 13: Introduction to [Link]


Lecture:
• Introduction to [Link]
• Browser JS vs. [Link]
• ECMAScript 2015 (ES6)
• [Link] REPL
Lab:
• Install [Link] 12.x.x LTS version on your machine
• Write a recursive function in [Link]
• Write a Node program that prints all the numbers between 1 and 100, each on a separate line.
A few caveats:
o if the number is divisible by 3, print "foo"
o if the number is divisible by 5, print "bar"
o if the number is divisible by both 3 and 5, print "foobar"

PG-DAC Page 4 of 6
ACTS, Pune

Sessions 14 & 15: [Link] Asynchronous Programming


Lecture:
• Introduction to Asynchronous programming and callbacks
• Promises and async & await
• The Event Loop and Timers
Lab:
• Assignment on JavaScript callback functions
• Assignment on Timers, Promises, and Async & Await

Session 16: [Link] Modules


Lecture:
• Understanding Node modules, exports, and require
• Introduction to npm
o [Link] and [Link] files
o Install, update, and manage package dependencies
o Local and global packages
Lab:
• Create a module and import it in other programs
• Install a module/package using npm

Session 17: [Link] Modules – fs and http


Lecture:
• File I/O – Sync & Async Methods
• HTTP Module – Building an HTTP server
• Developing a Node web application
Lab:
• Write a program to create a new file and write some content to it in synchronous mode and
read and display file contents on standard output in async mode
• Build a simple [Link] web application serving both HTTP GET and POST methods

Session 18: Introduction to Express


Lecture:
• Introduction to Express
• Getting started with Express
• Application, Request and Response Objects
• Routes and Middlewares
• Templates, Template Engines, and Rendering Views
Lab:
• Use Node and Express to write a simple web application that consists of at least 5 route
implementations
• Rebuild any previous Node assignment using Express and a template engine

Session 19: Introduction to React


Lecture:
• Introduction to React
• React Elements and React Components
• Function and Class Components
• Working with React Components and Props
o Compose components
o Render components

PG-DAC Page 5 of 6
ACTS, Pune

o Declutter components
Lab:
• Rebuild any previous plain HTML lab assignment using React
• Build a React Clock app showing time (hh:mm:ss) of any three countries

Sessions 20, 21 & 22: React


Lecture:
• Introduction to State and Lifecycle
• Stateful components and lifecycle methods
• Props vs. State vs. Context
• Handling events
• Conditional rendering
Lab:
• Implement the following items in the React Clock app
o Update the time (hh:mm:ss) using State and Lifecycle methods
o Add a close function on each rendered clock component
o Assign background color of rendered clock components based on AM, PM

Session 23 & 24: React


Lecture:
• Lists and Keys
o Rendering Multiple Components
o Basic List Component
• Working with forms and inputs
• Refs and the DOM
• Lifting state up
Lab:
• Implement and integrate a new feature in the React Clock app where one can select a country
time zone from drop down list and click on “Add” button to render it.

Session 25: React


Lecture:
• Error Boundaries
• Composition vs. Inheritance
o Containment
o Specialization
• Thinking in React
Lab:
• Implement error boundaries at appropriate places in the React Clock app

Session 26, 27 & 28: React-Redux


Lecture:
• Introduction to Redux
• Actions, Reducers, and Stores
• Usage with React
Lab:
• Make necessary changes in the design and implementation of React Clock app using React-
Redux to maintain the application state.

PG-DAC Page 6 of 6

You might also like