FINAL PROJECT REPORT of ITR (Devendra)
FINAL PROJECT REPORT of ITR (Devendra)
CERTIFICATE
This is to certify that,
Page 1
INDUSTRIAL TRAINING REPORT APPROVAL SHEET
Certificate of Completion
INDUSTRIAL TRAINING REPORT
On
Page 2
A
Under Guidance
Prof. Shinde B.B
Department of
COMPUTER TECHNOLOGY
Page 3
INDEX
02 Introduction of Industry 2
06 References
07 Conclusion
Page 4
ACKNOWLEDGEMENT
The Acknowledgement is just like a drop in the ocean of the deep sense of
gratitude within our heart for people who helped us out of most embarrassing part of life
when I was standing at most difficult step towards my dream of life
Many people have constributed to the success of this inplant training. Although a
single sentence hardly suffices, I would like to thank Director & Chief Executive Officer
(CEO) of Swaranjal Solekar Information Technology (SSIT) Pvt Ltd, Mr. Solekar and
Trainer Mr. Shoaib Sheikh Co-Ordinator for giving me such golden opportunity to train
at their site and providing a chance to get more hands-on approach for better
understanding.
This summer Industrial Training would not have been possible without the
support of our honarable Principal Prof. Dhumal. who has given his precious time and gave
some ideas and suggestion towards this training.
I extend sincere and heartfelt thanks to central support of our department
Respect Prof. Kale G.B. head of department, computer Engineering, providing me the right
ambience for caring out this work.
I am grateful and sincerely appreciate the effort of my respect Mentor Prof.
Shinde B.B. Who acted as a fulcrum for me and supported me during the ups and downs of
this training.
I express immense pleasure and thankfulness to all teachers and staff of the
Department of Computer Engineering for their cooperation and support.
Page 5
ABSTRACT
Page 6
CHAPTER 1
Page 7
CHAPTER 2
2.1 INTRODUCTION OF INDUSTRY / ORGANIZATION :-
2.3 HISTORY :-
Page 8
SSIT Pvt. Ltd., Nagpur is a well versified software development company with high skilled
IT experts catering result oriented and cost competitive solutions to SMEs across the
world.
Being a premium IT training & software Development Company SSIT holds the trust of
This trust is based on our quality & reputation as an exemplary IT training and software
development company among leading business houses and standardizing organizations.
We are providing IT solutions and services with various domain as customized application
development, client server application, web based applications, E- commerce web
ready pool with expertise in various technologies with exceptional team of offshore
development services.
Page 9
CHAPTER 3
1. Laptops
Specification
• Processor: up to Intel Core i5-2410M 2.3 GHz.
• Graphics: ...
• Memory: up to 8GB DDR3.
• Storage: up to 750GB hard disk drive.
• Optical Drive: a dual layer DVD reader/writer.
• Display: 17.3" (HD, maximum resolution of 1600 × 900)
• Web Camera: integrated.
2.Pycharm
Pycharm is a dedicated python integrated Development Environment (IDE) providing a
wide range of essential tools for Python developers, tightly integrated to create a
convenient environment for productive Python, Web, and data science Development.
3.Dalvik
Dalvik is a discontinued process virtual machine (VM) in Android operating system that
executes applications written for Android.[1] (Dalvik bytecode format is still used as a
distribution format, but no longer at runtime in newer Android versions.) Dalvik was an
integral part of the Android software stack in the (now unsupported) Android versions 4.4
"KitKat" and earlier
4.VS CODE
Visual Studio Code, also commonly referred to as VS Code,[9] is a source-code editor
made by Microsoft with the Electron Framework, for Windows, Linux and macOS.[10]
Features include support for debugging, syntax highlighting, intelligent code
completion, snippets, code refactoring, and embedded Git.
Users can change the theme, keyboard shortcuts, preferences, and install extensions that add
additional functionality.
Page 10
5.Visual Studio
Visual Studio is an integrated development environment (IDE) from Microsoft. It is used
to develop computer programs, as well as websites, web apps, web services and
mobile apps. Visual Studio uses Microsoft software development platforms such as
Windows API, Windows Forms, Windows Presentation Foundation, Windows
Store and Microsoft Silverlight. It can produce both native code and managed code.
z
6.NOTEPAD ++
Notepad++ is a free (as in “free speech” and also as in “free beer”) source code editor and
Notepad replacement that supports several languages. Running in the MS Windows
environment, its use is governed by GNU General Public License.
CHAPTER 4
Page 11
Experience in Industrial Training
The In-plant training also provides practical knowledge but this would entirely be on the
working of the industry. The duration time for the inplant training is short and
maximum it would be 6 weeks. In plant training requires you to visit the
industry/company where they teach you something and let you learn what happens in
the real world/real companies and how much they differ from the education you receive
in college. In most of the companies you have to pay to get an in plant training. Most
importantly people have a wrong idea that in plant training are useless, but the point is
that nothing is useless. It is in the hands of the students to use the in-plant training as a
starting ground for internship just like you can use your internship as a starting ground
for your job.
So finally, if students undergo these in-plant training and internship they will know the
expectation of the real world and company ,work accordingly and moreover they gain a
practical knowledge in the area they would like to expertise. As a whole process if these
both are attained one can successfully implement their project and set a constant growth
in their job. With all these they can face the real world challenges and makes a change
in the entire society.
Hence the whole experience in in-plant training clearly depicts the importance of all the
training and set a successful career path
CHAPTER 5
Page 12
Short Report/Description of the project (If any done during training)
Project Description
A blog is a discussion or informational website published on the world wide web consisting of discrete,
often informal diary-style text entries(post). posts are typically displayed in reverse chronological order
so thet the most recent post appears first, at the top of the web page.
In our case, we had created the blog which provides various information as needed for example of you
are foody then we had a food blog for you. Here, we provides all the information about the foodie items
and some location where they are famous for
Secondly if the viewer is fitness freak then we had a fitness section for them from where he can get the
information about benefits of particular exercise and keep their body maintained by gaining the proper
knowledge about the diet he/she should had
Our project contains Business ,Fashion, Fitness, Food, Technology &Travel blogs for the viewers . they
can gain the knowledge and also can enroll for some fun online activities through our registration module
and can also share their experince with us…
SETTINGS(Final Project)->
"""
Page 14
Django settings for final_pro project.
https://docs.djangoproject.com/en/4.0/topics/settings/
https://docs.djangoproject.com/en/4.0/ref/settings/
"""
import os
BASE_DIR = Path(__file__).resolve().parent.parent
# See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
SECRET_KEY = 'django-insecure-rj)-fecue3pk!ygk(v!h$*9&!4bj6swds=-o63lym-+$)ao8ex'
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'blog',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware',
Page 15
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
ROOT_URLCONF = 'final_pro.urls'
TEMPLATES = [
{'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
WSGI_APPLICATION = 'final_pro.wsgi.application'
# Database
# https://docs.djangoproject.com/en/4.0/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
Page 16
}
# Password validation
# https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
# Internationalization
# https://docs.djangoproject.com/en/4.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_TZ = True
# https://docs.djangoproject.com/en/4.0/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR / "static"),
'Final Project/final_pro/static',]
# https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
Page 17
URLS(Final project)->
"""final_pro URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/4.0/topics/http/urls/
Examples:
Function views
Class-based views
"""
urlpatterns = [
path('admin/', admin.site.urls),
path("",include('blog.urls'))
VIEWS(BLOG)->
from django.shortcuts import render
def index(request):
return render(request,'home.html')
def about(request):
return render(request,'about.html')
def contact(request):
if request.method == "POST":
name = request.POST.get('name')
email = request.POST.get('email')
Page 18
phone = request.POST.get('phone')
desc = request.POST.get('desc')
contact.save()
return render(request,'contact.html')
# different
def travel(request):
return render(request,'travel.html')
def technology(request):
return render(request,'technology.html')
def fashion(request):
return render(request,'fashion.html')
def fitness(request):
return render(request,'fitness.html')
def food(request):
return render(request,'food.html')
def business(request):
return render(request,'business.html')
urlpatterns = [
path("",views.index, name='home'),
path("about",views.about, name='about'),
path("contact",views.contact, name='contact')
path("travel",views.travel, name='travel'),
path("technology",views.technology, name='technology'),
path("fashion",views.fashion, name='fashion'),
path("fitness",views.fitness, name='fitness'),
path("food",views.food, name='food'),
path("business",views.business, name='business'),
MODELS(BLOG) ->
from django.db import models
class Contact(models.Model):
Page 19
name = models.CharField(max_length=122)
email = models.CharField(max_length=122)
phone = models.CharField(max_length=12)
desc = models.TextField()
date = models.DateField()
def __str__(self):
return self.name
ADMIN(BLOG) ->
from django.contrib import admin
admin.site.register(Contact)
APPS(BLOG) ->
from django.apps import AppConfig
class BlogConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'blog'
color: white;
font-size: 22px;
.navbar-light .navbar-brand{
color: white;
font-size: 30px;
a.hover{
color: #e74c3e;
/* slider*/
.carousel-item{
height: 100vh;
min-height: 300px;
-webkit-background-size: cover;
background-size: cover;
Page 20
.carousel-item::before{
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: #000;
opacity: 0.7;
.carousel-caption{
bottom: 180px;
padding-left: 100px;
padding-right: 100px;
.carousel-caption h5{
font-size: 100px;
font-weight: 700;
.carousel-caption p{
font-size: 18px;
top: 2rem;
.slider-btn{
margin-top: 30px;
.slider-btn .btn {
background-color: #e74c3e;
color: white;
border-radius: 0;
font-size: 1rem;
margin-right: 15px;
.inner{
overflow: hidden;
Page 21
.inner img{
.inner:hover img{
transform: scale(1.5);
{% block body %}
</div><br>
<img src="bootstrap-themes.png" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading
="lazy">
</div>
<div class="col-lg-6">
</div>
</div>
</div>
</div>
{% endblock body %}
BASE->
{% load static %}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
Page 22
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-
gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
</head>
<body>
<div class="container">
<span class="navbar-toggler-icon"></span>
</button>
<li class="nav-item">
</li>
<li class="nav-item">
</li>
<li class="nav-item">
</li>
"false">
Blogs
</a>
<li><hr class="dropdown-divider"></li>
Page 23
</ul>
</ul>
</div>
</div>
</nav>
<footer class="container">
<p>© 2017–2022 Company, Inc. · <a href="#">Privacy</a> · <a href="#">Terms</a></p>
</footer>
</main> {% endcomment %}
{% if messages %}
<span aria-hidden="true">×</span>
</button>
</div>
{% endfor %}
{% endif %}
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top" style="background-color: black;color:
white;>
<a href="/" class="col-md-4 d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none">
</a>
Page 24
</ul>
</footer>
</div>
</body>
</html>
BUSINESS->
{% extends 'base.html' %}
{% block title %}Business Blogs{% endblock title %}
{% block body %}
</div><br>
<center><h1><b>Business Blogs</b></h1><br></center>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">How Auto-fulfillment Can Make Your Business More Efficient<span class="text-
muted"><div><h6>By Anita Campbell on February 28, 2020</h6></div></span></h2>
<p class="lead">Rather than wasting time on tasks that you can easily handle with automation, you can re-allocate those valuable
<p>More than half of today’s employees believe they can save a….
<p>Fulfilling every order individually requires a lot of time and reso……..se certain supplies or tools on an ongoing basis. For exa
mple, a dental or medical facility could set up auto-fulfillment for things like latex gloves, gauze, and syringes. And contractors could use
</div>
<div class="col-md-5">
<div class="inner">
</div>
<div class="inner">
<img src="https://takeitpersonelly.com/wp-content/uploads/2015/10/what_you_must_do_to_make_your_business_more_
</div>
</div>
</div><br>
<hr class="featurette-divider">
Page 25
<div class="row featurette">
<h2 class="featurette-heading fw-normal lh-1">7 Tax Strategies to Consider When Selling a Business<span class="text-muted"><div>
<p class="lead">If you're thinking of selling a business, keep these seven tax considerations in mind.</p>
<p>Baby boomers own 2.3 million businesses, according to Project Equit…….eflecting the higher tax bill that would have resulting from
an asset sale.</p>
<p>The characterization of the sale as a stock or asset sale applies equally to C and S corporations. But there’s tax savings to be
, then the gain is not subject to this tax. A C corporation planning on a sale can make an S election where advisable, assuming the
<p>One of the ways to minimize the tax bite on profits from the sale of …or her business doesn’t have to put all the proceeds into
a QOZ, but tax deferral is limited accordingly. Find details about Opportunity Zones from the IRS.</p>
<h3>Final thoughts</h3>
<p>Many business owners find it difficult to walk away from their businesses. They love the action and don’t hgoing income and
continuing tax breaks (such as claiming the qualified business income deduction if eligible).
A sale of a business is a highly complex matter from a legal and tax perspective. Don’t proceed without expert advice.</p>
</div>
<div class="inner">
class="img-thumbnail" alt="..."></center><br><br><br><br><br><br><br><br><br>
</div>
<div class="inner">
215009d_wfpNKPuysoe5phKLG_elpd4X_3GI80JyKjXA26Puhsz2Goc4P2yhRjbrxq1_zp3z3WudFQLp7XYNKgQAKHoTsn4te0pLyRLd-B.jpeg"
height="5
</div>
</div>
</div><br>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">The iRobot Deal Would Give Amazon Maps Inside Millions of Homes<span class="text-
muted"><div><h6>Why is the Roomba company worth $1.7 billion to Amazon? It’s not the dust, it’s the data.</h6></div></span></h2>
<p class="lead">AFTER DECADES OF creating war machines and ….. goes through, it would give Amazon access to yet another wellspring
Page 26
of personal data: interior maps of Roomba owners’ homes.</p
<p>iRobot got its start building robots for the US military, but 20 years> ago ………………… information. "Customer trust is something we
have worked hard to earn—and work hard to keep—every day,” the statement said.</p>
<h3>Keep Reading</h3>
<p>Amazon has a track record of making or acquiring technology that……n drugs they consume. Soon, it may also know every inch
of their homes.
Updated 08-05-22, 10.10 pm EST: This story was updated to add comment from an Amazon spokesperson.</p>
</div>
<div class="col-md-5">
<div class="inner">
<img src="https://media.wired.com/photos/62ed5c6e70af0aae2b399308/191:100/w_1280,c_limit/Amazon-iRobot-Acquisition-Gives-I
</div>
<div class="inner">
class="img-thumbnail" alt="...">
</div>
</div>
</div>
{% endblock body %}
CONTACT->
{% extends 'base.html' %}
{% block body %}
</div>
{% csrf_token %}
<div class="form-group">
Page 27
<label for="name">Name</label>
</div><br>
<div class="form-group">
</div><br>
<div class="form-group">
</div><br>
<div class="form-group">
</div><br>
</form>
</div>
{% endblock body %}
FASSIONS->
\{% extends 'base.html' %}
{% block body %}
</div><br>
<center><h1><b>Fashion Blogs</b></h1><br></center>
<hr class="featurette-divider">
Page 28
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">THE BEST STREET STYLE FROM PITTI UOMO SPRING/SUMMER 2023<span class="text-
muted"><div><h6>BY ALLY FEIAM</h6></div></span></h2>
<p class="lead">As one of the most stylish and decadent events on the fashion calendar, Pitti Uomo did not disappoint. The
</div>
<div class="col-md-5">
<div class="inner">
<img src="https://i2.wp.com/anyabelle.com/wp-content/uploads/2019/01/49446325_764883280571206_957651473351626708_n.jpg?
fit=1080%2C1349&ssl=1" height="500" width="500" class="img-thumbnail" alt="...">
</div>
</div>
</div>
<hr class="featurette-divider">
<h2 class="featurette-heading fw-normal lh-1">THE BEST STREET STYLE FROM LONDON MEN’S FASHION WEEK AW20<span class="text-
muted"><div><h6>BY ALLY FEIAM</h6></div></span></h2>
<p class="lead">
</div>
<div class="inner">
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">THE WOMEN WHO STOLE THE SHOW AT MEN’S FASHION WEEK AW20<span class="text-
muted"><div><h6>BY ALLY FEIAM</h6></div></span></h2>
<p class="lead">Although the recent fashion events were focussed on the upcoming trends for men, that didn’t stop these
inspiration for their next shopping trip, let us inspire you – here are the women who stole the show at Men’s Fashion Week AW20.</p>
</div>
Page 29
<div class="col-md-5">
<div class="inner">
class="img-thumbnail" alt="...">
</div>
</div>
</div>
{% endblock body %}
FITNESS->
{% extends 'base.html' %}
{% block body %}
</div><br>
<center><h1><b>Fitness Blogs</b></h1><br></center>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">Exercise We Love: The Kettlebell Goblet Clean<span class="text-muted"><div>
<p class="lead">Slow and steady is not the only way to train safely.
Although controlled reps are a great way to create muscle tension and have a great workout, doing exercises explosively adds other
Explosive training can help you build more muscle and strengthen all your muscle groups by targeting your fast-twitch fibers.
training with speed builds power, which is something that becomes more important as you age. Not to mention, more power helps with
popular </p>
<p>Kettlebells can be confusing for some people because of the handle, but they also provide a lot of variety that can make it easier to
learn or modify exercises……around the kettlebell. Your hands will slide slightly down the handle.<br>
Page 30
5. Relax your grip again to return to the start position by reversing the steps.
</p>
</div>
<div class="col-md-5">
<div class="inner">
<img src="https://content.active.com/Assets/Active.com+Content+Site+Digital+Assets/Fitness/Articles/15-Minute+Kettlebell/
woman+with+kettlebell-carousel.jpg" height="500" width="500" class="img-thumbnail" alt="...">
</div>
<div class="inner">
<img src="https://www.mensjournal.com/wp-content/uploads/mf/kettlebell-squat-goblet-magazine-1280-.jpg?quality=86&strip=all"
class="d-block w-100 mx-0" alt="...">
</div>
</div>
</div>
<hr class="featurette-divider">
<h2 class="featurette-heading fw-normal lh-1">How To Do The Bent-Over Barbell Row For A Bigger, Stronger Back<span class="text-
muted"><div><h6>Written by Clinton Sills
<p class="lead">They say, “you gotta row to grow.” And what they’re (almost always) referring to is the big, basic, bent-over barbell row.
The barbell row is one of the most challenging exercises….ric (lifting) portion of the movement, remain in a strong and stable position while
the barbell under control. Don’t allow the bar to free fall into the bottom position.</p>
<p>he barbell row may seem simple on paper, but you can still very easily make mistakes that may hinder your progress and training.
Below are two of the most common mistakes to avoid.</p>
</div>
<div class="inner">
</div>
<div class="inner">
</div>
</div>
</div>
<hr class="featurette-divider">
Page 31
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">The 3 Best Triceps Exercises For Bigger, Stronger Arms<span class="text-
muted"><div><h6>Written by Chris Colucci
Often neglected and underappreciated, your triceps can dramatically impact your physique and your performan work to build bigger,
stronger tris, but it does take some intelligent training. Here are he best movements to put this muscular player on centerstage.</p>
<p>Lie on a flat bench with the barbell in line above your eyes. Grab the bar using a palms-down (pronated) grip with your hands aur
shoulders. Gripping extremely close doesn’t significantly affect triceps recruitment and can increase strain on the wrist and elbow joints.
Plant both on the ground. Squeeze your shoulder blades together and grip the bar tightly. Press straight up to unrack the bar from the
support pins. Lkeeping your elbows close to your body, not flaring out to the sides. In the bottom position, the bar should be near your lower
chest. Pause briefly before pressing straight up to lockout. Keep your glutes touching the bench throughout the entire repetition.</p>
<p>Sit on a flat bench while holding an raight-arm position above your face. To maximize muscular tension, your arms should be angled
slightly toward your head, not completely vertical
Place both feet flat on the floor and tensebs as you stabilize the weight in a locked-out position. Bend at your elbows to lower the
weight towards your forehead. Keep your elbows statioary while reducing the weight. Straighten your arms to lock the weight above your
head.</p>
<p>Hold one dumbbell with two hands, placing the pinkies of each hand against the inside of the top weight plate. Extend the dumbbell
directly overhead with straight arms. Bend your arms to don’t allow them to sink towards your shoulders.
Resist the temptation to nod your head forward “out of the way” of the dumbbell. Lower the weight under control to avoid contacting
your head or neck. Return to the overhead position when you feel a significant stretch on the triceps.</p>
<p>egin lying with one dumbbell locked out above your chest. Use your non-working hand to gently hold the triceps of the working arm.
This can increase the mind-muscle connection and improve growth. (6)
Lower the dumbbell towards the same-side ear at a slow and controlled pace. Keep your elbow aimed at the ceiling, and don’t allow
it to move. When your arm has reached its maximum stretched position, reverse direction and lockout your arm.</p>
</div>
<div class="col-md-5">
<div class="inner">
</div>
<div class="inner">
</div>
</div>
</div>
{% endblock body %}
Page 32
FOOD->
{% extends 'base.html' %}
{% block body %}
</div><br>
<center><h1><b>Food Blogs</b></h1><br></center>
<hr class="featurette-divider">
<div class="col-md-7">
<p class="lead">Goan Style Mushroom Vindaloo Recipe is a variation of the classic Goan Pork Vindaloo recipe. This traditional dish was
introduced by the Portuguese in Goa. In this recipe, the mushroom is cooked in a vinegar based curry infused with Indian spices.
This is fo………..le Mushroom Vindaloo along with steamed rice or even lachha paratha for lunch.</p>
</div>
<div class="col-md-5">
<div class="inner">
<img src="https://www.archanaskitchen.com/images/archanaskitchen/0-Archanas-Kitchen-Recipes/2016/sept-26/
Goan_Style_Mushroom_Vindaloo_Recipe-1.jpg" height="500" width="500" class="img-thumbnail" alt="...">
</div>
</div>
</div><br>
<hr class="featurette-divider">
<p class="lead">A very popular in North India and as we go by the it is usually served by the roadside dhabas. It is very spicy and is
yogurt. You should definitely try this mutton at home and serve it along with whole wheat lachha paratha and salad by the side.</p>
<p>haba Mutton is very popular in North India and as we go by the it is usually served by the roadside dhabas. It is very spicy
should definitely try this mutton at home, as you will cook it again and again.
Serve Dhaba Mutton with Rajasthani baati, steamed rice, Rumali roti or whole wheat lachha paratha.</p>
</div>
<div class="inner">
Page 33
<center> <img src="https://www.archanaskitchen.com/images/archanaskitchen/1-Author/Pooja_Thakur/Dabha_mutton_400.jpg"
height="500" width="500" class="img-thumbnail" alt="..."></center>
</div>
</div>
</div><br>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">North Indian Thali<span class="text-muted"><div><h6>Hira Shaikh February 28th,
2022</h6></div></span></h2>
</div>
<div class="col-md-5">
<div class="inner">
class="img-thumbnail" alt="...">
</div>
</div>
</div>
{% endblock body %}
HOME->
{% extends 'base.html' %}
{% block body %}
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
.bd-placeholder-img-lg {
Page 34
font-size: 3.5rem;
.b-example-divider {
height: 3rem;
border-width: 1px 0;
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
.b-example-vr {
flex-shrink: 0;
width: 1.5rem;
height: 100vh;
.bi {
vertical-align: -.125em;
fill: currentColor;
.nav-scroller {
position: relative;
z-index: 2;
height: 2.75rem;
overflow-y: hidden;
.nav-scroller .nav {
display: flex;
flex-wrap: nowrap;
padding-bottom: 1rem;
margin-top: -1px;
overflow-x: auto;
text-align: center;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
</style>
Page 35
</head>
<body>
<main>
<div class="carousel-indicators">
aria-label="Slide 1"></button>
</div>
<div class="carousel-inner">
<h5>Traveling Blogs</h5>
<p>I hope this site gives you some inspiration (and handy tips) to go and chase your own adventures.
<div class="slider-btn">
</div>
</div>
</div>
<div class="carousel-item">
<h5>Tech Blogs</h5>
<p>Looking for tech blogs to keep up with the latest technology trends? No worries! Your search ends here! Read on…</p>
<div class="slider-btn">
</div>
</div>
</div>
<div class="carousel-item">
Page 36
<div class="carousel-caption d-none d-md-block">
<h5>Fashion Blogs</h5>
that many lovers of style turn to Instagram and fashion blogs to get their fill of all things fashion. </p>
<div class="slider-btn">
</div>
</div>
</div>
<div class="carousel-item">
<h5>Fitness Blogs</h5>
<p>WE HELP NERDS, MISFITS, AND MUTANTSLOSE WEIGHT,GET STRONG &GET HEALTHY PERMANENTLY!</p>
<div class="slider-btn">
</div>
</div>
</div>
<div class="carousel-item">
<h5>Food Blogs</h5>
<p>I like people who love to eat. They’re the best kind of people in the world.</p>
<div class="slider-btn">
</div>
</div>
</div>
<div class="carousel-item">
<h5>Business Blogs</h5>
<p> “Success is the ability to go from failure to failure without losing your enthusiasm.”
<div class="slider-btn">
</div>
</div>
Page 37
</div>
</div>
<span class="visually-hidden">Previous</span>
</button>
<span class="visually-hidden">Next</span>
</button>
</div><br><br>
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container">
<div class="col">
<div class="inner">
</div>
<div class="card-body">
<h5>Traveling Blogs</h5>
<p class="card-text">Travel is the movement of people between distant geographical locations. Travel can be done by foot, bicycle,
automobile, train, boat, bus, airplane, ship or other means, with or without luggage, and can be one way or round trip. </p>
<div class="btn-group">
</div>
</div>
</div>
</div>
</div>
<div class="col">
Page 38
<div class="inner">
<img src="https://media.istockphoto.com/photos/data-scientists-male-programmer-using-laptop-analyzing-and-developing-picture-
id1295900106?k=20&m=1295900106&s=612x612&w=0&h=hDkQP1a9dUo4Esv8iMyVlEnP4nfN2mwM5LdtPW9M8zo=" class="d-block w-100"
alt="...">
</div>
<div class="card-body">
<h5>Technology Blogs</h5>
<div class="btn-group">
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="inner">
</div>
<div class="card-body">
<h5>Fashion Blogs</h5>
<p class="card-text">Fashion is a form of self-expression and autonomy at a particular period and place and in a specific context, of
clothing, footwear, lifestyle, accessories, makeup, hairstyle, and body posture. The term implies a look defined by the fashion industry as that
which is trending.</p>
<div class="btn-group">
</div>
</div>
</div>
</div>
</div><br><br><br>
<div class="col">
<div class="inner">
Page 39
</div>
<div class="card-body">
<h5>Fitness Blogs</h5>
<p class="card-text">Physical fitness is a state of health and well-being and, more specifically, the ability to perform aspects of
sports, occupations and daily activities. Physical fitness is generally achieved through proper nutrition, moderate-vigorous physical exercise,
<div class="btn-group">
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="inner">
<img src="https://img.freepik.com/free-photo/chicken-wings-barbecue-sweetly-sour-sauce-picnic-summer-menu-tasty-food-
</div>
<div class="card-body">
<h5>Food Blogs</h5>
<p class="card-text">Food is any substance…ients, such as carbohydrates, fats, proteins, vitamins, or minerals.Food is any substance
consumed to provide nutritional support for an organism. </p>
<div class="btn-group">
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="inner">
Page 40
<img src="https://i0.wp.com/www.inventiva.co.in/wp-content/uploads/2021/04/starting-a-business-in-India-for-foreign-
</div>
<div class="card-body">
<h5>Business Blogs</h5>
<p class="card-text">Business is the activity of making one's living or making money by producing or buying and selling products
It is also " any activity or enterprise entered into for profit."Business Information means information, oral, electronic, or in writing.</p>
<div class="btn-group">
</div>
</div>
</div>
</div>
</div>
<hr class="featurette-divider">
<footer class="container">
<p>© 2017–2022 Company, Inc. · <a href="#">Privacy</a> · <a href="#">Terms</a></p>
</footer>
</main> {% endcomment %}
{% endblock body %}
TECHNOLOGY->
{% extends 'base.html' %}
{% block body %}
</div><br>
Page 41
<center><h1><b>Tech Blogs</b></h1><br></center>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">Hidden iPhone Tricks That Will Make Your Life Easier<span class="text-
muted"><div><h6>These tips, swipes, and settings will make using your phone faster and simpler</h6></div></span></h2>
<p class="lead">OFTEN, IPHONE TIPS and tric……………… like clearing out old unwanted images from your photo library will be much faster
too.</p>
<p>If you’re scrolling down a webpage and want to return to the top, tap the top center of your screen next to the front-facing c
amera. This tap will pull you back to the top. Not only can you do this on web pages, but this feature largely works everywhere on your
Instead of furiously flip-scrolling to get back to the top, you can simply touch the top of the screen. I use this with Instagram and
my email app all the time to get back to the most recent items. Also, if you’ve ever been jolted to the top of a website without knowing
<p>Before emoji were prevalent throughout the oper…………et annoying. As a bonus, these text replacements sync across iCloud,
<p>Within the Photos app you can hide pictures from appearing in your general photo library. This will keep sensitive images from
being seen whenever you open that app. ………… later by doing the reverse. Find the app in the App Library, press and hold on it, and then s
<p>Similarly, if you want to organize your home screen l………….ou no longer want to see or you can move each rectangle around to
reorder them.</p>
<p>Within Messages, if you tap and hold on a group or individual message a few choices will pop up, including Pin. Select that and that
message thread will get stuck on the top, above all the other messages, including new, incoming ones. You can do this with several people or
groups, and it makes it much easier to find the people you talk to the most.</p>
<p>If you’re worried about being compelled by authorities to unlock your phone with biometrics, there is a way to disable Face ID
and Touch ID quickly. For iPhone 8 and later, press and hold the button on the right and either of the volume buttons at the same time
Doing this will bring up a screen to power off the phone, see Medical ID or get to Emergency SOS. Bringing up this screen will also
disable biometrics so that your passcode needs to be reentered to get into the phone.</p>
</div><br>
<div class="col-md-5">
<div class="inner">
Page 42
<img src="https://www.01net.com/app/uploads/2022/06/iPhone-14-puce-a16.jpg" height="500" width="500" class="img-thumbnail"
alt="..."><br><br><br><br><br><br><br><br><br>
</div>
<div class="inner">
</div>
</div>
</div>
<hr class="featurette-divider">
<h2 class="featurette-heading fw-normal lh-1">Samsung’s New Phone Repair Kits Are Better Than Nothing<span class="text-
muted"><div><h6>Plus: Amazon buys iRobot, Clubhouse subdivides itself, and Instagram goes all-in on NFTs.</h6></div></span></h2>
<p class="lead">SAMSUNG OFFICIALLY INTRODUCED…………… more repairable future. But for now that future is only manifesting in
fits and starts. If Samsung, Apple, and other companies want to build out a robust self-repair program before the regulatory hammer comes
<p>Say what you will about Amazon, but there’s no……..Calore talk about the weird world of NFs and how physical frames for digital
art might make the whole thing more approachable for the uninitiated.</p>
</div>
<div class="inner">
</div>
<div class="inner">
</div>
</div>
</div><br>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">It’s TikTok’s World. Instagram Just Lives in It<span class="text-muted"><div><h6>
This week, we examine Instagram’s move to prioritize Reels—a feature copied from TikTok—and whether that will help or hinder the
Page 43
platform’s growth.</h6></div></span></h2>
<p class="lead">IF YOU’VE OPENED Instagram recently, you’ve certainly seen Reels. The photo-sharing app has started aggressivel
y pushing the TikTok-like videofeeds onto………………………….uced by Boone Ashworth (@booneashworth). Our theme music is by Solar Keys.
Michael Calore is @snackfight. Lauren is @LaurenGoode. Bling the main hotline at @GadgetLab. The show is produced by Boone Ashworth
(@booneashworth). Our theme music is by Solar Keys.</p>
</div>
<div class="col-md-5">
<div class="inner">
</div>
<div class="inner">
</div>
</div>
</div>
{% endblock body %}
TRAVEL->
{% extends 'base.html' %}
{% block body %}
</div><br>
<center><h1><b>Traveling Blogs</b></h1><br></center>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">Paricharcha by DMS IIT Delhi<span class="text-muted"><div><h6>Posted on March 27,
2022</h6></div></span></h2>
<p class="lead">I recently moderated a virtual session on ‘Beyond Travel’, organized by Department of Management Studies (DMS),
IIT Delhi. It was great fun to conne…………………………….un section was on local fashion! All the panelists talked about their old clothes and
how obsessed we are for saving money for travel! My down jacket is now 10 year old and I finally need to replace it! We talked about how
we
got into travel, culture shock, saving money to travel and a lot more!
I find it difficult to urge you all to go and listen to the 2 hour talk but no harm in trying, right?</p>
</div>
Page 44
<div class="col-md-5">
<div class="inner">
</div>
</div>
</div>
<hr class="featurette-divider">
<h2 class="featurette-heading fw-normal lh-1">A BIKE TRIP TO RUMBAK IN LADAKH - A HOMESTAY VILLAGE!<span class="text-
muted"><div><h6>Posted on 14 june</h6></div></span></h2>
<p class="lead">Up in the Himalayas near the city of Leh, there comes a time when the road ends and you reach the last village –
Most forums suggest connecting with J&K Department of Wildlife Protection to make the booking. I'll surely add more details
</div>
<div class="inner">
</div>
</div>
</div>
<hr class="featurette-divider">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">LONAVALA IN MONSOON | THINGS TO DO IN THE RAINY SEASON IN LONAVALA IN
<p class="lead">Lonavala is a popular tourist destination especially during the monsoon when the place truly comes alive. Conveniently
located between Mumbai and Pune, Lonavala get…. absolutely love rains and are also happy simply sitting with a cup of chai on the balcony
<p>Not sure why this point is called Tiger's nose, to me it didn't quite look like it but my driver was insistent that it was. In any case,
</p>
<p>There are numerous Buddhist Caves near Lonavala and they are all worth visiting. I have visited three of the best known one and
Page 45
also made videos about them too. You can watch some of them below. I would recommend going to Bhaja and Bedse if you have time
available. </p>
</div>
<div class="col-md-5">
<div class="inner">
</div>
</div>
</div>
{% endblock body %}
OUTPUT:
Page 46
Page 47
Page 48
Page 49
Page 50
Page 51
Page 52
Page 53
Page 54
Page 55
Page 56
ADMIN:
Page 57
Page 58
Reference:
https://getbootstrap.com/docs/5.2/getting-started/introduction/
https://www.youtube.com/watch?v=JxzZxdht-XY&t=2998s
Conclusion:
It was good & memorable experience of the 6 weeks in the company. During the training I
got technical & practical knowledge in fact it was opportunity to me to observe, how the
various departments co-ordinate in between them & how they were trying to plan, organize,
control & manage the work properly to achieve the organizational goals
Page 59
Page 60
Page 61
Page 62