3rd Sem C.S.E Internship Report Er Prince Roxy
3rd Sem C.S.E Internship Report Er Prince Roxy
Of
3rd semester (CSE)
Submitted By :
Name : MUNNA KUMAR
Roll No :311151822023
Session: 2022-2025
Certificate of Completion
Acknowledgement
I Want To Express My Sincere Gratitude And Thanks To H.O.D. C.S.E Government Polytechnic,
Gaya For Granting Me Permission For My Summer Internship In The Field Of “Web
Development”
I Express My Sincere Thanks To Mr. Pankaj Singh For His Cooperative Attitude And Consistence
Guidance, Due To Which I Was Able To Complete My Training Successfully.
Finally, I Pay My Thankful Regard And Gratitude To The Team Members And Technicians Of “Web
Tech. Pvt. Ltd., Patna” And HOD, CSE Of Govt. Polytechnic, Gaya For Their Valuable Help, Support And
Guidance.
Table of Contents
S.NO Particulars Page No.
01 Offer Letter
02 Completion Certificate
03 Acknowledgement
04 Executive Summary
07 Code
08 Learning
09 Challenges Faced
Executive Summary
The 3-Week Summer Internship Program at Web Tech. Pvt. Ltd. Patna in Bihar, aimed at
providing students with invaluable practical experience. As a majority of the students enter the
program without prior work experience, the summer internship plays a crucial role in enhancing
their CVs and fostering significant learning. At Web Tech. Pvt. Ltd. Patna, various avenues exist for
securing internships, thanks to the ample opportunities provided to interact with industry
experts. My internship journey began with a Career Trek visit to explore the realm of Internet of
Things (IoT), guided by the expertise of Mr. Pankaj Singh. The interaction during this visit delved into
the current trends within the (HTML,CSS) domain, shedding light on its burgeoning significance in
the technological landscape. However, within the first week of my internship, additional
responsibilities were entrusted to me. I was absorbed into another project that aimed at fostering
behavioral change, titled "Transforming Perspectives: Nurturing IoT Innovators." This project, led
by Mr. Pankaj Singh, Mentor at Web Tech. Pvt. Ltd. Patna, focused on creating leaders who could
drive change in the field of (HTML,CSS). Throughout the internship, I actively contributed to both
projects, gaining hands-on experience in the HTML and CSS honing my skills in project
coordination and behavioral change initiatives. The exposure provided by Web Tech. Pvt. Ltd.
Patna not only enriched my understanding of (HTML,CSS) but also enhanced my practical skills,
making this summer internship a pivotal aspect of my academic journey at the institute.
LOCATION
Location Plays An Important Role In The Well Establishment And Survival Of The Institute.
Location Of Any Institute Is Selected According To Its Market, Availability Of Students And
Manpower. Head Office Of WTPL Is Situated At Adarsh Colony, West Patel Nagar, Patna – 24.
INSTITUTE PROFILE
WTPL Is A Company Regd. Under Ministry Of Corporate Affairs Govt. Of India, Mainly Involves In
Education And Training For Electrical & Electronics Professionals, Data Processing And Software
Development. It Also
Develops Various Kinds Of Software And Also Provides Hardware Services To Their Respective
Clients. This Type Of Organization Is The Basic Need Of The Today’s Modern Society. It Fulfils The
Computer Education Requirements
ORGANIZATION STRUCTURE
Organization structure is the backbone of management. Without efficient organizational
structure no management can performed its functions smoothly. Organizational structure refers
to relationship among position job, which is created to obtain certain objective. Actually, the
structure is the relationship among various function of the organization on an establish manner.
WHAT IS HTML
HTML Stands for Hypertext Markup Language. HTML is the language used to create webpages. Hypertext refers
to the hyperlinks that an HTML page may contain. Markup language refers to the way tags are used to define the
page layout and elements within the page.
The web has gone through many changes over the past few decades, but HTML has always been the fundamental
language used to develop webpages. Interestingly, while websites have become more advanced and interactive,
HTML has actually gotten simpler. If you compare the source of an HTML5 page with a similar page written in
HTML 4 or XHTML 1, the HTML5 page would probably contain less code. This is because modern HTML relies on
cascading style sheets or JavaScript to format nearly all the elements within a page. Many dynamic websites
generate webpages on-the-fly, using a server- side scripting language like PHP or ASP. However, even dynamic
pages must be formatted using HTML. Therefore, scripting languages often generate the HTML that is sent to our
web browser.
History of HTML
This chapter discusses a brief history of HTML language. Reading this will help you to get an idea of how HTML
has been evolved through the years. Tim Berners-Lee, the inventor of HTML, used to work in the computer
section of the CERN (European Laboratory for Particle Physics) at Geneva, Switzerland. CERN is an institution for
researching particle physics which requires the collaboration of physicists all over the world.
Tim has an idea of creating something which would enable physicists to share research information from
anywhere in the world, and he came with HTML which can contain links of many documents from one document.
Tim's prototype Web browser on the NeXT computer came out in 1990. In 1991, an open discussion group HTML-talk was
started across the internet for the development of HTML.
In 1992, Dave Raggett from Hewlett-Packard's Labs in Bristol, England who was one of the enthusiastic of HTML, met Tim
and upon returning England, Dave wrote a richer version of HTML called HTML+.
In 1992, NCSA showed interest in web and contributed to take the development of web a step further.
In December 1992, Marc Andreessen of Mosaic team (an early web browser) introduced img tag in the HTML document.
Inc.
September 1994: The Internet Engineering Task Force (IETF) sets up an HTML working group.
CHAPTER 2 INTRODUCTION TO CSS
What is CSS
CSS, stands for Cascading Style Sheet is a computer language to describe presentation (for example width, height,
color, background color, alignment etc.) of HTML and XML (and XML based languages like XHTML, SVG) web
documents. In all the examples of our tutorials, we have used HTML for implementing CSS. CSS is a standard
specified and maintained by World Wide Web Consortium. From its invention, CSS has evolved through different
versions. The present version of CSS is CSS 2..
Next version of CSS is CSS 3 , which is under development but developers have already started using some of its
features.
In the consequent pages, we will discuss CSS 2 in detail. Learning which, you will be able to implement CSS in your
own web pages. How CSS can be associated with an HTML web page. Writing CSS code in a separate file (CSS files
are saved with .css extension).
Advantages of CSS
Separation of content form presentation: Writing CSS code in another CSS file and attaching it to an HTML page,
you can separate content from presentation. So, as an author, you need not be concerned about presentation and
concentrate on content only.
Consistency: CSS can provide a consistent presentation for all of the pages of a web site.
The Increment in accessibility: If a particular page (or a number of pages) needs a different look and formatting,
with a change of a single line, that can be achieved by calling more than one CSS for the same page.
The survey form is one of the most straightforward HTML projects you can start. In this project, we will create a
simple survey form and then submit the information captured. You can open any text editor to write your code,
and save your file with .html extension. For example, survey.html. You will learn about basic input tags, form
creation, radio buttons, checkboxes, etc.
Here is the source code for the project with the necessary explanations of the tags. You can add elements one by
one to see how they work.
Every file should start with the <html> tag and end with </html> end tag.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- mobile metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- site metas -->
<title>Casinal</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- owl carousel style -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.0.0-
beta.2.4/assets/owl.carousel.min.css" />
<!-- bootstrap css -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- style css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Responsive-->
<link rel="stylesheet" href="css/responsive.css">
<!-- fevicon -->
<link rel="icon" href="images/fevicon.png" type="image/gif" />
<!-- Scrollbar Custom CSS -->
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.min.css">
<!-- Tweaks for older IEs-->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Poppins:400,700&display=swap" rel="stylesheet">
<!-- owl stylesheets -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" media="screen">
</head>
<body>
<!--header section start -->
<div class="header_section">
<div class="header_bg">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="logo" href="index.html"><img src="images/logo.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-
controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
</ul>
<div class="call_section">
<ul>
<li><a href="#"><img src="images/fb-icon.png"></a></li>
<li><a href="#"><img src="images/twitter-icon.png"></a></li>
<li><a href="#"><img src="images/linkedin-icon.png"></a></li>
<li><a href="#"><img src="images/instagram-icon.png"></a></li>
<div class="donate_bt"><a href="#"><img src="images/search-icon.png"></a></div>
</ul>
</div>
</div>
</nav>
</div>
</div>
<!--banner section start -->
<div class="banner_section layout_padding">
<div id="my_slider" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container">
<div class="banner_taital_main">
<div class="row">
<div class="col-md-6">
<h1 class="banner_taital">Casinal Educations Coachings</h1>
<p class="banner_text">Eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
<div class="btn_main">
<div class="about_bt active"><a href="#">About Us</a></div>
<div class="quote_bt"><a href="#">Get A Quote</a></div>
</div>
</div>
<div class="col-md-6">
<div class="image_1"><img src="images/img-1.png"></div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="banner_taital_main">
<div class="row">
<div class="col-md-6">
<h1 class="banner_taital">Casinal Educations Coachings</h1>
<p class="banner_text">Eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
<div class="btn_main">
<div class="about_bt active"><a href="#">About Us</a></div>
<div class="quote_bt"><a href="#">Get A Quote</a></div>
</div>
</div>
<div class="col-md-6">
<div class="image_1"><img src="images/img-1.png"></div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<div class="banner_taital_main">
<div class="row">
<div class="col-md-6">
<h1 class="banner_taital">Casinal Educations Coachings</h1>
<p class="banner_text">Eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
<div class="btn_main">
<div class="about_bt active"><a href="#">About Us</a></div>
<div class="quote_bt"><a href="#">Get A Quote</a></div>
</div>
</div>
<div class="col-md-6">
<div class="image_1"><img src="images/img-1.png"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#my_slider" role="button" data-slide="prev">
<i class="fa fa-arrow-left" style="font-size:24px"></i>
</a>
<a class="carousel-control-next" href="#my_slider" role="button" data-slide="next">
<i class="fa fa-arrow-right" style="font-size:24px"></i>
</a>
</div>
</div>
<!--banner section end -->
</div>
<!--header section end -->
<!-- services section start -->
<div class="services_section layout_padding">
<div class="container">
<h1 class="services_taital"><span style="color: #fcce2d">Our</span> Courses</h1>
<div class="services_section_2">
<div class="row">
<div class="col-md-6">
<div class="image_main">
<img src="images/img-2.png" class="image_8" style="width:100%">
<div class="text_main">
<div class="seemore_text">Art And Design</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="image_main">
<img src="images/img-3.png" class="image_8" style="width:100%">
<div class="text_main">
<div class="seemore_text">Science</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="image_main">
<img src="images/img-4.png" class="image_8" style="width:100%">
<div class="text_main">
<div class="seemore_text">Business Stady</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="image_main">
<img src="images/img-5.png" class="image_8" style="width:100%">
<div class="text_main">
<div class="seemore_text">English Speaking</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- services section end -->
<!-- about section start -->
<div class="news_section layout_padding">
<div class="container">
<h1 class="news_taital">Our About</h1>
<p class="news_text">Do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
<div class="news_section_2">
<div class="row">
<div class="col-md-6">
<div class="news_taital_box">
<p class="date_text">01 Jan 2020</p>
<h4 class="make_text">Make it Simple</h4>
<p class="lorem_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation</p>
<p class="post_text">Post By : Casinal</p>
</div>
</div>
<div class="col-md-6">
<img src="images/img-6.png" class="image_6" style="width:100%">
<h6 class="plus_text">+</h6>
</div>
</div>
</div>
</div>
</div>
<!-- about section end -->
<!-- blog section start -->
<div class="blog_section layout_padding">
<div class="container">
<h1 class="news_taital">Our Bolg</h1>
<p class="news_text">do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
<div class="blog_section_2">
<div class="row">
<div class="col-md-6">
<img src="images/img-7.png" class="image_7" style="width:100%">
</div>
<div class="col-md-6">
<h4 class="classes_text">Best Classes and study</h4>
<p class="ipsum_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris </p>
</div>
</div>
</div>
<div class="read_bt"><a href="#">Read More</a></div>
</div>
</div>
<!-- blog section end -->
<!-- client section start -->
<div class="client_section layout_padding">
<div id="main_slider" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container">
<h1 class="client_taital">Testimonial</h1>
<div class="client_section_2">
<div class="client_left">
<div><img src="images/client-img.png" class="client_img"></div>
</div>
<div class="client_right">
<h3 class="client_name">Jony Deno</h3>
<p class="client_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip </p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<h1 class="client_taital">Testimonial</h1>
<div class="client_section_2">
<div class="client_left">
<div><img src="images/client-img.png" class="client_img"></div>
</div>
<div class="client_right">
<h3 class="client_name">Jony Deno</h3>
<p class="client_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip </p>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container">
<h1 class="client_taital">Testimonial</h1>
<div class="client_section_2">
<div class="client_left">
<div><img src="images/client-img.png" class="client_img"></div>
</div>
<div class="client_right">
<h3 class="client_name">Jony Deno</h3>
<p class="client_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip </p>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#main_slider" role="button" data-slide="prev">
<i class="fa fa-angle-left"></i>
</a>
<a class="carousel-control-next" href="#main_slider" role="button" data-slide="next">
<i class="fa fa-angle-right" style="font-size:24px"></i>
</a>
</div>
</div>
<!-- client section end -->
<!-- newsletter section start -->
<div class="newsletter_section layout_padding">
<div class="container">
<div class="newsletter_main">
<h1 class="newsletter_taital">Get<br> Your free consuting </h1>
<div class="get_quote_bt"><a href="#">Get A Quote</a></div>
</div>
<p class="dolor_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip </p>
</div>
</div>
<!-- newsletter section end -->