HTMLCSS JS Database Training Syllabus 2019
HTMLCSS JS Database Training Syllabus 2019
HTMLCSS JS Database Training Syllabus 2019
Manual.
About Softpro
Softpro is among one of the fastest growing IT company of North India dealing in
multiple domains namely Sotware Development, Industrial Automation and having
subsidiaries in Food Processing Sector. Softpro is also a popular name in Education
Sector where we cater the needs of IT professionals, engineering graduates and Diploma
Holders with latest technology training on Frameworks, Web Development, Java &
Mobile Application Development, Programming Languages and many more. Softpro
Consultants believe in the theory of "FUN WITH LEARN". The Journey of every individual
enrolling for any training program in Softpro starts from Beginner to Expert Level.
About Course
Become a Softpro Certified Web Designing Professional. This course is designed
specifically keeping in mind the need of the aspiring web designers. The course will not
only be helpful for one to make standard Web Pages but also functional Web
Applications.
Course Curriculum
Learning Objectives – Become a Softpro certified Web Designing Professional. A course
designed to make you an expert in HTML and CSS and learn all that is required to create
real world Websites and Web Application.
Lecture 1:-
What is HTML, HTML Documents, Basic structure of an HTML document, creating an HTML
document, Mark up Tags, Heading-Paragraphs, Line Breaks, and HTML Tags?
Task:
Assignment:
Introduction to elements of HTML, Working with Text, Working with Lists, Tables and Frames,
Working with Hyperlinks, Images and Multimedia, Working with Forms and controls, Super
Script Tag, Sub Script Tag, Span Tag, Character Entities.
Tasks:
Assignment:
About Div Tag, Concept of CSS, Creating Style Sheet, CSS Properties, Types of CSS, CSS
Styling(Background, Text Format, Controlling Fonts), Working with block elements and objects,
Working with Lists and Tables, CSS Selectors, Box Model(Introduction, Border properties,
Padding Properties, Margin properties), CSS Advanced(Grouping, Dimension, Display,
Positioning, Floating, Align, Pseudo class, Navigation Bar, Image Sprites, Attribute sector), CSS
Color, Creating page Layout and Site Designs.
Assignment:
1.
2.
3.
4.
5.
Lecture 4:-
Creating menus in a website, Creating the whole Web Site, Saving the site, Working on the
website, Creating web site structure, Creating Titles for web pages.
Tasks:
Assignment:
Lecture 5:-
Tasks:
Learning Objective: -
Not to be confused with Java, JavaScript allows you to build interactive websites. JavaScript has
become an essential web technology along with HTML and CSS, as most browsers implement
JavaScript. Thus, You must learn JavaScript if you want to get into web development, and you
must learn it well if you're planning on being a front-end developer or on using JavaScript for
backend development.
Furthermore, JavaScript usage has now extended to mobile app development, desktop app
development, and game development. All in all, it has exploded in popularity and is now a very
useful skill to learn.
Explain separation of concerns and identify the three layers of the web.
Use operators, variables, arrays, control structures, functions and objects in JavaScript.
Map HTML using the DOM - Document Object Model.
Identify popular JavaScript Libraries.
Create dynamic styles.
Create animation on a web page.
Use regular expressions for form validation.
Debug using firebug.
Create an XMLHttpRequest Object
1. Pop ups:
alert()
prompt()
confirm()
2. Taking input:
Through prompt()
Through input box
3. Output:
Using alert()
Inside HTML DOM
Console
Tasks:-
1. Open alert box onload of document and on click of a button and show a welcome
message
2. Find max number from two numbers by using prompt and alert box.
3. Designing a simple image slider using Javascript.
Assignments:-
1. Create a Distance Converter in javascript that will convert meter into kilometer. Take
input from textbox and print in another textbox.
2. Write a program in Javascript to check if a no. is prime or not. Take input from an input
box and show result in span
3. Write a program in Javascript to calculate factorial of a no. with pattern.
Example: 4!=4x3x2x1=24
4. Create a Simple Calculator by using if statement in javascriptTake two textboxes for
getting inputs for calculation and take one textbox to display result. Take four buttons
for operations like + , - , * and / as shown below:
Interview Questions:-
Lecture 7:-
Using functionkeyword
Calling JavaScript functions on HTML events.
.addEventListener(‘event’, ‘function_name ’)
document.getElementById()
document.getElementsByClassName()
document.getElementsByTagName()
innerHTML,innerText&value properties
Tasks:-
Assignment:-
1. Write a program in Javascript to print table of a given no. Take input from an input box
and print table in textarea
2. Write a program in Javascript to set an image from one <img/> tag to another <img/>
tag.
3. Write a program in Javascript to copy contents of one <p></p> tag and set it into
another <p></p> tag.
4. Write a program in Javascript to generate a paragraph with some text inside a div on the
click of a button.
Interview Questions:-
Lecture 8:-
Tasks:-
Assignment:-
Interview Questions:-
Learning Objective:-
Database Session
Tasks:-
Assignments:-
1. Create a database user with user name “mydb and password “mydb”.
2. Give privileges of DBA to the user “mydb”.
3. Connect the database user “mydb” and create a table cust_info with following structure:-
Field name Datatype Constraints
Cust Id Number(5) Primary Key
Cust_Name Varchar(20)
Cust_Address Varchar(100)
Cust_connect_date Date
Contact_No Varchar(15)
4. Insert the following records in cust_info table
Cust_Id Cust_Name Cust_address Cust_connect_date ContactNo
101 Rajeev Singh Lucknow 12-dec-2012 05226565114
102 Jitendra Verma Barabanki 01-Jan-2013 9838505980
103 Ravi Singh Lucknow 15-Jan-2013 9936652039
104 Priya Singh Sitapur 16-Jan-2013 9936390301
105 Brijesh Mishra Lucknow 16-Feb-2013 8738970899
106 Amit Singh Barabanki 18-mar-2013 0548-2202798
Interview Questions:-
1. Concept of keys
i. Primary Key
ii. Foreign Key
2. Union Operation
3. Join Operation
4. Views
5. Select Operations
6. Where Clause
7. Use of check Constraints
Assignments:-
1. Connect the database user “mydb” and create a table login_info having following structure:
Field Name Data Type Constraints
User Id Number(5) Primary Key
Password Varchar(2) Not Null
EMPLOYEES
Field/Column Name Type Size Constraint
Employee_id number 5 NotNull
Employee_Name varchar2 20 null
ORDERS
Field/Column Name Type Size Constraint
Product_Id number 5 NotNull
Product varchar2 20 null
Employee number 5 null
a. Insert the record into table Employee and Orders with following specification
Employee Id Employee Name
1001 Karan
1002 Shikhar
1003 Rajan
b. Perform select operation to select Employee_Name Employee Table and Product from
Order Table based on Employee_Id.
c. Perform select operation using left join to select Employee_Name from Employees table3
and product from Orders table based on Employee_Id.
d. Perform select operation using right join to select Employee_Name Employees table and
product from Orders table based on Employee_Id.
Interview Questions:-