Skip to main content

Multimedia and Web Technology (Code 067)

Multimedia and Web Technology (Code 067)
Learning Objectives:
1. To get proficient in WEB Development using HTML/XML
2. To be able to write server & client scripts.
3. To get proficient in Web Management
4. To get proficient in creating Web Site
5. To design Graphical images using Image-Editing tools
6. To get proficient in audio & video capture and editing using software tools
7. To create and publish a self-contained multimedia CD-ROM using multimedia authoring
tool
8. To develop ability to use the Open Source Technology.
9. To develop ability to localize software applications.
Competencies:
The student will become proficient in the following:
1. Managing Self Developed web-site
2. Management of a full-fledged web portal
3. Creation & Editing of graphical images.
4. Capturing, Creating and Editing Audio and Video through external devices.
5. Embedding images & video into a presentation.
Class XI (Theory)
Duration: 3 hours Total Marks: 70
Unit No. Unit Name Marks
1.
2.
3.
4.
COMPUTER SYSTEM
WEB DEVELOPMENT
WEB SCRIPTING
MULTIMEDIA AND AUTHORING TOOLS
15
25
20
10
Unit 1: Computer System
Introduction to Computer, Input Devices ā€“ Keyboards, Mouse, Joy stick, Mic, Camera; Output
Devices ā€“ Monitor, Printer, Speaker, Plotter;
Memory Units ā€“ Byte, Kilobyte, Megabyte, Giga byte, tera byte;
Primary Memory ā€“ RAM and ROM;
Secondary Storage devices ā€“ Floppy Disk, Hard disk, CD ROM, DVD, Zip Drive, DAT Drive;
Power devices ā€“ UPS;
Software ā€“ System Software, Application Software, Utility Software;
Working on computers ā€“ switching on computer, booting computer; icons, shortcuts, taskbar,
mouse pointer; typing, saving and printing a simple text file, drawing simple picture using
MSPaint, using calculator option, customizing desktop, windows explorer, managing folders
(creating, moving, deleting, renaming); using floppy disk drive, using CD/DVD drives;
managing files (copying, moving, deleting, renaming); playing audio and video;
Page 2
GUI Operating System
Important: Students/Teachers can also perform similar operation on any operating system. It is advised that
the teacher while using any one operating system, give a demonstration of equivalent features for the other
operating system.
Windows
General features, Elements of Desktop - Taskbar, Icon, Start button, Shortcuts, Folder,
Recycle Bin, My Computer;
Start Menu: Program, Documents, Settings, Find/Search, Help, Run, ShutDown/Logoff;
Customization of Taskbar, Start menu, Display properties (Wallpaper, Font Settings, Color
Settings, Screen Savers);
Program Menu: Accessories - Calculator, Notepad, Paint, Word pad, Entertainments (CD
Player, Sound Recorder, Media Player, Volume Controller);
Browsers: Mozila Firefox, Internet Explorer, Netscape Navigator;
Control Panel: Add new hardware; Add new Software, Printer Installation, Date/Time, Mouse,
and Regional Settings;
Documentation
Purpose of using word processing software, opening a new/existing document, closing a
document, typing in a document, saving a document, print preview, printing a document,
setting up of page as per the specifications, selecting a portion of document, copying
selected text, cutting selected text, pasting selected text; changing font, size, style, color of
text; Inserting symbol; Formatting: Alignment ā€“ Left, Right, Center; Justification;
Unit 2: Web Development
WebPages; Hyper Text Transfer Protocol (HTTP); File Transfer Protocol (FTP) Domain
Names; URL; Protocol Address; Website, Web browser, Web Servers; Web Hosting.
HTML/DHTML
Introduction, Objectives, Introduction to Universal Resource Identifier (URI) - Fragment
Identifiers and Relative URIā€™s, History of HTML, SGML, Structure of HTML/DHTML
Document, Switching between opened Windows and browser (Container tag, Empty tag,
Attribute);
Basic Tags of HTML: HTML, HEAD, TITLE, BODY (Setting the Fore color and Background
color, Background Image, Background Sound), Heading tag (H1 to H6) and attributes
(ALIGN), FONT tag and Attributes (Size: 1 to 7 Levels, BASEFONT, SMALL, BIG, COLOR),
P, BR, Comment in HTML (), Formatting Text (B, I, U, EM, BLOCKQUOTE,
PREFORMATTED, SUB, SUP, STRIKE), Ordered List- OL (LI, Type- 1, I, A, a; START,
VALUE), Unordered List - UL (Bullet Type- Disc, Circle, Square, DL, DT, DD), ADDRESS
Tag;
Creating Links: Link to other HTML documents or data objects, Links to other places in the
same HTML documents, Links to places in other HTML documents;
Anchor Tag and , Inserting Inline Images ;
Web Page Authoring Using HTML
Tables: Creating Tables, Border, TH, TR, TD, CELLSPACING, CELLPADDING, WIDTH,
COLSPAN, CAPTION, ALIGN, CENTER;
Frames: Percentage dimensions, Relative dimensions, Frame ā€“ Src, Frameborder, height
and width, Creating two or more rows Frames , Creating two or more
Page 3
Columns Frames , , , ;
Forms: Definition, Use ā€“ Written to a file, Submitted to a database such as MSAccess
or Oracle, E-mailed to someone in particular, Forms involve two-way communication;
Form Tags: FORM, , , METHOD,
CHECKBOX, HIDDEN, IMAGE, RADIO, RESET, SUBMIT, INPUT ;
Document Object Model
Concept and Importance of Document Object Model, Dynamic HTML documents and
Document Object Model.
Cascading Style Sheets
Introduction to Cascading Style Sheet (CSS), three ways of introducing the style sheets to
your document. Basic Syntax; Creating and saving cascading style sheets.

Comments

Popular posts from this blog

Web Designer

If you want to be a web designer. Skills Should have worked on and have a good understanding of the following packages and areas: HTML Javascript / VBscript JSP ASP Photoshop Flash Dream Weaver Frontpage Should have aesthetic picture and designing abilities (including usage of color combinations, CSS files, etc). Should have the ability to understand client requirements; and translate into appropriate web interface. Should be comfortable in working with Windows/ Java environment Work Experience At least 2 to 3 years of good web designing experience Web pages should be bug free and clean/ simple and light Should have managed/ maintained websites that are currently hosted and running Key Responsibilities Testing and implementation Analysis and design of solutions at both onsite and client sites to integrate the company's product Interaction with clients to implement solutions Interaction with third party solution providers for project i...

Try CSS

open notepad type the following and save the file with name testcss.html on desktop and then open this file in internet explorer : <html> <head> <title>css tutoriaL</title> <style type="text/css">  body {  background: #006699;  font-family: "Trebuchet MS", Verdana, Arial, serif;  } </style> </head> <body> <p style ="font-size:20px"> This text is written in <br>color code #006699 font size 20 </p> </body> </html> output :

MYSQL JDBC Connectivity Example

1. create a table in mysql name contact with columns name,mobile,email,password 2.open bluej add reference library mysql-connector-java-5.1.13-  bin.jar file if not available download from internet. 3.type the code given below. compile it and execute. Success. import java.sql.DriverManager; import com.mysql.jdbc.Driver; import com.mysql.jdbc.Connection; import com.mysql.jdbc.Statement; public class test {     public static void main(String args[])     {         String Name="SHIV SINGH";         String Mobile="9929760942";         String Email=" s@gmail.com ";         try                {         Class.forName("java.sql.DriverManager");         Connection con = (Connecti...