0% found this document useful (0 votes)
26 views12 pages

Internshipreportfinalruhi

Uploaded by

devanksuryal01
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)
26 views12 pages

Internshipreportfinalruhi

Uploaded by

devanksuryal01
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
You are on page 1/ 12

Shri Govindram Seksaria Institute of Technology &Science, Indore

INTERNSHIP PROJECT TITLE

A Internship Project Report Submitted to

Rajiv Gandhi Proudyogiki Vishwavidyalaya, Bhopal


Towards the Partial Fulfillment of the Requirements for awarding the degree of
BACHELOR OF TECHNOLOGY
IN INFORMATION
TECHNOLOGY

Supervised by Submitted by

GUIDE NAME STUDENT NAME

CO-GUIDE NAME
Contents

I. Internship Details

A. Internship at twowaits technologies pvt. ltd

II. Course Details


Internship Details

Internship Report
Company Name: Twowaits Technologies Pvt Ltd
Stipend: unpaid
Training plan:
➢ Week 1 and week 2: (Basics of Html and Css)Objective of html
• Basic Components of HTML : Tags & Attributes, Inline & Block Elements.
• Tables, iFrames, Meta tags.
• Form and Form elements.
• Create a form using HTMLObjective of css:
• Basic components of CSS.
• Selectors : Classes & Ids, Borders, Margins.
• Creating Lists, Layouts and Box Model, float, overflow.
• Improving design of above form using CSS.

➢ Week 3: (Bootstrap)Objective :
• Basic components of Bootstrap.
• Containers, Grid Layout, Dropdown, Collapse, Carousel.
• Creating above form using Bootstrap.

➢ Week 4 and week 5 : (portfolio)


➢ Week 5: ( JavaScript basics)Objective :
• Basics of JavaScript, How it Works.
• Creating functions and DOM Manipulation. Practice by adding validation to
above created form.

❖JavaScript Display Possibilities: JavaScript can "display" data in different


ways:
▪ Writing into an HTML element, using innerHTML.
▪ Writing into the HTML output using document.write().
▪ Writing into an alert box, using window.alert(). Writing into the browser
console, using console.log().

❖ Using innerHTML:
To access an HTML element, JavaScript can use the
document.getElementById(id) method. The id attribute defines
the HTML element. The innerHTML property defines the HTML
content:
Example:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My First Paragraph</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = 5 + 6;
</script>
</body>
</html>
❖ Using document.write():
For testing purposes, it is convenient to use document.write():
Example:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My first paragraph.</p>
<script>
document.write(5 + 6);
</script>
</body> </html>

❖ Using window.alert():
You can use an alert box to display data:
Example:
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My first paragraph.</p>
<script>
window.alert(5 + 6);
</script>
</body>
</html>]
You can skip the window keyword.
❖ Using console.log():
For debugging purposes, you can call the console.log() method in the browser to
display
data.
Example:
<!DOCTYPE html>
<html>
<body> <script>
console.log(5 + 6);

❖ JavaScript Print:
JavaScript does not have any print object or print methods.
You cannot access output devices from JavaScript.
The only exception is that you can call the window.print() method in the browser
to print the content of the current window.
Example:
<!DOCTYPE html>
<html>
<body>
<button onclick="window.print()">Print this page</button>
</body>
</html

➢ Week 6: (Javascript projects)

➢ Week 7: (JQuery _Ajax)Objective :

• Understandting jQuery and learning its functionalities.


• Basics of AJAX.
• Working with JSON and it's uses. Creating above functions of form using jQuery.

❖jQuery Syntax:
The jQuery syntax is tailor-made for selecting HTML elements and performing
some action on the element(s).
Basic syntax is: $(selector).action()
A $ sign to define/access jQuery
A (selector) to "query (or find)" HTML elements
A jQuery action() to be performed on the element(s)
Example:s:
$(this).hide() - hides the current element.
$("p").hide() - hides all <p> elements.
$(".test").hide() - hides all elements with class="test".
$("#test").hide() - hides the element with id="test"
❖AJAX?
AJAX = Asynchronous JavaScript And XML.
AJAX is not a programming language.
AJAX just uses a combination of:
• A browser built-in XMLHttpRequest object (to request data from a web server)
• JavaScript and HTML DOM (to display or use the data

➢ Week 8 and 9: (covid tracker)

➢ Week 10, 11,12: ( SaasS Clone)

Technologies are( HTML,CSS, JAVAScript, Bootstrap,jQuery, AJAX)


INTERNSHIP CERTIFICATE

Certificate ID : KSWDC_010303

CERTIFICATE OF COMPLETION
This certifies that

RAJNI SURYAL
has attended Tathastu KickStart Internship on
"Web Development" organised by TwoWaits Technologies Pvt. Ltd.
between 15th Jan – 15 April 2022.
Achintya GaumaFounder & Chief Mentor, TwoWaits
TWOWAITS
Enabling Learning

C erti f i cate I D : K S W D E L _ 0 10 30 3

CERTIFICATE OF EXPERIENCE
To whomsoever it may concern

This certifies that has completed 3 months

Internship in "Web Development" in Twowaits


Technologies Pvt. Ltd. between 15th Jan & 15th April
2022.

During the internship she studied topics namely : HTML,


CSS, JAVAScript, Bootstrap, jQuery, AJAX from basics with
implementation.

She worked on 3 websites : Full fledged SaaS Website,


COVID 19 Tracker and Portfolio Website.

I wish her all the best for her future endeavours.

Sincerely ,
Achintya Gaumat
Founder & Chief Mentor, Twowaits
Contact : TwoWaits Technologies Pvt. Ltd.
Address : Plot No. 5, Knowledge Park 2 Greater Noida, UP (IN)
Email : [email protected]

You might also like