0% found this document useful (0 votes)
24 views29 pages

Weekly Diary For Industrial Training (Jun-July 2024)

6teyuuhe5

Uploaded by

Janhavi More
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views29 pages

Weekly Diary For Industrial Training (Jun-July 2024)

6teyuuhe5

Uploaded by

Janhavi More
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 29

INPLANT TRAINING WEEKLY

Weekly Diary for Industrial Training


(Jun-July 2024)

Name of Industry: MAXCAP TECHNOLOGIES

Training from: 03 /06/2024 to 13/07/2024

Name of Supervisor: Mr. Swami Panjala

Designation of Supervisor: CEO and Founder

Name of the Student: Ms. Janhavi Swapnil More

Enrollment No: 23211000340

Branch of Student: Computer Engineering

Name of Polytechnic: Pimpri Chinchwad Polytechnic

Special instructions to students:

1) Write down the daily activity on the same day.

2) Make note of the important actual activities only.

3) Summarize at the week-end.

4) Add extra sheets if needed for daily or weekly activity report.

Maharashtra State Board of Technical Education


INPLANT TRAINING WEEKLY
INPLANT TRAINING WEEKLY

Week 1: From 03/06/2024 To 07/06/2024

Expected Work:
i) Study of the Domain name registration and Domain Hosting.

ii) Study of the Cpanel functions.


Mentor Assignment –
i. General Study of industry, its location, its history and its
product range, its size, number of employees, its turnover
etc.

ii. Study of the Domain Name Registration. iii. Study of the

Domain Hosting plan.

Day Activities carried out

1 Introduction to the Industry, its location and it’s working.

2 Introduction to Domain Name

3 Study about the Domain Name Registration

4 Learning the features Hosting Plan

5 Introduction of Cpanel features.

Weekly summarization of the above activities:

• Learnt the basic concepts of the Domain Name • Registration.

Learnt the basic concepts of Hosting.

• Learnt the basic concepts of Cpanel.

Signature of Student Signature of Supervisor

Maharashtra State Board of Technical Educa


INPLANT TRAINING WEEKLY

ASSIGNMENT :-
1. Checking the various Domain Name Registration.

2. Checking the various Hosting Plan.


INPLANT TRAINING WEEKLY

Maharashtra State Board of Technical Education 1


INPLANT TRAINING WEEKLY

Week 2: From 10/06/2024 To 14/06/2024


Expected Work:

i. Study of Bootstrap CSS Framework ii. Study

of the Front End Development in detail.

Mentor Assignment:-
i. Making demo websites using HTML, CSS & Bootstrap.

ii. Learn the concept of Front End Development.

iii. Learn the concept of dynamic google map embed on web page.

Day Activities carried out

1 Introduction to HTML and CSS


Introduction to the classes of Bootstrap
2

Making a Responsive Webpage


3

Inserting a Dynamic Google Map to Webpage and Motions Effects


4

Root Cause Analysis of the API that caused the spike


5

Weekly summarization of the above activities:


i. Learnt the basics of HTML & CSS

ii. Learnt the classes of Bootstrap

Signature of Student Signature of Supervisor

Maharashtra State Board of Technical Edu


INPLANT TRAINING WEEKLY
INPLANT TRAINING WEEKLY

ASSIGNMENT :-

1. A Basic HTML & CSS Webpage

➢ .HTML code
<!Doctype html>

<html>

<head>

<title> Basics of HTML and CSS </title>

<link rel="stylesheet" href="css/style.css">

<style>

.xyz { color:

blue;

font-size: 30pt; }

</style>

</head>

<body

<h1> Hello Students </h1>

<h2> Hello Students </h2>

<h3> Hello Students </h3>

<h4> Hello Students </h4>

<h5> Hello Students </h5>

Maharashtra State Board of Technical Education 4


INPLANT TRAINING WEEKLY
<h6> Hello Students </h6>

<img src="images/kalu.jpg" style="height:200px; width:100%;"/>

<br>

<marquee class="xyz" direction="left">welcom to internship </marquee>

<p class="abc">

Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente dolorem consequuntur
modi autem, ut laborum enim nemo debitis facilis fugit quod asperiores laudantium reiciendis
accusantium nesciunt mollitia est repellat nulla?

</p>

<p class="abc" style="color:red">

Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus dolore illum
quod000000 facilis ducimus iusto consectetur, nobis voluptatum voluptates, enim cum
magni cumque ex explicabo placeat optio doloremque tenetur incidunt?

</p>

<p class="pqr abc">

Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi, dolor. Provident in
vero vel! Omnis quo non, quaerat labore ea ducimus quod et autem architecto voluptate
aperiam voluptates similique consequatur!

</p>

</body>

</html>

Maharashtra State Board of Technical Education 5


INPLANT TRAINING WEEKLY

2. Using Classes of Bootstrap in Webpage

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap Web Page</title>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></
script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<body>
Maharashtra State Board of Technical Education 6
INPLANT TRAINING WEEKLY
<div class="container-fluid">
<div class="col-md=12">
<img src="images/pcp.jpg" style="height:200px; width:100%;"/>
</div><!--Banner div close-->>
<div class="col-md-12">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Elight Software Intern</a>

