Report of Internship
Report of Internship
SUMMER INTERNSHIP-2022
Bachelor of Engineering
In
Information Technology
Prepared By
We are highly indebted to (company guide ) for his guidance and constant
supervision as well as for providing necessary information regarding the
project. We take this opportunity to thank all my friends and colleagues
who started me out on the topic and provided extremely useful review
feedback and for their all-time support and help in each and every aspect
of the course of my project preparation. We are grateful to my college Kalol
Institute of Technology And Research Centre, Kalol for providing me all
required resources and good working environment.
CERTIFICATE
This is to certify that the Project work entitled “Building One
Page Website” is a bonafide work carried out by Shaikh Saif Ali
Abrar (190260116026) under my guidance in partial fulfillment for
the course of SUMMER INTERNSHIP of Information
Technology Engineering (7th Semester) in Kalol Institute of
Technology &Research Centre of Gujarat Technological University,
Ahmadabad during the Academic Year 2022.
Date of submission:
4 | P ag e
COMPANY’S CETIFICATE
ABSTRACT
Recently the e-commerce platform is playing an important role in some areas; its activities are a subset of e-business
activities. The aim of this paper is to build and develop a reliable website based on the e-commerce theories,
developing effective well designed web pages. This website will sell computer products include (hardware and
software). For implement the selling online website, it needs to use current technologies to achieve this goal. As a first
stage, it should setting up online ecommerce store with easy-to-use. Then improve the customer experience, and lastly
implement the Direct Online Sale between business to consumer by implement electronic payment methods. All these
techniques should be based on deliberated plan according to strategy of electronic commerce with implement the
current technology to ensure a good revenue to the company.
INTRODUCTION
Internship Title :
Web Designing
Project Name :
In this internship we are going to work on dynamic webpage designing. Use html,css and javascript web
framework which is very popular and one of the most important part of full stack web development. In this
internship we will going to work on real time ecommerce web page.
lOMoARcPSD|15715826
TABLE OF CONTENTS
Page
1.1 Introduction…………………………………………… 01
1.2 Objective…………………………………………….... 02
1.2.1 To gain skills and knowledge…………………. 02
1.2.2 To get filled work experience…………………. 02
1.2.3 To enhance our communication skills…………. 02
1.2.4 To link theory with practice……………………. 03
1.2.5 To build a network……………………………... 03
1.3 Tools and Technology used……………………………. 04
3.1 Discussion…………………………………………… 12
3.2 Learning Outcome……………………………………. 12
3.2.1 HTML………………………………………... 12
3.2.2 CSS…………………………………………… 13
3.2.3 Bootstrap……………………………………... 13
3.2.4 JavaScript…………………………………….. 13
3.3 Result…………………………………………………. 14
References………………………………………………... 18
lOMoARcPSD|15715826
Abstract
FIGURE INDEX
CHAPTER 1
INTRODUCTION
1.1 Introduction
As a full-time student at MIT group of Institutes, I was
provided an opportunity to undertake an internship at
Universal Informatics. The degree towards I am currently
studying is a Bachelor of Engineering in Computer
Science and Technology. The course at UI was quite
challenging for me for a few reasons: Firstly, the
programming languages and development tools I was
using were new for me, hence I had to quickly integrate
not only with my new living environment but also
academically. This was very beneficial for me as at the
end I could compare what I’ve learnt with what I already
knew and find a connection between the two.
This report is a description of my 4 weeks internship
carried out as a compulsory component of the course at
UI. In the following chapter details of tools and
technology used and an overview is given. Afterwards, I
explain my role and tasks as a trainee and give specific
technical details about my main tasks. Finally, a
conclusion is drawn from the experience.
lOMoARcPSD|15715826
1.2 Objective
The objective of the web design is to handle the entire
design of a website. The software keeps track of all the
information about the entire website. The system contains
database where all the information will be stored safely.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p> This is a paragraph. </p>
</body>
</html>
2. CSS3
Cascading Style Sheets, fondly referred to as CSS, is a
simply designed language intended to simplify the
process of making web pages presentable. CSS allows
you to apply styles to web pages. More importantly, CSS
enables you to do this independent of the HTML that
makes up each web page.
There are three types of CSS which are given below:
Inline CSS
Internal or Embedded CSS
External CSS
Below example illustrate the CSS3 content:
<!DOCTYPE html>
<html>
<head>
<title> HTML 5 Demo</title>
<style>
.intern {
font-size:40px;
font-weight:bold;
color:green;
}
body {
text-align:center;
}
</style>
</head>
<body>
<div class = "intern">Hello World!</div>
<aside>
<div>This is Insiya Badshah</div>
</aside>
</body>
</html>
lOMoARcPSD|15715826
3. JavaScript
JavaScript is a lightweight, cross-platform and
interpreted scripting language. It is well-known for the
development of web pages, many non-browser
environments also use it. JavaScript can be used
for Client-side developments as well as Server-side
developments.
Features of JavaScript:
According to a recent survey conducted by Stack
Overflow, JavaScript is the most popular language
on earth.
With advances in browser technology and
JavaScript having moved into the server with
Node.js and other frameworks, JavaScript is capable
of so much more.
Functions in JS are objects. They may have
properties and methods just like another object.
They can be passed as arguments in other
functions.
Can handle date and time.
Performs Form Validation although the forms are
created using HTML.
No compiler needed.
lOMoARcPSD|15715826
4. Sublime text
Artfully run by a one-man development team, the secret
to sublime’s success lies in the program’s vast array of
keyboard shortcuts - such as the ability to perform
simultaneous editing (making the same interactive
changes to multiple selected areas) as well as quick
navigation to files, symbols, and lines. And when you’re
spending 8+ hours with your editor each day, those
precious few seconds saved for each process really do
add up.
5. JQuery
JavaScript has long been considered an essential front-
end language by developers, although it’s not without its
problems: riddled with browser inconsistencies, its
somewhat complicated and unapproachable syntax meant
that functionality often suffered.
That was until 2006, when jQuery – a fast, small, cross-
platform JavaScript library aimed at simplifying the
front-end process – appeared on the scene. By
abstracting a lot of the functionality usually left for
developers to solve on their own, jQuery allowed greater
lOMoARcPSD|15715826
Chapter 2
Training work undertaken
Chapter 3
Result and Discussion
3.1 Discussion
During entire training session we discussed about how to
analysis the project and how to work on it as per the
requirement of client. The projects done during the
internship are based on the tags of programming language
HTML & CSS.
3.2.1 HTML
Basic Concept (WWW & HTTP, client server
communication)
Basic HTML (tags, element, attributes, paragraphs,
headings, line breaks, lists, table, color codes, font, text
linking, email, images, background, comments, media,
charset)
HTML Forms (input, text fields, password, checkbox,
combo-box, radio box, text areas, files, buttons)
HTML5 features
lOMoARcPSD|15715826
3.2.2 CSS
Basic CSS (selector, internal, external, inline, class, id,
background, font, text, padding, margin, border, list CSS,
hovering and elements)
Advance CSS (border-radius, opacity, cursor, layers,
position, display, float, gradient and multiple-column)
Concept of Menu (single menu, drop-down menu)
Template design using CSS div.
3.2.3 Bootstrap
Grid System
Typography
Tables, forms, buttons, images
Dropdown, button group
Navigation element
Bootstrap plug-ins (Transition, Modal, Dropdown, Tab,
tooltip, Alert, Button)
3.2.4 JavaScript
Basic JavaScript (syntax, enable, location, operators,
variables, events, alert, confirm, prompt, POP up, date,
print)
JavaScript string (strings, length, split, search, replace)
lOMoARcPSD|15715826
3.3 Result
Following are the screenshots of the result of the
projects done during the internship period.
Project-1
Project-2
Project-3
Project-4
Project-5
CHAPTER 4
CONCLUSION AND FUTURE SCOPE
4.1 Conclusion
In conclusion, I can say that this internship was a great
experience. Thanks to this project, I acquired deeper
knowledge concerning my technical skills, but I also personally
benefited. Currently HTML is a common part of web
applications, and it is one of the most popular language for web
designing used by professionals worldwide. If we surf internet,
we can see millions of websites designed with HTML and CSS.
I learned to live in a different environment from the one I am
used to. Indeed, I grew more independent in work and also in
everyday life. I realized that I could do more things than I
thought, like learning new things by myself.
There are huge opportunities available for the students who
want to work in this field. Many private and public
organizations hire web designer for their online work and
website development. With the rapid advent of online industry,
the demand of web development professionals is increasing,
and this has created a huge job opportunity for the aspirants in
the upcoming days.
Also, an experienced person in this field can also work as a
freelancer; there are many online companies which provide
online projects to the individuals.
lOMoARcPSD|15715826
References
-http://www.w3schools.com
-http://www.wikipidea.com
-http://www.w3.org/standards/semanticweb/
-http://developer.mozilla.org/en/docs
-http://sioc-project.org/ontology
-http://janastu.org