notes: download syllabus : download unit 1: download unit 2: download unit 3: unit 4: unit 5: SEM-II COURSE 4: E-COMMERCE AND WEB APPLICATION DEVELOPMENT Theory Credits: 3 3 hrs/week UNIT-I Introduction to E-Commerce: Definition, scope, and evolution, Benefits and limitations Types of E-Commerce: B2B, B2C, C2C, C2B, G2C models E-Commerce Business Models: Revenue models (advertising, subscription, etc.) Infrastructure for E-Commerce : Internet, intranet, Extranet Payment gateways and digital wallets Legal and Ethical Issues: Cyber laws and data privacy,Intellectual property, taxation, and security. Case study : Study of successful e-businesses UNIT-II Technology in E-Commerce: Essentials of web design for business - Content management systems (WordPress, Shopify, BootStrap) Online Marketing & SEO: Digital marketing channels, Search engine optimization basics. Digital Payment Systems: Credit/Debit Cards, Net Banking, Mobile Wallets, UPI, Electronic...
1. Create a simple HTML page with:Headings, paragraphs, bold/italic text <!DOCTYPE html> <html> <head> <title>Simple HTML Page</title> </head> <body> <h1>Main Heading (H1)</h1> <h2>Sub Heading (H2)</h2> <h3>Smaller Heading (H3)</h3> <p>This is a paragraph of text. HTML is used to structure content on the web.</p> <p> This text contains <b>bold text</b> and <i>italic text</i>. </p> <p> You can also combine them like <b><i>bold and italic together</i></b>. </p> </body> </html> 2. Create a music promotion webpage (include audio and video files in your html page) <!DOCTYPE html> <html> <head> <title...
pdf : download 1. Introduction to E-Commerce Definition: E-Commerce (Electronic Commerce) refers to the buying and selling of goods and services using the internet and electronic networks. It also includes online transactions, electronic payments, online marketing, and digital communication between businesses and customers.E-Commerce is the process of conducting commercial transactions such as purchasing, selling, transferring money, and exchanging information through electronic systems like the internet. Examples of E-Commerce · Online shopping websites (Amazon, Flipkart) · Online ticket booking · Online banking and payments · Food delivery apps · Digital services subscriptions Key Features of E-Commerce · ...
Unit 2: Foundations of Ownership, Security Related Concepts in Blockchain Foundations of Ownership In traditional systems, ownership is often documented and verified by centralized authorities (e.g., land registries, banks). In blockchain, ownership is established and proven through cryptographic methods, primarily using public-key cryptography . Public and Private Keys: Each user on a blockchain network has a unique pair of cryptographic keys: a public key and a private key. The public key acts as an address, similar to an account number, visible to everyone. It's used to receive assets or data. The private key is a secret code that grants control over the assets associated with the public key. Only the person possessing the private key can authorize transactions from that address. Digital Signatures: To prove ownership or authorize a transaction, a user digitally "signs" a message or transa...
Unit-V: Image Manipulations, Audio and Video & Introduction to JavaScript I. Image Manipulations, Audio and Video This section focuses on integrating and controlling various media types within web pages, enhancing both aesthetics and functionality. A. Image Positioning and Display 1. Position an Image: CSS position property: · static (default): Renders elements in normal document flow. · relative : Positions an element relative to its normal position. Use top , bottom , left , right for offset. Doesn't affect other elements' positions. · absolute : Positions an element relative to its nearest positioned ancestor (not static). Removed from normal flow. · fixed : Positions an element relative to the viewport . Stays in place ev...
Unit-II: HTML Coding Standards & Elements 1. Coding Standards & Block Elements HTML Coding Conventions: · Lowercase Tags and Attributes: Always use lowercase for HTML tag and attribute names (e.g., <p> , <a> , href ). · Quoted Attribute Values: Enclose all attribute values in double quotes (e.g., <img src="image.jpg"> ). · Meaningful Indentation: Use consistent indentation (e.g., 2 or 4 spaces) to improve readability and show the hierarchical structure of the document. · Semantic HTML: Use HTML elements according to their meaning, not just their default styling (e.g., <h1> for a main heading, <p> for a paragraph). · Comments: Use comments (``) to explain complex or non-obviou...
Unit-III: Cascading Style Sheets (CSS) 1. CSS Overview · What is CSS? CSS (Cascading Style Sheets) is a language used for describing the presentation of a document written in a markup language like HTML. It dictates how HTML elements are to be displayed on screen, paper, or in other media. · Separation of Concerns: CSS promotes the separation of document content (HTML) from document presentation (CSS). This makes websites easier to maintain, more flexible, and more accessible. · How it Works: Browsers apply CSS rules to render HTML elements according to the specified styles. 2. CSS Rules A CSS Rule (or Rule Set ) consists of two main parts: · Selector: Points to the HTML element(s) you want to style. · Declaratio...
Unit-I: Introduction to Web Programming Introduction 1. What is Web Programming? Briefly define web programming as the process of creating dynamic web applications. Differentiate between front-end (what users see and interact with) and back-end (server-side logic, databases) development. 2. The Role of HTML, CSS, and JavaScript: Introduce these as the core languages of the web. HTML (HyperText Markup Language): The structure and content of a webpage. CSS (Cascading Style Sheets): The presentation and styling of a webpage. JavaScript: The interactivity and dynamic behavior of a webpage. 3. How the Web Works (Simplified): Briefly explain the client-server model, web browsers, web servers, and URLs. Creating a Website: Planning: Briefly touch upon planning the website's purpose, target a...
unit-1-1 download unit-1-2 download unit-1-3 download unit-1-1 download DIGITAL LITERACY syllabus : Computer A computer is a programmable electronic device that processes data to perform various tasks. It can store, retrieve, and process information and it is capable of executing a wide range of operations based on instructions provided to it. Computers come in various forms, including personal computers, laptops, servers, and embedded systems. 1. Central Processing Unit (CPU): Often referred to as the brain of the computer, the CPU performs calculations and executes instructions. 2. Memory (RAM): Random Access Memory is used to temporarily store data that the CPU needs to access quickly. It is volatile memory, meaning it loses its contents when the power is turned off. 3. Storage: This includes devices l...
Comments
Post a Comment