</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown"
href="#">Services
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Page 1-1</a></li>
<li><a href="#">Page 1-2</a></li>
<li><a href="#">Page 1-3</a></li>
</ul>
</li>
<li><a href="#">About us</a></li>

Maharashtra State Board of Technical Education 7


INPLANT TRAINING WEEKLY
<li><a href="contactus.html">Contact us</a></li>
</ul>
</div>
</nav>
</div><!--Menu div close-->>
<div class="col-md-12" >
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>

Maharashtra State Board of Technical Education 8


INPLANT TRAINING WEEKLY

Maharashtra State Board of Technical Education 9


INPLANT TRAINING WEEKLY
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="images/1.jpg" alt="Los Angeles"
style="height:300px; width:100%">
</div>
<div class="item">
<img src="images/2.jpg" alt="Chicago"
style="height:300px; width:100%;">
</div>
<div class="item">
<img src="images/3.jpg" alt="New York"
style="height:300px; width:100%">
</div>
<div class="item">
<img src="images/4.jpg" alt="New
York" style="height:300px; width:100%">
</div>
</div>
INPLANT TRAINING WEEKLY
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div><!--slider div close-->>
<div class="col-md=12">
<div class="col-md-3" data-aos="zoom-in">
<img src="images/logo.jpg"style="height:200px;width:100%">
</div><!--logo div close-->>
<div class="col-md-7" data-aos="flip-right">
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Fugiat quo
error
quam labore, consequuntur sint corporis id eius enim? Velit architecto debitis enim
voluptate perspiciatis? Modi facilis asperiores ut hic!
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Ipsam corrupti
soluta itaque maxime esse. Consectetur magni provident facere optio dolorum. At
laborum aperiam tenetur sequi adipisci similique minus. Tempore, eos.
</p>
<p>

Maharashtra State Board of Technical Education 11


Lorem, ipsum dolor sit amet consectetur adipisicing elit. Numquam
delectus, rerum necessitatibus repellat aspernatur, debitis molestiae enim
praesentium natus dolore non vero dolores facilis architecto, nisi beatae tenetur quod
nobis.
INPLANT TRAINING WEEKLY

INPLANT TRAINING WEEKLY


</p>
</div><!--paragraph dev close-->>
<div class="col-md-2">
<marquee direction="up" style="height:200px;" scrollamount="10"
onmouseover="this.stop();"
onmouseout="this.start();">
Welcome ti Internship<br><br>
Welcome ti Internship<br><br>
Welcome ti Internship<br><br>
Welcome ti Internship
</marquee>
</div><!--news div closed-->>
</div><!--news section outer div close-->>
<div class="col-md-12">
<center>Designed and developed by <b
style="color:red;">Pragati</b></center>
</div><!--footer-->>
</div><!--container div-->>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html> Maharashtra State Board of Technical Education 13
INPLANT TRAINING WEEKLY

Week 3: From 17/06/2024 To 21/06/2024

Expected Work:
Study of design layout development or design medication.

Mentor Assignment:
i. Learning the concept of design layout development
ii. Learn Deployment of project to server site using Cpanel. iii. Learn the
concept of site mapping , chat bot integration.

Day Activities carried out


Introduction of Design layout Development.
1

2 Learning the Design layout development on project.


3 Learning Project Deployment to server side using Cpanel login.

4 Introduction of site mapping.

5 Learn the concept of site mapping, chat bot integration and search console.

Weekly summarization of the above activities:

i. Learning Deployment of project at server side.


ii. Learn the concept of site mapping, chat bot integration

Maharashtra State Board of Technical Education


INPLANT TRAINING WEEKLY

Signature of Student Signature of Supervisor

ASSIGNMENT :-
1. Creating a Sample website:-

Maharashtra State Board of Technical Education


INPLANT TRAINING WEEKLY

Maharashtra State Board of Technical Education 6


INPLANT TRAINING WEEKLY

Maharashtra State Board of Technical Education


INPLANT TRAINING WEEKLY

Maharashtra State Board of Technical Education 8


INPLANT TRAINING WEEKLY

Signature of Student Signature of Supervisor

ASSIGNMENT :-
➢ Basic Python syntax code:-

Maharashtra State Board of Technical Education 9


INPLANT TRAINING WEEKLY

Week 5: From 01/08/2024 To 05/08/2024


Expected Work:
i. Learning of Django Framewrok.
ii. Study of web page rendering on browser.

Mentor Assignment:
i. Study of python topics such as function, module.
ii. url dispatcher and front end integration to Django project.

Day Activities carried out


Learning of python topics.
1

Introduction of Django Framework.


2
3
Learning of Django Framework topics.

4 Learning Web page rendering on browser.

Maharashtra State Board of Technical Education 10


INPLANT TRAINING WEEKLY
Learning url dispatcher and Front end development.
5

Weekly summarization of the above activities:

i. Learning the Python topic such as function and modules.

ii. Learning to rendering web page on browser.

Signature of Student Signature of Supervisor

ASSIGNMENT :-
1. url dispatcher on project

2.Creating index page on Django


Maharashtra State Board of Technical Education 11
INPLANT TRAINING WEEKLY

Maharashtra State Board of Technical Education 12

You might also like